/*
ATTENTION
This is the base set of styles. The only changes made were url() to image-url().
Do not make changes to this file.
*/
/*
Version: 3.5.1 Timestamp: Tue Jul 22 18:58:56 EDT 2014
*/
/* line 10, shared/select2/_base.scss */
.select2-container {
  margin: 0;
  position: relative;
  display: inline-block;
  /* inline-block for ie7 */
  zoom: 1;
  *display: inline;
  vertical-align: middle;
}

/* line 20, shared/select2/_base.scss */
.select2-container,
.select2-drop,
.select2-search,
.select2-search input {
  /*
    Force border-box so that % widths fit the parent
    container without overlap because of margin/padding.
    More Info : http://www.quirksmode.org/css/box.html
  */
  -webkit-box-sizing: border-box;
  /* webkit */
  -moz-box-sizing: border-box;
  /* firefox */
  box-sizing: border-box;
  /* css3 */
}

/* line 34, shared/select2/_base.scss */
.select2-container .select2-choice {
  display: block;
  height: 26px;
  padding: 0 0 0 8px;
  overflow: hidden;
  position: relative;
  border: 1px solid #aaa;
  white-space: nowrap;
  line-height: 26px;
  color: #444;
  text-decoration: none;
  border-radius: 4px;
  background-clip: padding-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: #fff;
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eee), color-stop(0.5, #fff));
  background-image: -webkit-linear-gradient(center bottom, #eee 0%, #fff 50%);
  background-image: -moz-linear-gradient(center bottom, #eee 0%, #fff 50%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#ffffff', endColorstr = '#eeeeee', GradientType = 0);
  background-image: linear-gradient(to top, #eee 0%, #fff 50%);
}

/* line 65, shared/select2/_base.scss */
html[dir="rtl"] .select2-container .select2-choice {
  padding: 0 8px 0 0;
}

/* line 69, shared/select2/_base.scss */
.select2-container.select2-drop-above .select2-choice {
  border-bottom-color: #aaa;
  border-radius: 0 0 4px 4px;
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eee), color-stop(0.9, #fff));
  background-image: -webkit-linear-gradient(center bottom, #eee 0%, #fff 90%);
  background-image: -moz-linear-gradient(center bottom, #eee 0%, #fff 90%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee', GradientType=0);
  background-image: linear-gradient(to bottom, #eee 0%, #fff 90%);
}

/* line 81, shared/select2/_base.scss */
.select2-container.select2-allowclear .select2-choice .select2-chosen {
  margin-right: 42px;
}

/* line 85, shared/select2/_base.scss */
.select2-container .select2-choice > .select2-chosen {
  margin-right: 26px;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  float: none;
  width: auto;
}

/* line 97, shared/select2/_base.scss */
html[dir="rtl"] .select2-container .select2-choice > .select2-chosen {
  margin-left: 26px;
  margin-right: 0;
}

/* line 102, shared/select2/_base.scss */
.select2-container .select2-choice abbr {
  display: none;
  width: 12px;
  height: 12px;
  position: absolute;
  right: 24px;
  top: 8px;
  font-size: 1px;
  text-decoration: none;
  border: 0;
  background: url('../../images/libraries/select2/select2.png') right top no-repeat;
  cursor: pointer;
  outline: 0;
}

/* line 119, shared/select2/_base.scss */
.select2-container.select2-allowclear .select2-choice abbr {
  display: inline-block;
}

/* line 123, shared/select2/_base.scss */
.select2-container .select2-choice abbr:hover {
  background-position: right -11px;
  cursor: pointer;
}

/* line 128, shared/select2/_base.scss */
.select2-drop-mask {
  border: 0;
  margin: 0;
  padding: 0;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 9998;
  /* styles required for IE to work */
  background-color: #fff;
  filter: alpha(opacity=0);
}

/* line 146, shared/select2/_base.scss */
.select2-drop {
  width: 100%;
  margin-top: -1px;
  position: absolute;
  z-index: 9999;
  top: 100%;
  background: #fff;
  color: #000;
  border: 1px solid #aaa;
  border-top: 0;
  border-radius: 0 0 4px 4px;
  -webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
}

/* line 164, shared/select2/_base.scss */
.select2-drop.select2-drop-above {
  margin-top: 1px;
  border-top: 1px solid #aaa;
  border-bottom: 0;
  border-radius: 4px 4px 0 0;
  -webkit-box-shadow: 0 -4px 5px rgba(0, 0, 0, 0.15);
  box-shadow: 0 -4px 5px rgba(0, 0, 0, 0.15);
}

/* line 175, shared/select2/_base.scss */
.select2-drop-active {
  border: 1px solid #5897fb;
  border-top: none;
}

/* line 180, shared/select2/_base.scss */
.select2-drop.select2-drop-above.select2-drop-active {
  border-top: 1px solid #5897fb;
}

/* line 184, shared/select2/_base.scss */
.select2-drop-auto-width {
  border-top: 1px solid #aaa;
  width: auto;
}

/* line 189, shared/select2/_base.scss */
.select2-drop-auto-width .select2-search {
  padding-top: 4px;
}

/* line 193, shared/select2/_base.scss */
.select2-container .select2-choice .select2-arrow {
  display: inline-block;
  width: 18px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  border-left: 1px solid #aaa;
  border-radius: 0 4px 4px 0;
  background-clip: padding-box;
  background: #ccc;
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #ccc), color-stop(0.6, #eee));
  background-image: -webkit-linear-gradient(center bottom, #ccc 0%, #eee 60%);
  background-image: -moz-linear-gradient(center bottom, #ccc 0%, #eee 60%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#eeeeee', endColorstr = '#cccccc', GradientType = 0);
  background-image: linear-gradient(to top, #ccc 0%, #eee 60%);
}

/* line 214, shared/select2/_base.scss */
html[dir="rtl"] .select2-container .select2-choice .select2-arrow {
  left: 0;
  right: auto;
  border-left: none;
  border-right: 1px solid #aaa;
  border-radius: 4px 0 0 4px;
}

/* line 223, shared/select2/_base.scss */
.select2-container .select2-choice .select2-arrow b {
  display: block;
  width: 100%;
  height: 100%;
  background: url('../../images/libraries/select2/select2.png') no-repeat 0 1px;
}

/* line 230, shared/select2/_base.scss */
html[dir="rtl"] .select2-container .select2-choice .select2-arrow b {
  background-position: 2px 1px;
}

/* line 234, shared/select2/_base.scss */
.select2-search {
  display: inline-block;
  width: 100%;
  min-height: 26px;
  margin: 0;
  padding-left: 4px;
  padding-right: 4px;
  position: relative;
  z-index: 10000;
  white-space: nowrap;
}

/* line 248, shared/select2/_base.scss */
.select2-search input {
  width: 100%;
  height: auto !important;
  min-height: 26px;
  padding: 4px 20px 4px 5px;
  margin: 0;
  outline: 0;
  font-family: "Inter";
  font-size: 1em;
  border: 1px solid #aaa;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  background: #fff url('../../images/libraries/select2/select2.png') no-repeat 100% -22px;
  background: url('../../images/libraries/select2/select2.png') no-repeat 100% -22px, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, #fff), color-stop(0.99, #eee));
  background: url('../../images/libraries/select2/select2.png') no-repeat 100% -22px, -webkit-linear-gradient(center bottom, #fff 85%, #eee 99%);
  background: url('../../images/libraries/select2/select2.png') no-repeat 100% -22px, -moz-linear-gradient(center bottom, #fff 85%, #eee 99%);
  background: url('../../images/libraries/select2/select2.png') no-repeat 100% -22px, linear-gradient(to bottom, #fff 85%, #eee 99%) 0 0;
}

/* line 272, shared/select2/_base.scss */
html[dir="rtl"] .select2-search input {
  padding: 4px 5px 4px 20px;
  background: #fff url('../../images/libraries/select2/select2.png') no-repeat -37px -22px;
  background: url('../../images/libraries/select2/select2.png') no-repeat -37px -22px, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, #fff), color-stop(0.99, #eee));
  background: url('../../images/libraries/select2/select2.png') no-repeat -37px -22px, -webkit-linear-gradient(center bottom, #fff 85%, #eee 99%);
  background: url('../../images/libraries/select2/select2.png') no-repeat -37px -22px, -moz-linear-gradient(center bottom, #fff 85%, #eee 99%);
  background: url('../../images/libraries/select2/select2.png') no-repeat -37px -22px, linear-gradient(to bottom, #fff 85%, #eee 99%) 0 0;
}

/* line 282, shared/select2/_base.scss */
.select2-drop.select2-drop-above .select2-search input {
  margin-top: 4px;
}

/* line 286, shared/select2/_base.scss */
.select2-search input.select2-active {
  background: #fff url('../../images/libraries/select2/select2-spinner.gif') no-repeat 100%;
  background: url('../../images/libraries/select2/select2-spinner.gif') no-repeat 100%, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, #fff), color-stop(0.99, #eee));
  background: url('../../images/libraries/select2/select2-spinner.gif') no-repeat 100%, -webkit-linear-gradient(center bottom, #fff 85%, #eee 99%);
  background: url('../../images/libraries/select2/select2-spinner.gif') no-repeat 100%, -moz-linear-gradient(center bottom, #fff 85%, #eee 99%);
  background: url('../../images/libraries/select2/select2-spinner.gif') no-repeat 100%, linear-gradient(to bottom, #fff 85%, #eee 99%) 0 0;
}

/* line 294, shared/select2/_base.scss */
.select2-container-active .select2-choice,
.select2-container-active .select2-choices {
  border: 1px solid #5897fb;
  outline: none;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

/* line 303, shared/select2/_base.scss */
.select2-dropdown-open .select2-choice {
  border-bottom-color: transparent;
  -webkit-box-shadow: 0 1px 0 #fff inset;
  box-shadow: 0 1px 0 #fff inset;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-color: #eee;
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #fff), color-stop(0.5, #eee));
  background-image: -webkit-linear-gradient(center bottom, #fff 0%, #eee 50%);
  background-image: -moz-linear-gradient(center bottom, #fff 0%, #eee 50%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0);
  background-image: linear-gradient(to top, #fff 0%, #eee 50%);
}

/* line 319, shared/select2/_base.scss */
.select2-dropdown-open.select2-drop-above .select2-choice,
.select2-dropdown-open.select2-drop-above .select2-choices {
  border: 1px solid #5897fb;
  border-top-color: transparent;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff), color-stop(0.5, #eee));
  background-image: -webkit-linear-gradient(center top, #fff 0%, #eee 50%);
  background-image: -moz-linear-gradient(center top, #fff 0%, #eee 50%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0);
  background-image: linear-gradient(to bottom, #fff 0%, #eee 50%);
}

/* line 331, shared/select2/_base.scss */
.select2-dropdown-open .select2-choice .select2-arrow {
  background: transparent;
  border-left: none;
  filter: none;
}

/* line 336, shared/select2/_base.scss */
html[dir="rtl"] .select2-dropdown-open .select2-choice .select2-arrow {
  border-right: none;
}

/* line 340, shared/select2/_base.scss */
.select2-dropdown-open .select2-choice .select2-arrow b {
  background-position: -18px 1px;
}

/* line 344, shared/select2/_base.scss */
html[dir="rtl"] .select2-dropdown-open .select2-choice .select2-arrow b {
  background-position: -16px 1px;
}

/* line 348, shared/select2/_base.scss */
.select2-hidden-accessible {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/* results */
/* line 360, shared/select2/_base.scss */
.select2-results {
  max-height: 200px;
  padding: 0 0 0 4px;
  margin: 4px 4px 4px 0;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-tap-highlight-color: transparent;
}

/* line 370, shared/select2/_base.scss */
html[dir="rtl"] .select2-results {
  padding: 0 4px 0 0;
  margin: 4px 0 4px 4px;
}

/* line 375, shared/select2/_base.scss */
.select2-results ul.select2-result-sub {
  margin: 0;
  padding-left: 0;
}

/* line 380, shared/select2/_base.scss */
.select2-results li {
  list-style: none;
  display: list-item;
  background-image: none;
}

/* line 386, shared/select2/_base.scss */
.select2-results li.select2-result-with-children > .select2-result-label {
  font-weight: bold;
}

/* line 390, shared/select2/_base.scss */
.select2-results .select2-result-label {
  padding: 3px 7px 4px;
  margin: 0;
  cursor: pointer;
  min-height: 1em;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* line 404, shared/select2/_base.scss */
.select2-results-dept-1 .select2-result-label {
  padding-left: 20px;
}

/* line 405, shared/select2/_base.scss */
.select2-results-dept-2 .select2-result-label {
  padding-left: 40px;
}

/* line 406, shared/select2/_base.scss */
.select2-results-dept-3 .select2-result-label {
  padding-left: 60px;
}

/* line 407, shared/select2/_base.scss */
.select2-results-dept-4 .select2-result-label {
  padding-left: 80px;
}

/* line 408, shared/select2/_base.scss */
.select2-results-dept-5 .select2-result-label {
  padding-left: 100px;
}

/* line 409, shared/select2/_base.scss */
.select2-results-dept-6 .select2-result-label {
  padding-left: 110px;
}

/* line 410, shared/select2/_base.scss */
.select2-results-dept-7 .select2-result-label {
  padding-left: 120px;
}

/* line 412, shared/select2/_base.scss */
.select2-results .select2-highlighted {
  background: #3875d7;
  color: #fff;
}

/* line 417, shared/select2/_base.scss */
.select2-results li em {
  background: #feffde;
  font-style: normal;
}

/* line 422, shared/select2/_base.scss */
.select2-results .select2-highlighted em {
  background: transparent;
}

/* line 426, shared/select2/_base.scss */
.select2-results .select2-highlighted ul {
  background: #fff;
  color: #000;
}

/* line 431, shared/select2/_base.scss */
.select2-results .select2-no-results,
.select2-results .select2-searching,
.select2-results .select2-ajax-error,
.select2-results .select2-selection-limit {
  background: #f4f4f4;
  display: list-item;
  padding-left: 5px;
}

/*
disabled look for disabled choices in the results dropdown
*/
/* line 443, shared/select2/_base.scss */
.select2-results .select2-disabled.select2-highlighted {
  color: #666;
  background: #f4f4f4;
  display: list-item;
  cursor: default;
}

/* line 449, shared/select2/_base.scss */
.select2-results .select2-disabled {
  background: #f4f4f4;
  display: list-item;
  cursor: default;
}

/* line 455, shared/select2/_base.scss */
.select2-results .select2-selected {
  display: none;
}

/* line 459, shared/select2/_base.scss */
.select2-more-results.select2-active {
  background: #f4f4f4 url('../../images/libraries/select2/select2-spinner.gif') no-repeat 100%;
}

/* line 463, shared/select2/_base.scss */
.select2-results .select2-ajax-error {
  background: rgba(255, 50, 50, 0.2);
}

/* line 467, shared/select2/_base.scss */
.select2-more-results {
  background: #f4f4f4;
  display: list-item;
}

/* disabled styles */
/* line 474, shared/select2/_base.scss */
.select2-container.select2-container-disabled .select2-choice {
  background-color: #f4f4f4;
  background-image: none;
  border: 1px solid #ddd;
  cursor: default;
}

/* line 481, shared/select2/_base.scss */
.select2-container.select2-container-disabled .select2-choice .select2-arrow {
  background-color: #f4f4f4;
  background-image: none;
  border-left: 0;
}

/* line 487, shared/select2/_base.scss */
.select2-container.select2-container-disabled .select2-choice abbr {
  display: none;
}

/* multiselect */
/* line 494, shared/select2/_base.scss */
.select2-container-multi .select2-choices {
  height: auto !important;
  height: 1%;
  margin: 0;
  padding: 0 5px 0 0;
  position: relative;
  border: 1px solid #aaa;
  cursor: text;
  overflow: hidden;
  background-color: #fff;
  background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(1%, #eee), color-stop(15%, #fff));
  background-image: -webkit-linear-gradient(top, #eee 1%, #fff 15%);
  background-image: -moz-linear-gradient(top, #eee 1%, #fff 15%);
  background-image: linear-gradient(to bottom, #eee 1%, #fff 15%);
}

/* line 512, shared/select2/_base.scss */
html[dir="rtl"] .select2-container-multi .select2-choices {
  padding: 0 0 0 5px;
}

/* line 516, shared/select2/_base.scss */
.select2-locked {
  padding: 3px 5px 3px 5px !important;
}

/* line 520, shared/select2/_base.scss */
.select2-container-multi .select2-choices {
  min-height: 26px;
}

/* line 524, shared/select2/_base.scss */
.select2-container-multi.select2-container-active .select2-choices {
  border: 1px solid #5897fb;
  outline: none;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

/* line 531, shared/select2/_base.scss */
.select2-container-multi .select2-choices li {
  float: left;
  list-style: none;
}

/* line 535, shared/select2/_base.scss */
html[dir="rtl"] .select2-container-multi .select2-choices li {
  float: right;
}

/* line 539, shared/select2/_base.scss */
.select2-container-multi .select2-choices .select2-search-field {
  margin: 0;
  padding: 0;
  white-space: nowrap;
}

/* line 545, shared/select2/_base.scss */
.select2-container-multi .select2-choices .select2-search-field input {
  padding: 5px;
  margin: 1px 0;
  font-family: "Inter";
  font-size: 100%;
  color: #666;
  outline: 0;
  border: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  background: transparent !important;
}

/* line 559, shared/select2/_base.scss */
.select2-container-multi .select2-choices .select2-search-field input.select2-active {
  background: #fff url('../../images/libraries/select2/select2-spinner.gif') no-repeat 100% !important;
}

/* line 563, shared/select2/_base.scss */
.select2-default {
  color: #999 !important;
}

/* line 567, shared/select2/_base.scss */
.select2-container-multi .select2-choices .select2-search-choice {
  padding: 3px 5px 3px 18px;
  margin: 3px 0 3px 5px;
  position: relative;
  line-height: 13px;
  color: #333;
  cursor: default;
  border: 1px solid #aaaaaa;
  border-radius: 3px;
  -webkit-box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
  background-clip: padding-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: #e4e4e4;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#f4f4f4', GradientType=0);
  background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eee));
  background-image: -webkit-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
  background-image: -moz-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
  background-image: linear-gradient(to top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
}

/* line 597, shared/select2/_base.scss */
html[dir="rtl"] .select2-container-multi .select2-choices .select2-search-choice {
  margin: 3px 5px 3px 0;
  padding: 3px 18px 3px 5px;
}

/* line 602, shared/select2/_base.scss */
.select2-container-multi .select2-choices .select2-search-choice .select2-chosen {
  cursor: default;
}

/* line 605, shared/select2/_base.scss */
.select2-container-multi .select2-choices .select2-search-choice-focus {
  background: #d4d4d4;
}

/* line 609, shared/select2/_base.scss */
.select2-search-choice-close {
  display: block;
  width: 12px;
  height: 13px;
  position: absolute;
  right: 3px;
  top: 4px;
  font-size: 1px;
  outline: none;
  background: url('../../images/libraries/select2/select2.png') right top no-repeat;
}

/* line 621, shared/select2/_base.scss */
html[dir="rtl"] .select2-search-choice-close {
  right: auto;
  left: 3px;
}

/* line 626, shared/select2/_base.scss */
.select2-container-multi .select2-search-choice-close {
  left: 3px;
}

/* line 630, shared/select2/_base.scss */
html[dir="rtl"] .select2-container-multi .select2-search-choice-close {
  left: auto;
  right: 2px;
}

/* line 635, shared/select2/_base.scss */
.select2-container-multi .select2-choices .select2-search-choice .select2-search-choice-close:hover {
  background-position: right -11px;
}

/* line 638, shared/select2/_base.scss */
.select2-container-multi .select2-choices .select2-search-choice-focus .select2-search-choice-close {
  background-position: right -11px;
}

/* disabled styles */
/* line 643, shared/select2/_base.scss */
.select2-container-multi.select2-container-disabled .select2-choices {
  background-color: #f4f4f4;
  background-image: none;
  border: 1px solid #ddd;
  cursor: default;
}

/* line 650, shared/select2/_base.scss */
.select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice {
  padding: 3px 5px 3px 5px;
  border: 1px solid #ddd;
  background-image: none;
  background-color: #f4f4f4;
}

/* line 657, shared/select2/_base.scss */
.select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice .select2-search-choice-close {
  display: none;
  background: none;
}

/* end multiselect */
/* line 663, shared/select2/_base.scss */
.select2-result-selectable .select2-match,
.select2-result-unselectable .select2-match {
  text-decoration: underline;
}

/* line 668, shared/select2/_base.scss */
.select2-offscreen, .select2-offscreen:focus {
  clip: rect(0 0 0 0) !important;
  width: 1px !important;
  height: 1px !important;
  border: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  position: absolute !important;
  outline: 0 !important;
  left: 0px !important;
  top: 0px !important;
}

/* line 682, shared/select2/_base.scss */
.select2-display-none {
  display: none;
}

/* line 686, shared/select2/_base.scss */
.select2-measure-scrollbar {
  position: absolute;
  top: -10000px;
  left: -10000px;
  width: 100px;
  height: 100px;
  overflow: scroll;
}

/* Retina-ize icons */
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 2dppx) {
  /* line 698, shared/select2/_base.scss */
  .select2-search input,
  .select2-search-choice-close,
  .select2-container .select2-choice abbr,
  .select2-container .select2-choice .select2-arrow b {
    background-image: url('../../images/libraries/select2/select2x2.png') !important;
    background-repeat: no-repeat !important;
    background-size: 60px 40px !important;
  }

  /* line 707, shared/select2/_base.scss */
  .select2-search input {
    background-position: 100% -21px !important;
  }
}
@font-face {
  font-family: "Inter";
  src: url('../../fonts/Inter/static/Inter-Regular.ttf') format("truetype");
}
@font-face {
  font-family: 'icomoon';
  /* MI rebrand compiled icons */
  src: url('../../fonts/icomoon.eot');
  /* IE9 Compat Modes */
  src: url('../../fonts/icomoon.eot?#iefix') format("embedded-opentype"), url('../../fonts/icomoon.woff') format("woff"), url('../../fonts/icomoon.ttf') format("truetype"), url('../../fonts/icomoon.svg#mi_rebrand-icons') format("svg");
  /* Legacy iOS */
}
/* line 166, shared/_rebrand.scss */
.icon-Add-Circle-Filled, .icon-Add-Circle-Outline, .icon-Add, .icon-Alarm, .icon-Alerts-Alert-ClockFilled,
.icon-Alerts-Alert-ClockOutline, .icon-Alerts-InfoFilled, .icon-Alerts-InfoOutline, .icon-Alerts-NotificationFilled,
.icon-Alerts-NotificationOutline, .icon-Alerts-Null-AlertFilled, .icon-Alerts-Null-AlertOutline,
.icon-Alerts-WarningFilled, .icon-Alerts-WarningOutline, .icon-Analysis, .icon-Analyze-Filled, .icon-Analyze-Outline,
.icon-Attractiveness-Score, .icon-Bad, .icon-Bar-Chart, .icon-Blank-FIlled, .icon-Blank-Outline, .icon-Bookmark-Filled,
.icon-Bookmark-Outline, .icon-Browser-Chrome, .icon-Browser-Edge, .icon-Browser-Firefox, .icon-Calculator-Filled,
.icon-Calculator-Outline, .icon-Calendar-Filled, .icon-Calendar-Outline, .icon-Call, .icon-Caution, .icon-Chat-Filled,
.icon-Chat-Outline, .icon-Checkbox-Indeterminate-FilledNo, .icon-Checkbox-Indeterminate-FilledYes,
.icon-Checkbox-IndeterminateNo, .icon-Checkbox-IndeterminateYes, .icon-Checkbox-Selected-FilledNo,
.icon-Checkbox-Selected-FilledYes, .icon-Checkbox-SelectedNo, .icon-Checkbox-SelectedYes,
.icon-Checkbox-Unselected-FilledNo, .icon-Checkbox-Unselected-FilledYes, .icon-Checkbox-UnselectedNo,
.icon-Checkbox-UnselectedYes, .icon-Checkmark, .icon-Circle-Arrows-DownFilled, .icon-Circle-Arrows-DownOutline,
.icon-Circle-Arrows-LeftFilled, .icon-Circle-Arrows-LeftOutline, .icon-Circle-Arrows-RightFilled,
.icon-Circle-Arrows-RightOutline, .icon-Circle-Arrows-UpFilled, .icon-Circle-Arrows-UpOutline, .icon-Clone,
.icon-Close-Circle-Filled, .icon-Close-Circle-Outline, .icon-Close, .icon-Code, .icon-Communication-Services,
.icon-Company, .icon-Compressed-Filled, .icon-Compressed-Outline, .icon-Convert, .icon-Corruption,
.icon-Currency-Dollar, .icon-Currency-Euro, .icon-Currency-Generic-Currency, .icon-Currency-Pound,
.icon-Cursors-Hand-Click, .icon-Cursors-Hand-Grab, .icon-Cursors-Hand-Hover, .icon-Cursors-Pointer,
.icon-Cyber-Risk-Filled, .icon-Cyber-Risk-Outline, .icon-Dashboard-Filled, .icon-Dashboard-Outline, .icon-Database,
.icon-Device-Desktop, .icon-Device-Laptop, .icon-Device-Phone, .icon-Device-Tablet, .icon-Dots-Horizontal,
.icon-Dots-Vertical, .icon-Double-Arrow-Down, .icon-Double-Arrow-Left, .icon-Double-Arrow-Right, .icon-Double-Arrow-Up,
.icon-Download-Filled, .icon-Download-Outline, .icon-Edit-Bold, .icon-Edit-Filled, .icon-Edit-Italic,
.icon-Edit-Outline, .icon-Edit-Redo-Alt, .icon-Edit-Redo, .icon-Edit-Refresh, .icon-Edit-Strikethrough,
.icon-Edit-Text-Color, .icon-Edit-Underline, .icon-Edit-Undo, .icon-Energy, .icon-Envelope-Closed-FilledClosed,
.icon-Envelope-Closed-FilledOpen, .icon-Envelope-Closed-OutlineClosed, .icon-Envelope-Closed-OutlineOpen,
.icon-Environment, .icon-ESG, .icon-Excel-FIlled, .icon-Excel-Outline, .icon-External-Link, .icon-Eye-Eye-Blocked,
.icon-Eye-Eye, .icon-Filter, .icon-Financials-Filled, .icon-Financials-Outline, .icon-Flag-Filled,
.icon-Flag-Outline, .icon-Folder-Filled, .icon-Folder-Outline, .icon-Formspring, .icon-Globe, .icon-Good,
.icon-Governance, .icon-Grip-Grip-Alt, .icon-Grip-Grip, .icon-Group-Filled-copy, .icon-Group-Filled,
.icon-Group-Outline-copy, .icon-Group-Outline, .icon-Hamburger, .icon-Healthcare-Filled, .icon-Healthcare-Outline,
.icon-Help-Filled, .icon-Help-Outline, .icon-History, .icon-Home-Filled, .icon-Home-Outline, .icon-Human-Rights,
.icon-II-Wisdom, .icon-Industrials, .icon-ISS-Trimond, .icon-Key, .icon-Labor, .icon-Library-Filled,
.icon-Library-Outline, .icon-Line-Arrow-Down, .icon-Line-Arrow-Left, .icon-Line-Arrow-Right, .icon-Line-Arrow-Up,
.icon-Link, .icon-List-Bullet, .icon-List-Numerical, .icon-Location-Filled, .icon-Location-Outline, .icon-Lock-Locked,
.icon-Lock-Unlocked, .icon-Multimenu, .icon-Negative, .icon-No-Value, .icon-Note-Filled, .icon-Note-Outline, .icon-Null,
.icon-Null1, .icon-Outline-Arrow-Down, .icon-Outline-Arrow-Left, .icon-Outline-Arrow-Right, .icon-Outline-Arrow-Up,
.icon-PDF-Filled, .icon-PDF-Outline, .icon-Person-Filled, .icon-Person-Outline, .icon-Pie-Chart-Filled,
.icon-Pie-Chart-Outliine, .icon-Pin-Filled, .icon-Pin-Outline, .icon-Play-FilledCircle, .icon-Play-FilledNo-Circle,
.icon-Play-OutlineCircle, .icon-Play-OutlineNo-Circle, .icon-Podcast, .icon-Positive, .icon-Power,
.icon-Powerpoint-Filled, .icon-Powerpoint-Outline, .icon-Printer-Filled, .icon-Printer-Outline,
.icon-Radio-Button-SelectedNo, .icon-Radio-Button-SelectedYes, .icon-Radio-Button-UnselectedNo,
.icon-Radio-Button-UnselectedYes, .icon-Real-Estate-Filled, .icon-Real-Estate-Outline, .icon-Remove-Circle-Filled,
.icon-Remove-Circle-Outline, .icon-Remove, .icon-Report-Gallery-Filled, .icon-Report-Gallery-Outline,
.icon-Research-Filled-copy, .icon-Research-Filled, .icon-Research-Outline-copy, .icon-Research-Outline,
.icon-Screen-Fullscreen-Exit, .icon-Screen-Fullscreen-Alt, .icon-Screen-Fullscreen, .icon-Search,
.icon-Settings-Filled, .icon-Settings-Outline, .icon-Shapes-Box-Rounded, .icon-Shapes-Circle, .icon-Share,
.icon-Shopping-Bag-Filled, .icon-Shopping-Bag-Outline, .icon-Shopping-Cart-Filled, .icon-Shopping-Cart-Outline,
.icon-Significantly-Negative, .icon-Significantly-Postitive, .icon-Slider, .icon-Social, .icon-Solid-Arrow-Down,
.icon-Solid-Arrow-Left, .icon-Solid-Arrow-Right, .icon-Solid-Arrow-Up, .icon-Sorting-Alphabetical-Ascending,
.icon-Sorting-Alphabetical-Descending, .icon-Sorting-Ascending, .icon-Sorting-Descending,
.icon-Sorting-Numeric-Ascending, .icon-Sorting-Numeric-Descending, .icon-Speedometer, .icon-Spinner, .icon-Star-Filled,
.icon-Star-Outline, .icon-Summary-Filled, .icon-Summary-Outline, .icon-Support-Filled, .icon-Support-Outline,
.icon-Switch-OffNo, .icon-Switch-OffYes, .icon-Table-Columns, .icon-Table-Pivot-Table, .icon-Table-Rows,
.icon-Table-Table, .icon-Tag-FilledNo, .icon-Tag-FilledYes, .icon-Tag-OutlineNo, .icon-Tag-OutlineYes, .icon-Target,
.icon-Text-Indent-Left, .icon-Text-Indent-Right, .icon-Text-Justify-Center, .icon-Text-Justify-Left,
.icon-Text-Justify-Right, .icon-Text-Filled, .icon-Text-Outline, .icon-Upload-Filled, .icon-Upload-Outline,
.icon-Utilities, .icon-Volume-Filled, .icon-Volume-Outline, .icon-Vote, .icon-Weapons, .icon-Widget-Outline,
.icon-Widget-Solid, .icon-Word-Filled, .icon-Word-Outline, .icon-Workbook-Filled, .icon-Workbook-Outline,
.icon-Envelope-Closed-FilledClosed2, .icon-Envelope-Closed-FilledOpen2, .icon-Envelope-Closed-OutlineClosed2 {
  font-family: 'icomoon';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}

/* line 236, shared/_rebrand.scss */
.icon-Add-Circle-Filled:before {
  content: "\e900";
}

/* line 239, shared/_rebrand.scss */
.icon-Add-Circle-Outline:before {
  content: "\e901";
}

/* line 243, shared/_rebrand.scss */
.icon-Add:before {
  content: "\e902";
}

/* line 247, shared/_rebrand.scss */
.icon-Alarm:before {
  content: "\e903";
}

/* line 251, shared/_rebrand.scss */
.icon-Alerts-Alert-ClockFilled:before {
  content: "\e904";
}

/* line 255, shared/_rebrand.scss */
.icon-Alerts-Alert-ClockOutline:before {
  content: "\e905";
}

/* line 259, shared/_rebrand.scss */
.icon-Alerts-InfoFilled:before {
  content: "\e906";
}

/* line 263, shared/_rebrand.scss */
.icon-Alerts-InfoOutline:before {
  content: "\e907";
}

/* line 267, shared/_rebrand.scss */
.icon-Alerts-NotificationFilled:before {
  content: "\e908";
}

/* line 271, shared/_rebrand.scss */
.icon-Alerts-NotificationOutline:before {
  content: "\e909";
}

/* line 275, shared/_rebrand.scss */
.icon-Alerts-Null-AlertFilled:before {
  content: "\e90a";
}

/* line 279, shared/_rebrand.scss */
.icon-Alerts-Null-AlertOutline:before {
  content: "\e90b";
}

/* line 283, shared/_rebrand.scss */
.icon-Alerts-WarningFilled:before {
  content: "\e90c";
}

/* line 287, shared/_rebrand.scss */
.icon-Alerts-WarningOutline:before {
  content: "\e90d";
}

/* line 291, shared/_rebrand.scss */
.icon-Analysis:before {
  content: "\e90e";
}

/* line 295, shared/_rebrand.scss */
.icon-Analyze-Filled:before {
  content: "\e90f";
}

/* line 299, shared/_rebrand.scss */
.icon-Analyze-Outline:before {
  content: "\e910";
}

/* line 303, shared/_rebrand.scss */
.icon-Attractiveness-Score:before {
  content: "\e911";
}

/* line 307, shared/_rebrand.scss */
.icon-Bad:before {
  content: "\e912";
}

/* line 311, shared/_rebrand.scss */
.icon-Bar-Chart:before {
  content: "\e913";
}

/* line 315, shared/_rebrand.scss */
.icon-Blank-FIlled:before {
  content: "\e914";
}

/* line 319, shared/_rebrand.scss */
.icon-Blank-Outline:before {
  content: "\e915";
}

/* line 323, shared/_rebrand.scss */
.icon-Bookmark-Filled:before {
  content: "\e916";
}

/* line 327, shared/_rebrand.scss */
.icon-Bookmark-Outline:before {
  content: "\e917";
}

/* line 331, shared/_rebrand.scss */
.icon-Browser-Chrome:before {
  content: "\e918";
}

/* line 335, shared/_rebrand.scss */
.icon-Browser-Edge:before {
  content: "\e919";
}

/* line 339, shared/_rebrand.scss */
.icon-Browser-Firefox:before {
  content: "\e91a";
}

/* line 343, shared/_rebrand.scss */
.icon-Calculator-Filled:before {
  content: "\e91b";
}

/* line 347, shared/_rebrand.scss */
.icon-Calculator-Outline:before {
  content: "\e91c";
}

/* line 351, shared/_rebrand.scss */
.icon-Calendar-Filled:before {
  content: "\e91d";
}

/* line 355, shared/_rebrand.scss */
.icon-Calendar-Outline:before {
  content: "\e91e";
}

/* line 359, shared/_rebrand.scss */
.icon-Call:before {
  content: "\e91f";
}

/* line 363, shared/_rebrand.scss */
.icon-Caution:before {
  content: "\e920";
}

/* line 367, shared/_rebrand.scss */
.icon-Chat-Filled:before {
  content: "\e921";
}

/* line 371, shared/_rebrand.scss */
.icon-Chat-Outline:before {
  content: "\e922";
}

/* line 375, shared/_rebrand.scss */
.icon-Checkbox-Indeterminate-FilledNo:before {
  content: "\e923";
}

/* line 379, shared/_rebrand.scss */
.icon-Checkbox-Indeterminate-FilledYes:before {
  content: "\e924";
}

/* line 383, shared/_rebrand.scss */
.icon-Checkbox-IndeterminateNo:before {
  content: "\e925";
}

/* line 387, shared/_rebrand.scss */
.icon-Checkbox-IndeterminateYes:before {
  content: "\e926";
}

/* line 391, shared/_rebrand.scss */
.icon-Checkbox-Selected-FilledNo:before {
  content: "\e927";
}

/* line 395, shared/_rebrand.scss */
.icon-Checkbox-Selected-FilledYes:before {
  content: "\e928";
}

/* line 399, shared/_rebrand.scss */
.icon-Checkbox-SelectedNo:before {
  content: "\e929";
}

/* line 403, shared/_rebrand.scss */
.icon-Checkbox-SelectedYes:before {
  content: "\e92a";
}

/* line 407, shared/_rebrand.scss */
.icon-Checkbox-Unselected-FilledNo:before {
  content: "\e92b";
}

/* line 411, shared/_rebrand.scss */
.icon-Checkbox-Unselected-FilledYes:before {
  content: "\e92d";
}

/* line 415, shared/_rebrand.scss */
.icon-Checkbox-UnselectedNo:before {
  content: "\e92f";
}

/* line 419, shared/_rebrand.scss */
.icon-Checkbox-UnselectedYes:before {
  content: "\e930";
}

/* line 423, shared/_rebrand.scss */
.icon-Checkmark:before {
  content: "\e931";
}

/* line 427, shared/_rebrand.scss */
.icon-Circle-Arrows-DownFilled:before {
  content: "\e932";
}

/* line 431, shared/_rebrand.scss */
.icon-Circle-Arrows-DownOutline:before {
  content: "\e933";
}

/* line 435, shared/_rebrand.scss */
.icon-Circle-Arrows-LeftFilled:before {
  content: "\e934";
}

/* line 439, shared/_rebrand.scss */
.icon-Circle-Arrows-LeftOutline:before {
  content: "\e935";
}

/* line 443, shared/_rebrand.scss */
.icon-Circle-Arrows-RightFilled:before {
  content: "\e936";
}

/* line 447, shared/_rebrand.scss */
.icon-Circle-Arrows-RightOutline:before {
  content: "\e937";
}

/* line 451, shared/_rebrand.scss */
.icon-Circle-Arrows-UpFilled:before {
  content: "\e938";
}

/* line 455, shared/_rebrand.scss */
.icon-Circle-Arrows-UpOutline:before {
  content: "\e939";
}

/* line 459, shared/_rebrand.scss */
.icon-Clone:before {
  content: "\e93a";
}

/* line 463, shared/_rebrand.scss */
.icon-Close-Circle-Filled:before {
  content: "\e93b";
}

/* line 467, shared/_rebrand.scss */
.icon-Close-Circle-Outline:before {
  content: "\e93c";
}

/* line 471, shared/_rebrand.scss */
.icon-Close:before {
  content: "\e93d";
}

/* line 475, shared/_rebrand.scss */
.icon-Code:before {
  content: "\e93e";
}

/* line 479, shared/_rebrand.scss */
.icon-Communication-Services:before {
  content: "\e93f";
}

/* line 483, shared/_rebrand.scss */
.icon-Company:before {
  content: "\e940";
}

/* line 487, shared/_rebrand.scss */
.icon-Compressed-Filled:before {
  content: "\e941";
}

/* line 491, shared/_rebrand.scss */
.icon-Compressed-Outline:before {
  content: "\e942";
}

/* line 495, shared/_rebrand.scss */
.icon-Convert:before {
  content: "\e943";
}

/* line 499, shared/_rebrand.scss */
.icon-Corruption:before {
  content: "\e944";
}

/* line 503, shared/_rebrand.scss */
.icon-Currency-Dollar:before {
  content: "\e945";
}

/* line 507, shared/_rebrand.scss */
.icon-Currency-Euro:before {
  content: "\e946";
}

/* line 511, shared/_rebrand.scss */
.icon-Currency-Generic-Currency:before {
  content: "\e947";
}

/* line 515, shared/_rebrand.scss */
.icon-Currency-Pound:before {
  content: "\e948";
}

/* line 519, shared/_rebrand.scss */
.icon-Cursors-Hand-Click:before {
  content: "\e949";
}

/* line 523, shared/_rebrand.scss */
.icon-Cursors-Hand-Grab:before {
  content: "\e94b";
}

/* line 527, shared/_rebrand.scss */
.icon-Cursors-Hand-Hover:before {
  content: "\e94c";
}

/* line 531, shared/_rebrand.scss */
.icon-Cursors-Pointer:before {
  content: "\e94d";
}

/* line 535, shared/_rebrand.scss */
.icon-Cyber-Risk-Filled:before {
  content: "\e950";
}

/* line 539, shared/_rebrand.scss */
.icon-Cyber-Risk-Outline:before {
  content: "\e951";
}

/* line 543, shared/_rebrand.scss */
.icon-Dashboard-Filled:before {
  content: "\e952";
}

/* line 547, shared/_rebrand.scss */
.icon-Dashboard-Outline:before {
  content: "\e953";
}

/* line 551, shared/_rebrand.scss */
.icon-Database:before {
  content: "\e954";
}

/* line 555, shared/_rebrand.scss */
.icon-Device-Desktop:before {
  content: "\e955";
}

/* line 559, shared/_rebrand.scss */
.icon-Device-Laptop:before {
  content: "\e956";
}

/* line 563, shared/_rebrand.scss */
.icon-Device-Phone:before {
  content: "\e957";
}

/* line 567, shared/_rebrand.scss */
.icon-Device-Tablet:before {
  content: "\e958";
}

/* line 571, shared/_rebrand.scss */
.icon-Dots-Horizontal:before {
  content: "\e959";
}

/* line 575, shared/_rebrand.scss */
.icon-Dots-Vertical:before {
  content: "\e95a";
}

/* line 579, shared/_rebrand.scss */
.icon-Double-Arrow-Down:before {
  content: "\e95b";
}

/* line 583, shared/_rebrand.scss */
.icon-Double-Arrow-Left:before {
  content: "\e95c";
}

/* line 587, shared/_rebrand.scss */
.icon-Double-Arrow-Right:before {
  content: "\e95d";
}

/* line 591, shared/_rebrand.scss */
.icon-Double-Arrow-Up:before {
  content: "\e95e";
}

/* line 595, shared/_rebrand.scss */
.icon-Download-Filled:before {
  content: "\e95f";
}

/* line 599, shared/_rebrand.scss */
.icon-Download-Outline:before {
  content: "\e960";
}

/* line 603, shared/_rebrand.scss */
.icon-Edit-Bold:before {
  content: "\e961";
}

/* line 607, shared/_rebrand.scss */
.icon-Edit-Filled:before {
  content: "\e962";
}

/* line 611, shared/_rebrand.scss */
.icon-Edit-Italic:before {
  content: "\e963";
}

/* line 615, shared/_rebrand.scss */
.icon-Edit-Outline:before {
  content: "\e964";
}

/* line 619, shared/_rebrand.scss */
.icon-Edit-Redo-Alt:before {
  content: "\e965";
}

/* line 623, shared/_rebrand.scss */
.icon-Edit-Redo:before {
  content: "\e966";
}

/* line 627, shared/_rebrand.scss */
.icon-Edit-Refresh:before {
  content: "\e967";
}

/* line 631, shared/_rebrand.scss */
.icon-Edit-Strikethrough:before {
  content: "\e968";
}

/* line 635, shared/_rebrand.scss */
.icon-Edit-Text-Color:before {
  content: "\e969";
}

/* line 639, shared/_rebrand.scss */
.icon-Edit-Underline:before {
  content: "\e96a";
}

/* line 643, shared/_rebrand.scss */
.icon-Edit-Undo:before {
  content: "\e96b";
}

/* line 647, shared/_rebrand.scss */
.icon-Energy:before {
  content: "\e96c";
}

/* line 651, shared/_rebrand.scss */
.icon-Envelope-Closed-FilledClosed:before {
  color: #FAFAFA;
  content: "\e96d";
}

/* line 656, shared/_rebrand.scss */
.icon-Envelope-Closed-FilledOpen:before {
  color: #FAFAFA;
  content: "\e96e";
}

/* line 661, shared/_rebrand.scss */
.icon-Envelope-Closed-OutlineClosed:before {
  color: #FAFAFA;
  content: "\e96f";
}

/* line 666, shared/_rebrand.scss */
.icon-Envelope-Closed-FilledClosed2:before {
  content: "\e96d";
}

/* line 670, shared/_rebrand.scss */
.icon-Envelope-Closed-FilledOpen2:before {
  content: "\e96e";
}

/* line 674, shared/_rebrand.scss */
.icon-Envelope-Closed-OutlineClosed2:before {
  content: "\e96f";
}

/* line 678, shared/_rebrand.scss */
.icon-Envelope-Closed-OutlineOpen:before {
  content: "\e970";
}

/* line 683, shared/_rebrand.scss */
.icon-Environment:before {
  content: "\e971";
}

/* line 687, shared/_rebrand.scss */
.icon-ESG:before {
  content: "\e972";
}

/* line 691, shared/_rebrand.scss */
.icon-Excel-FIlled:before {
  content: "\e973";
}

/* line 695, shared/_rebrand.scss */
.icon-Excel-Outline:before {
  content: "\e974";
}

/* line 699, shared/_rebrand.scss */
.icon-External-Link:before {
  content: "\e975";
}

/* line 703, shared/_rebrand.scss */
.icon-Eye-Eye-Blocked:before {
  content: "\e976";
}

/* line 707, shared/_rebrand.scss */
.icon-Eye-Eye:before {
  content: "\e977";
}

/* line 711, shared/_rebrand.scss */
.icon-Filter:before {
  content: "\e978";
}

/* line 715, shared/_rebrand.scss */
.icon-Financials-Filled:before {
  content: "\e979";
}

/* line 719, shared/_rebrand.scss */
.icon-Financials-Outline:before {
  content: "\e97a";
}

/* line 723, shared/_rebrand.scss */
.icon-Flag-Filled:before {
  content: "\e97b";
}

/* line 727, shared/_rebrand.scss */
.icon-Flag-Outline:before {
  content: "\e97c";
}

/* line 731, shared/_rebrand.scss */
.icon-Folder-Filled:before {
  content: "\e97d";
}

/* line 735, shared/_rebrand.scss */
.icon-Folder-Outline:before {
  content: "\e97e";
}

/* line 739, shared/_rebrand.scss */
.icon-Formspring:before {
  content: "\e97f";
}

/* line 743, shared/_rebrand.scss */
.icon-Globe:before {
  content: "\e980";
}

/* line 747, shared/_rebrand.scss */
.icon-Good:before {
  content: "\e981";
}

/* line 751, shared/_rebrand.scss */
.icon-Governance:before {
  content: "\e982";
}

/* line 755, shared/_rebrand.scss */
.icon-Grip-Grip-Alt:before {
  content: "\e983";
}

/* line 759, shared/_rebrand.scss */
.icon-Grip-Grip:before {
  content: "\e984";
}

/* line 763, shared/_rebrand.scss */
.icon-Group-Filled-copy:before {
  content: "\e985";
}

/* line 767, shared/_rebrand.scss */
.icon-Group-Filled:before {
  content: "\e986";
}

/* line 771, shared/_rebrand.scss */
.icon-Group-Outline-copy:before {
  content: "\e987";
}

/* line 775, shared/_rebrand.scss */
.icon-Group-Outline:before {
  content: "\e988";
}

/* line 779, shared/_rebrand.scss */
.icon-Hamburger:before {
  content: "\e989";
}

/* line 783, shared/_rebrand.scss */
.icon-Healthcare-Filled:before {
  content: "\e98a";
}

/* line 787, shared/_rebrand.scss */
.icon-Healthcare-Outline:before {
  content: "\e98b";
}

/* line 791, shared/_rebrand.scss */
.icon-Help-Filled:before {
  content: "\e98c";
}

/* line 795, shared/_rebrand.scss */
.icon-Help-Outline:before {
  content: "\e98d";
}

/* line 799, shared/_rebrand.scss */
.icon-History:before {
  content: "\e98e";
}

/* line 803, shared/_rebrand.scss */
.icon-Home-Filled:before {
  content: "\e98f";
}

/* line 807, shared/_rebrand.scss */
.icon-Home-Outline:before {
  content: "\e990";
}

/* line 811, shared/_rebrand.scss */
.icon-Human-Rights:before {
  content: "\e991";
}

/* line 815, shared/_rebrand.scss */
.icon-II-Wisdom:before {
  content: "\e992";
}

/* line 819, shared/_rebrand.scss */
.icon-Industrials:before {
  content: "\e993";
}

/* line 823, shared/_rebrand.scss */
.icon-ISS-Trimond:before {
  content: "\e994";
}

/* line 827, shared/_rebrand.scss */
.icon-Key:before {
  content: "\e995";
}

/* line 831, shared/_rebrand.scss */
.icon-Labor:before {
  content: "\e996";
}

/* line 835, shared/_rebrand.scss */
.icon-Library-Filled:before {
  content: "\e997";
}

/* line 839, shared/_rebrand.scss */
.icon-Library-Outline:before {
  content: "\e998";
}

/* line 843, shared/_rebrand.scss */
.icon-Line-Arrow-Down:before {
  content: "\e999";
}

/* line 847, shared/_rebrand.scss */
.icon-Line-Arrow-Left:before {
  content: "\e99a";
}

/* line 851, shared/_rebrand.scss */
.icon-Line-Arrow-Right:before {
  content: "\e99b";
}

/* line 855, shared/_rebrand.scss */
.icon-Line-Arrow-Up:before {
  content: "\e99c";
}

/* line 859, shared/_rebrand.scss */
.icon-Link:before {
  content: "\e99d";
}

/* line 863, shared/_rebrand.scss */
.icon-List-Bullet:before {
  content: "\e99e";
}

/* line 867, shared/_rebrand.scss */
.icon-List-Numerical:before {
  content: "\e99f";
}

/* line 871, shared/_rebrand.scss */
.icon-Location-Filled:before {
  content: "\e9a0";
}

/* line 875, shared/_rebrand.scss */
.icon-Location-Outline:before {
  content: "\e9a1";
}

/* line 879, shared/_rebrand.scss */
.icon-Lock-Locked:before {
  content: "\e9a2";
}

/* line 883, shared/_rebrand.scss */
.icon-Lock-Unlocked:before {
  content: "\e9a3";
}

/* line 887, shared/_rebrand.scss */
.icon-Multimenu:before {
  content: "\e9a4";
}

/* line 891, shared/_rebrand.scss */
.icon-Negative:before {
  content: "\e9a5";
}

/* line 895, shared/_rebrand.scss */
.icon-No-Value:before {
  content: "\e9a6";
}

/* line 899, shared/_rebrand.scss */
.icon-Note-Filled:before {
  content: "\e9a7";
}

/* line 903, shared/_rebrand.scss */
.icon-Note-Outline:before {
  content: "\e9a8";
}

/* line 907, shared/_rebrand.scss */
.icon-Null:before {
  content: "\e9a9";
}

/* line 911, shared/_rebrand.scss */
.icon-Null1:before {
  content: "\e9aa";
}

/* line 915, shared/_rebrand.scss */
.icon-Outline-Arrow-Down:before {
  content: "\e9ab";
}

/* line 919, shared/_rebrand.scss */
.icon-Outline-Arrow-Left:before {
  content: "\e9ac";
}

/* line 923, shared/_rebrand.scss */
.icon-Outline-Arrow-Right:before {
  content: "\e9ad";
}

/* line 927, shared/_rebrand.scss */
.icon-Outline-Arrow-Up:before {
  content: "\e9ae";
}

/* line 931, shared/_rebrand.scss */
.icon-PDF-Filled:before {
  content: "\e9af";
}

/* line 935, shared/_rebrand.scss */
.icon-PDF-Outline:before {
  content: "\e9b0";
}

/* line 939, shared/_rebrand.scss */
.icon-Person-Filled:before {
  content: "\e9b1";
}

/* line 943, shared/_rebrand.scss */
.icon-Person-Outline:before {
  content: "\e9b2";
}

/* line 947, shared/_rebrand.scss */
.icon-Pie-Chart-Filled:before {
  content: "\e9b3";
}

/* line 951, shared/_rebrand.scss */
.icon-Pie-Chart-Outliine:before {
  content: "\e9b4";
}

/* line 955, shared/_rebrand.scss */
.icon-Pin-Filled:before {
  content: "\e9b5";
}

/* line 959, shared/_rebrand.scss */
.icon-Pin-Outline:before {
  content: "\e9b6";
}

/* line 963, shared/_rebrand.scss */
.icon-Play-FilledCircle:before {
  content: "\e9b7";
}

/* line 967, shared/_rebrand.scss */
.icon-Play-FilledNo-Circle:before {
  content: "\e9b8";
}

/* line 971, shared/_rebrand.scss */
.icon-Play-OutlineCircle:before {
  content: "\e9b9";
}

/* line 975, shared/_rebrand.scss */
.icon-Play-OutlineNo-Circle:before {
  content: "\e9ba";
}

/* line 979, shared/_rebrand.scss */
.icon-Podcast:before {
  content: "\e9bb";
}

/* line 983, shared/_rebrand.scss */
.icon-Positive:before {
  content: "\e9bc";
}

/* line 987, shared/_rebrand.scss */
.icon-Power:before {
  content: "\e9bd";
}

/* line 991, shared/_rebrand.scss */
.icon-Powerpoint-Filled:before {
  content: "\e9be";
}

/* line 995, shared/_rebrand.scss */
.icon-Powerpoint-Outline:before {
  content: "\e9bf";
}

/* line 999, shared/_rebrand.scss */
.icon-Printer-Filled:before {
  content: "\e9c0";
}

/* line 1003, shared/_rebrand.scss */
.icon-Printer-Outline:before {
  color: #FAFAFA;
  content: "\e9c1";
}

/* line 1008, shared/_rebrand.scss */
.icon-Radio-Button-SelectedNo:before {
  content: "\e9c2";
}

/* line 1012, shared/_rebrand.scss */
.icon-Radio-Button-SelectedYes:before {
  content: "\e9c3";
}

/* line 1016, shared/_rebrand.scss */
.icon-Radio-Button-UnselectedNo:before {
  content: "\e9c4";
}

/* line 1020, shared/_rebrand.scss */
.icon-Radio-Button-UnselectedYes:before {
  content: "\e9c5";
}

/* line 1024, shared/_rebrand.scss */
.icon-Real-Estate-Filled:before {
  content: "\e9c6";
}

/* line 1028, shared/_rebrand.scss */
.icon-Real-Estate-Outline:before {
  content: "\e9c7";
}

/* line 1032, shared/_rebrand.scss */
.icon-Remove-Circle-Filled:before {
  content: "\e9c8";
}

/* line 1036, shared/_rebrand.scss */
.icon-Remove-Circle-Outline:before {
  content: "\e9c9";
}

/* line 1040, shared/_rebrand.scss */
.icon-Remove:before {
  content: "\e9ca";
}

/* line 1044, shared/_rebrand.scss */
.icon-Report-Gallery-Filled:before {
  content: "\e9cb";
}

/* line 1048, shared/_rebrand.scss */
.icon-Report-Gallery-Outline:before {
  content: "\e9cc";
}

/* line 1052, shared/_rebrand.scss */
.icon-Research-Filled-copy:before {
  content: "\e9cd";
}

/* line 1056, shared/_rebrand.scss */
.icon-Research-Filled:before {
  content: "\e9ce";
}

/* line 1060, shared/_rebrand.scss */
.icon-Research-Outline-copy:before {
  content: "\e9cf";
}

/* line 1064, shared/_rebrand.scss */
.icon-Research-Outline:before {
  content: "\e9d0";
}

/* line 1068, shared/_rebrand.scss */
.icon-Screen-Fullscreen-Exit:before {
  content: "\e9d1";
}

/* line 1072, shared/_rebrand.scss */
.icon-Screen-Fullscreen-Alt:before {
  content: "\e9d2";
}

/* line 1076, shared/_rebrand.scss */
.icon-Screen-Fullscreen:before {
  content: "\e9d3";
}

/* line 1080, shared/_rebrand.scss */
.icon-Search:before {
  content: "\e9d4";
}

/* line 1084, shared/_rebrand.scss */
.icon-Settings-Filled:before {
  content: "\e9d5";
}

/* line 1088, shared/_rebrand.scss */
.icon-Settings-Outline:before {
  content: "\e9d6";
}

/* line 1092, shared/_rebrand.scss */
.icon-Shapes-Box-Rounded:before {
  content: "\e9d7";
}

/* line 1096, shared/_rebrand.scss */
.icon-Shapes-Circle:before {
  content: "\e9d8";
}

/* line 1100, shared/_rebrand.scss */
.icon-Share:before {
  color: #FAFAFA;
  content: "\e9d9";
}

/* line 1105, shared/_rebrand.scss */
.icon-Shopping-Bag-Filled:before {
  content: "\e9da";
}

/* line 1109, shared/_rebrand.scss */
.icon-Shopping-Bag-Outline:before {
  content: "\e9db";
}

/* line 1113, shared/_rebrand.scss */
.icon-Shopping-Cart-Filled:before {
  content: "\e9dc";
}

/* line 1117, shared/_rebrand.scss */
.icon-Shopping-Cart-Outline:before {
  content: "\e9dd";
}

/* line 1121, shared/_rebrand.scss */
.icon-Significantly-Negative:before {
  content: "\e9de";
}

/* line 1125, shared/_rebrand.scss */
.icon-Significantly-Postitive:before {
  content: "\e9df";
}

/* line 1129, shared/_rebrand.scss */
.icon-Slider:before {
  content: "\e9e0";
}

/* line 1133, shared/_rebrand.scss */
.icon-Social:before {
  content: "\e9e1";
}

/* line 1137, shared/_rebrand.scss */
.icon-Solid-Arrow-Down:before {
  content: "\e9e2";
}

/* line 1141, shared/_rebrand.scss */
.icon-Solid-Arrow-Left:before {
  content: "\e9e3";
}

/* line 1145, shared/_rebrand.scss */
.icon-Solid-Arrow-Right:before {
  content: "\e9e4";
}

/* line 1149, shared/_rebrand.scss */
.icon-Solid-Arrow-Up:before {
  content: "\e9e5";
}

/* line 1153, shared/_rebrand.scss */
.icon-Sorting-Alphabetical-Ascending:before {
  content: "\e9e6";
}

/* line 1157, shared/_rebrand.scss */
.icon-Sorting-Alphabetical-Descending:before {
  content: "\e9e7";
}

/* line 1161, shared/_rebrand.scss */
.icon-Sorting-Ascending:before {
  content: "\e9e8";
}

/* line 1165, shared/_rebrand.scss */
.icon-Sorting-Descending:before {
  content: "\e9e9";
}

/* line 1169, shared/_rebrand.scss */
.icon-Sorting-Numeric-Ascending:before {
  content: "\e9ea";
}

/* line 1173, shared/_rebrand.scss */
.icon-Sorting-Numeric-Descending:before {
  content: "\e9eb";
}

/* line 1177, shared/_rebrand.scss */
.icon-Speedometer:before {
  content: "\e9ec";
}

/* line 1181, shared/_rebrand.scss */
.icon-Spinner:before {
  content: "\e9ed";
}

/* line 1185, shared/_rebrand.scss */
.icon-Star-Filled:before {
  content: "\e9ee";
}

/* line 1189, shared/_rebrand.scss */
.icon-Star-Outline:before {
  content: "\e9ef";
}

/* line 1193, shared/_rebrand.scss */
.icon-Summary-Filled:before {
  content: "\e9f0";
}

/* line 1197, shared/_rebrand.scss */
.icon-Summary-Outline:before {
  content: "\e9f1";
}

/* line 1201, shared/_rebrand.scss */
.icon-Support-Filled:before {
  content: "\e9f2";
}

/* line 1205, shared/_rebrand.scss */
.icon-Support-Outline:before {
  content: "\e9f3";
}

/* line 1209, shared/_rebrand.scss */
.icon-Switch-OffNo:before {
  content: "\e9f4";
}

/* line 1213, shared/_rebrand.scss */
.icon-Switch-OffYes:before {
  content: "\e9f6";
}

/* line 1217, shared/_rebrand.scss */
.icon-Table-Columns:before {
  content: "\ea00";
}

/* line 1221, shared/_rebrand.scss */
.icon-Table-Pivot-Table:before {
  content: "\ea01";
}

/* line 1225, shared/_rebrand.scss */
.icon-Table-Rows:before {
  content: "\ea02";
}

/* line 1229, shared/_rebrand.scss */
.icon-Table-Table:before {
  content: "\ea03";
}

/* line 1233, shared/_rebrand.scss */
.icon-Tag-FilledNo:before {
  content: "\ea04";
}

/* line 1237, shared/_rebrand.scss */
.icon-Tag-FilledYes:before {
  content: "\ea05";
}

/* line 1241, shared/_rebrand.scss */
.icon-Tag-OutlineNo:before {
  content: "\ea06";
}

/* line 1245, shared/_rebrand.scss */
.icon-Tag-OutlineYes:before {
  content: "\ea07";
}

/* line 1249, shared/_rebrand.scss */
.icon-Target:before {
  content: "\ea08";
}

/* line 1253, shared/_rebrand.scss */
.icon-Text-Indent-Left:before {
  content: "\ea09";
}

/* line 1257, shared/_rebrand.scss */
.icon-Text-Indent-Right:before {
  content: "\ea0a";
}

/* line 1261, shared/_rebrand.scss */
.icon-Text-Justify-Center:before {
  content: "\ea0b";
}

/* line 1265, shared/_rebrand.scss */
.icon-Text-Justify-Left:before {
  content: "\ea0c";
}

/* line 1269, shared/_rebrand.scss */
.icon-Text-Justify-Right:before {
  content: "\ea0d";
}

/* line 1273, shared/_rebrand.scss */
.icon-Text-Filled:before {
  content: "\ea0e";
}

/* line 1277, shared/_rebrand.scss */
.icon-Text-Outline:before {
  content: "\ea0f";
}

/* line 1281, shared/_rebrand.scss */
.icon-Upload-Filled:before {
  content: "\ea10";
}

/* line 1285, shared/_rebrand.scss */
.icon-Upload-Outline:before {
  content: "\ea11";
}

/* line 1289, shared/_rebrand.scss */
.icon-Utilities:before {
  content: "\ea12";
}

/* line 1293, shared/_rebrand.scss */
.icon-Volume-Filled:before {
  content: "\ea13";
}

/* line 1297, shared/_rebrand.scss */
.icon-Volume-Outline:before {
  content: "\ea14";
}

/* line 1301, shared/_rebrand.scss */
.icon-Vote:before {
  content: "\ea15";
}

/* line 1305, shared/_rebrand.scss */
.icon-Weapons:before {
  content: "\ea16";
}

/* line 1309, shared/_rebrand.scss */
.icon-Widget-Outline:before {
  content: "\ea17";
}

/* line 1313, shared/_rebrand.scss */
.icon-Widget-Solid:before {
  content: "\ea18";
}

/* line 1317, shared/_rebrand.scss */
.icon-Word-Filled:before {
  content: "\ea19";
}

/* line 1321, shared/_rebrand.scss */
.icon-Word-Outline:before {
  content: "\ea1a";
}

/* line 1325, shared/_rebrand.scss */
.icon-Workbook-Filled:before {
  content: "\ea1b";
}

/* line 1329, shared/_rebrand.scss */
.icon-Workbook-Outline:before {
  content: "\ea1c";
}

/* line 1333, shared/_rebrand.scss */
.header-icon {
  padding-right: 10px;
  font-size: 20px;
}

@font-face {
  font-family: "Inter";
  src: url('../../fonts/Inter/static/Inter-Regular.ttf') format("truetype");
}
@font-face {
  font-family: 'icomoon';
  /* MI rebrand compiled icons */
  src: url('../../fonts/icomoon.eot');
  /* IE9 Compat Modes */
  src: url('../../fonts/icomoon.eot?#iefix') format("embedded-opentype"), url('../../fonts/icomoon.woff') format("woff"), url('../../fonts/icomoon.ttf') format("truetype"), url('../../fonts/icomoon.svg#mi_rebrand-icons') format("svg");
  /* Legacy iOS */
}
/* line 166, shared/_rebrand.scss */
.icon-Add-Circle-Filled, .icon-Add-Circle-Outline, .icon-Add, .icon-Alarm, .icon-Alerts-Alert-ClockFilled,
.icon-Alerts-Alert-ClockOutline, .icon-Alerts-InfoFilled, .icon-Alerts-InfoOutline, .icon-Alerts-NotificationFilled,
.icon-Alerts-NotificationOutline, .icon-Alerts-Null-AlertFilled, .icon-Alerts-Null-AlertOutline,
.icon-Alerts-WarningFilled, .icon-Alerts-WarningOutline, .icon-Analysis, .icon-Analyze-Filled, .icon-Analyze-Outline,
.icon-Attractiveness-Score, .icon-Bad, .icon-Bar-Chart, .icon-Blank-FIlled, .icon-Blank-Outline, .icon-Bookmark-Filled,
.icon-Bookmark-Outline, .icon-Browser-Chrome, .icon-Browser-Edge, .icon-Browser-Firefox, .icon-Calculator-Filled,
.icon-Calculator-Outline, .icon-Calendar-Filled, .icon-Calendar-Outline, .icon-Call, .icon-Caution, .icon-Chat-Filled,
.icon-Chat-Outline, .icon-Checkbox-Indeterminate-FilledNo, .icon-Checkbox-Indeterminate-FilledYes,
.icon-Checkbox-IndeterminateNo, .icon-Checkbox-IndeterminateYes, .icon-Checkbox-Selected-FilledNo,
.icon-Checkbox-Selected-FilledYes, .icon-Checkbox-SelectedNo, .icon-Checkbox-SelectedYes,
.icon-Checkbox-Unselected-FilledNo, .icon-Checkbox-Unselected-FilledYes, .icon-Checkbox-UnselectedNo,
.icon-Checkbox-UnselectedYes, .icon-Checkmark, .icon-Circle-Arrows-DownFilled, .icon-Circle-Arrows-DownOutline,
.icon-Circle-Arrows-LeftFilled, .icon-Circle-Arrows-LeftOutline, .icon-Circle-Arrows-RightFilled,
.icon-Circle-Arrows-RightOutline, .icon-Circle-Arrows-UpFilled, .icon-Circle-Arrows-UpOutline, .icon-Clone,
.icon-Close-Circle-Filled, .icon-Close-Circle-Outline, .icon-Close, .icon-Code, .icon-Communication-Services,
.icon-Company, .icon-Compressed-Filled, .icon-Compressed-Outline, .icon-Convert, .icon-Corruption,
.icon-Currency-Dollar, .icon-Currency-Euro, .icon-Currency-Generic-Currency, .icon-Currency-Pound,
.icon-Cursors-Hand-Click, .icon-Cursors-Hand-Grab, .icon-Cursors-Hand-Hover, .icon-Cursors-Pointer,
.icon-Cyber-Risk-Filled, .icon-Cyber-Risk-Outline, .icon-Dashboard-Filled, .icon-Dashboard-Outline, .icon-Database,
.icon-Device-Desktop, .icon-Device-Laptop, .icon-Device-Phone, .icon-Device-Tablet, .icon-Dots-Horizontal,
.icon-Dots-Vertical, .icon-Double-Arrow-Down, .icon-Double-Arrow-Left, .icon-Double-Arrow-Right, .icon-Double-Arrow-Up,
.icon-Download-Filled, .icon-Download-Outline, .icon-Edit-Bold, .icon-Edit-Filled, .icon-Edit-Italic,
.icon-Edit-Outline, .icon-Edit-Redo-Alt, .icon-Edit-Redo, .icon-Edit-Refresh, .icon-Edit-Strikethrough,
.icon-Edit-Text-Color, .icon-Edit-Underline, .icon-Edit-Undo, .icon-Energy, .icon-Envelope-Closed-FilledClosed,
.icon-Envelope-Closed-FilledOpen, .icon-Envelope-Closed-OutlineClosed, .icon-Envelope-Closed-OutlineOpen,
.icon-Environment, .icon-ESG, .icon-Excel-FIlled, .icon-Excel-Outline, .icon-External-Link, .icon-Eye-Eye-Blocked,
.icon-Eye-Eye, .icon-Filter, .icon-Financials-Filled, .icon-Financials-Outline, .icon-Flag-Filled,
.icon-Flag-Outline, .icon-Folder-Filled, .icon-Folder-Outline, .icon-Formspring, .icon-Globe, .icon-Good,
.icon-Governance, .icon-Grip-Grip-Alt, .icon-Grip-Grip, .icon-Group-Filled-copy, .icon-Group-Filled,
.icon-Group-Outline-copy, .icon-Group-Outline, .icon-Hamburger, .icon-Healthcare-Filled, .icon-Healthcare-Outline,
.icon-Help-Filled, .icon-Help-Outline, .icon-History, .icon-Home-Filled, .icon-Home-Outline, .icon-Human-Rights,
.icon-II-Wisdom, .icon-Industrials, .icon-ISS-Trimond, .icon-Key, .icon-Labor, .icon-Library-Filled,
.icon-Library-Outline, .icon-Line-Arrow-Down, .icon-Line-Arrow-Left, .icon-Line-Arrow-Right, .icon-Line-Arrow-Up,
.icon-Link, .icon-List-Bullet, .icon-List-Numerical, .icon-Location-Filled, .icon-Location-Outline, .icon-Lock-Locked,
.icon-Lock-Unlocked, .icon-Multimenu, .icon-Negative, .icon-No-Value, .icon-Note-Filled, .icon-Note-Outline, .icon-Null,
.icon-Null1, .icon-Outline-Arrow-Down, .icon-Outline-Arrow-Left, .icon-Outline-Arrow-Right, .icon-Outline-Arrow-Up,
.icon-PDF-Filled, .icon-PDF-Outline, .icon-Person-Filled, .icon-Person-Outline, .icon-Pie-Chart-Filled,
.icon-Pie-Chart-Outliine, .icon-Pin-Filled, .icon-Pin-Outline, .icon-Play-FilledCircle, .icon-Play-FilledNo-Circle,
.icon-Play-OutlineCircle, .icon-Play-OutlineNo-Circle, .icon-Podcast, .icon-Positive, .icon-Power,
.icon-Powerpoint-Filled, .icon-Powerpoint-Outline, .icon-Printer-Filled, .icon-Printer-Outline,
.icon-Radio-Button-SelectedNo, .icon-Radio-Button-SelectedYes, .icon-Radio-Button-UnselectedNo,
.icon-Radio-Button-UnselectedYes, .icon-Real-Estate-Filled, .icon-Real-Estate-Outline, .icon-Remove-Circle-Filled,
.icon-Remove-Circle-Outline, .icon-Remove, .icon-Report-Gallery-Filled, .icon-Report-Gallery-Outline,
.icon-Research-Filled-copy, .icon-Research-Filled, .icon-Research-Outline-copy, .icon-Research-Outline,
.icon-Screen-Fullscreen-Exit, .icon-Screen-Fullscreen-Alt, .icon-Screen-Fullscreen, .icon-Search,
.icon-Settings-Filled, .icon-Settings-Outline, .icon-Shapes-Box-Rounded, .icon-Shapes-Circle, .icon-Share,
.icon-Shopping-Bag-Filled, .icon-Shopping-Bag-Outline, .icon-Shopping-Cart-Filled, .icon-Shopping-Cart-Outline,
.icon-Significantly-Negative, .icon-Significantly-Postitive, .icon-Slider, .icon-Social, .icon-Solid-Arrow-Down,
.icon-Solid-Arrow-Left, .icon-Solid-Arrow-Right, .icon-Solid-Arrow-Up, .icon-Sorting-Alphabetical-Ascending,
.icon-Sorting-Alphabetical-Descending, .icon-Sorting-Ascending, .icon-Sorting-Descending,
.icon-Sorting-Numeric-Ascending, .icon-Sorting-Numeric-Descending, .icon-Speedometer, .icon-Spinner, .icon-Star-Filled,
.icon-Star-Outline, .icon-Summary-Filled, .icon-Summary-Outline, .icon-Support-Filled, .icon-Support-Outline,
.icon-Switch-OffNo, .icon-Switch-OffYes, .icon-Table-Columns, .icon-Table-Pivot-Table, .icon-Table-Rows,
.icon-Table-Table, .icon-Tag-FilledNo, .icon-Tag-FilledYes, .icon-Tag-OutlineNo, .icon-Tag-OutlineYes, .icon-Target,
.icon-Text-Indent-Left, .icon-Text-Indent-Right, .icon-Text-Justify-Center, .icon-Text-Justify-Left,
.icon-Text-Justify-Right, .icon-Text-Filled, .icon-Text-Outline, .icon-Upload-Filled, .icon-Upload-Outline,
.icon-Utilities, .icon-Volume-Filled, .icon-Volume-Outline, .icon-Vote, .icon-Weapons, .icon-Widget-Outline,
.icon-Widget-Solid, .icon-Word-Filled, .icon-Word-Outline, .icon-Workbook-Filled, .icon-Workbook-Outline,
.icon-Envelope-Closed-FilledClosed2, .icon-Envelope-Closed-FilledOpen2, .icon-Envelope-Closed-OutlineClosed2 {
  font-family: 'icomoon';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}

/* line 236, shared/_rebrand.scss */
.icon-Add-Circle-Filled:before {
  content: "\e900";
}

/* line 239, shared/_rebrand.scss */
.icon-Add-Circle-Outline:before {
  content: "\e901";
}

/* line 243, shared/_rebrand.scss */
.icon-Add:before {
  content: "\e902";
}

/* line 247, shared/_rebrand.scss */
.icon-Alarm:before {
  content: "\e903";
}

/* line 251, shared/_rebrand.scss */
.icon-Alerts-Alert-ClockFilled:before {
  content: "\e904";
}

/* line 255, shared/_rebrand.scss */
.icon-Alerts-Alert-ClockOutline:before {
  content: "\e905";
}

/* line 259, shared/_rebrand.scss */
.icon-Alerts-InfoFilled:before {
  content: "\e906";
}

/* line 263, shared/_rebrand.scss */
.icon-Alerts-InfoOutline:before {
  content: "\e907";
}

/* line 267, shared/_rebrand.scss */
.icon-Alerts-NotificationFilled:before {
  content: "\e908";
}

/* line 271, shared/_rebrand.scss */
.icon-Alerts-NotificationOutline:before {
  content: "\e909";
}

/* line 275, shared/_rebrand.scss */
.icon-Alerts-Null-AlertFilled:before {
  content: "\e90a";
}

/* line 279, shared/_rebrand.scss */
.icon-Alerts-Null-AlertOutline:before {
  content: "\e90b";
}

/* line 283, shared/_rebrand.scss */
.icon-Alerts-WarningFilled:before {
  content: "\e90c";
}

/* line 287, shared/_rebrand.scss */
.icon-Alerts-WarningOutline:before {
  content: "\e90d";
}

/* line 291, shared/_rebrand.scss */
.icon-Analysis:before {
  content: "\e90e";
}

/* line 295, shared/_rebrand.scss */
.icon-Analyze-Filled:before {
  content: "\e90f";
}

/* line 299, shared/_rebrand.scss */
.icon-Analyze-Outline:before {
  content: "\e910";
}

/* line 303, shared/_rebrand.scss */
.icon-Attractiveness-Score:before {
  content: "\e911";
}

/* line 307, shared/_rebrand.scss */
.icon-Bad:before {
  content: "\e912";
}

/* line 311, shared/_rebrand.scss */
.icon-Bar-Chart:before {
  content: "\e913";
}

/* line 315, shared/_rebrand.scss */
.icon-Blank-FIlled:before {
  content: "\e914";
}

/* line 319, shared/_rebrand.scss */
.icon-Blank-Outline:before {
  content: "\e915";
}

/* line 323, shared/_rebrand.scss */
.icon-Bookmark-Filled:before {
  content: "\e916";
}

/* line 327, shared/_rebrand.scss */
.icon-Bookmark-Outline:before {
  content: "\e917";
}

/* line 331, shared/_rebrand.scss */
.icon-Browser-Chrome:before {
  content: "\e918";
}

/* line 335, shared/_rebrand.scss */
.icon-Browser-Edge:before {
  content: "\e919";
}

/* line 339, shared/_rebrand.scss */
.icon-Browser-Firefox:before {
  content: "\e91a";
}

/* line 343, shared/_rebrand.scss */
.icon-Calculator-Filled:before {
  content: "\e91b";
}

/* line 347, shared/_rebrand.scss */
.icon-Calculator-Outline:before {
  content: "\e91c";
}

/* line 351, shared/_rebrand.scss */
.icon-Calendar-Filled:before {
  content: "\e91d";
}

/* line 355, shared/_rebrand.scss */
.icon-Calendar-Outline:before {
  content: "\e91e";
}

/* line 359, shared/_rebrand.scss */
.icon-Call:before {
  content: "\e91f";
}

/* line 363, shared/_rebrand.scss */
.icon-Caution:before {
  content: "\e920";
}

/* line 367, shared/_rebrand.scss */
.icon-Chat-Filled:before {
  content: "\e921";
}

/* line 371, shared/_rebrand.scss */
.icon-Chat-Outline:before {
  content: "\e922";
}

/* line 375, shared/_rebrand.scss */
.icon-Checkbox-Indeterminate-FilledNo:before {
  content: "\e923";
}

/* line 379, shared/_rebrand.scss */
.icon-Checkbox-Indeterminate-FilledYes:before {
  content: "\e924";
}

/* line 383, shared/_rebrand.scss */
.icon-Checkbox-IndeterminateNo:before {
  content: "\e925";
}

/* line 387, shared/_rebrand.scss */
.icon-Checkbox-IndeterminateYes:before {
  content: "\e926";
}

/* line 391, shared/_rebrand.scss */
.icon-Checkbox-Selected-FilledNo:before {
  content: "\e927";
}

/* line 395, shared/_rebrand.scss */
.icon-Checkbox-Selected-FilledYes:before {
  content: "\e928";
}

/* line 399, shared/_rebrand.scss */
.icon-Checkbox-SelectedNo:before {
  content: "\e929";
}

/* line 403, shared/_rebrand.scss */
.icon-Checkbox-SelectedYes:before {
  content: "\e92a";
}

/* line 407, shared/_rebrand.scss */
.icon-Checkbox-Unselected-FilledNo:before {
  content: "\e92b";
}

/* line 411, shared/_rebrand.scss */
.icon-Checkbox-Unselected-FilledYes:before {
  content: "\e92d";
}

/* line 415, shared/_rebrand.scss */
.icon-Checkbox-UnselectedNo:before {
  content: "\e92f";
}

/* line 419, shared/_rebrand.scss */
.icon-Checkbox-UnselectedYes:before {
  content: "\e930";
}

/* line 423, shared/_rebrand.scss */
.icon-Checkmark:before {
  content: "\e931";
}

/* line 427, shared/_rebrand.scss */
.icon-Circle-Arrows-DownFilled:before {
  content: "\e932";
}

/* line 431, shared/_rebrand.scss */
.icon-Circle-Arrows-DownOutline:before {
  content: "\e933";
}

/* line 435, shared/_rebrand.scss */
.icon-Circle-Arrows-LeftFilled:before {
  content: "\e934";
}

/* line 439, shared/_rebrand.scss */
.icon-Circle-Arrows-LeftOutline:before {
  content: "\e935";
}

/* line 443, shared/_rebrand.scss */
.icon-Circle-Arrows-RightFilled:before {
  content: "\e936";
}

/* line 447, shared/_rebrand.scss */
.icon-Circle-Arrows-RightOutline:before {
  content: "\e937";
}

/* line 451, shared/_rebrand.scss */
.icon-Circle-Arrows-UpFilled:before {
  content: "\e938";
}

/* line 455, shared/_rebrand.scss */
.icon-Circle-Arrows-UpOutline:before {
  content: "\e939";
}

/* line 459, shared/_rebrand.scss */
.icon-Clone:before {
  content: "\e93a";
}

/* line 463, shared/_rebrand.scss */
.icon-Close-Circle-Filled:before {
  content: "\e93b";
}

/* line 467, shared/_rebrand.scss */
.icon-Close-Circle-Outline:before {
  content: "\e93c";
}

/* line 471, shared/_rebrand.scss */
.icon-Close:before {
  content: "\e93d";
}

/* line 475, shared/_rebrand.scss */
.icon-Code:before {
  content: "\e93e";
}

/* line 479, shared/_rebrand.scss */
.icon-Communication-Services:before {
  content: "\e93f";
}

/* line 483, shared/_rebrand.scss */
.icon-Company:before {
  content: "\e940";
}

/* line 487, shared/_rebrand.scss */
.icon-Compressed-Filled:before {
  content: "\e941";
}

/* line 491, shared/_rebrand.scss */
.icon-Compressed-Outline:before {
  content: "\e942";
}

/* line 495, shared/_rebrand.scss */
.icon-Convert:before {
  content: "\e943";
}

/* line 499, shared/_rebrand.scss */
.icon-Corruption:before {
  content: "\e944";
}

/* line 503, shared/_rebrand.scss */
.icon-Currency-Dollar:before {
  content: "\e945";
}

/* line 507, shared/_rebrand.scss */
.icon-Currency-Euro:before {
  content: "\e946";
}

/* line 511, shared/_rebrand.scss */
.icon-Currency-Generic-Currency:before {
  content: "\e947";
}

/* line 515, shared/_rebrand.scss */
.icon-Currency-Pound:before {
  content: "\e948";
}

/* line 519, shared/_rebrand.scss */
.icon-Cursors-Hand-Click:before {
  content: "\e949";
}

/* line 523, shared/_rebrand.scss */
.icon-Cursors-Hand-Grab:before {
  content: "\e94b";
}

/* line 527, shared/_rebrand.scss */
.icon-Cursors-Hand-Hover:before {
  content: "\e94c";
}

/* line 531, shared/_rebrand.scss */
.icon-Cursors-Pointer:before {
  content: "\e94d";
}

/* line 535, shared/_rebrand.scss */
.icon-Cyber-Risk-Filled:before {
  content: "\e950";
}

/* line 539, shared/_rebrand.scss */
.icon-Cyber-Risk-Outline:before {
  content: "\e951";
}

/* line 543, shared/_rebrand.scss */
.icon-Dashboard-Filled:before {
  content: "\e952";
}

/* line 547, shared/_rebrand.scss */
.icon-Dashboard-Outline:before {
  content: "\e953";
}

/* line 551, shared/_rebrand.scss */
.icon-Database:before {
  content: "\e954";
}

/* line 555, shared/_rebrand.scss */
.icon-Device-Desktop:before {
  content: "\e955";
}

/* line 559, shared/_rebrand.scss */
.icon-Device-Laptop:before {
  content: "\e956";
}

/* line 563, shared/_rebrand.scss */
.icon-Device-Phone:before {
  content: "\e957";
}

/* line 567, shared/_rebrand.scss */
.icon-Device-Tablet:before {
  content: "\e958";
}

/* line 571, shared/_rebrand.scss */
.icon-Dots-Horizontal:before {
  content: "\e959";
}

/* line 575, shared/_rebrand.scss */
.icon-Dots-Vertical:before {
  content: "\e95a";
}

/* line 579, shared/_rebrand.scss */
.icon-Double-Arrow-Down:before {
  content: "\e95b";
}

/* line 583, shared/_rebrand.scss */
.icon-Double-Arrow-Left:before {
  content: "\e95c";
}

/* line 587, shared/_rebrand.scss */
.icon-Double-Arrow-Right:before {
  content: "\e95d";
}

/* line 591, shared/_rebrand.scss */
.icon-Double-Arrow-Up:before {
  content: "\e95e";
}

/* line 595, shared/_rebrand.scss */
.icon-Download-Filled:before {
  content: "\e95f";
}

/* line 599, shared/_rebrand.scss */
.icon-Download-Outline:before {
  content: "\e960";
}

/* line 603, shared/_rebrand.scss */
.icon-Edit-Bold:before {
  content: "\e961";
}

/* line 607, shared/_rebrand.scss */
.icon-Edit-Filled:before {
  content: "\e962";
}

/* line 611, shared/_rebrand.scss */
.icon-Edit-Italic:before {
  content: "\e963";
}

/* line 615, shared/_rebrand.scss */
.icon-Edit-Outline:before {
  content: "\e964";
}

/* line 619, shared/_rebrand.scss */
.icon-Edit-Redo-Alt:before {
  content: "\e965";
}

/* line 623, shared/_rebrand.scss */
.icon-Edit-Redo:before {
  content: "\e966";
}

/* line 627, shared/_rebrand.scss */
.icon-Edit-Refresh:before {
  content: "\e967";
}

/* line 631, shared/_rebrand.scss */
.icon-Edit-Strikethrough:before {
  content: "\e968";
}

/* line 635, shared/_rebrand.scss */
.icon-Edit-Text-Color:before {
  content: "\e969";
}

/* line 639, shared/_rebrand.scss */
.icon-Edit-Underline:before {
  content: "\e96a";
}

/* line 643, shared/_rebrand.scss */
.icon-Edit-Undo:before {
  content: "\e96b";
}

/* line 647, shared/_rebrand.scss */
.icon-Energy:before {
  content: "\e96c";
}

/* line 651, shared/_rebrand.scss */
.icon-Envelope-Closed-FilledClosed:before {
  color: #FAFAFA;
  content: "\e96d";
}

/* line 656, shared/_rebrand.scss */
.icon-Envelope-Closed-FilledOpen:before {
  color: #FAFAFA;
  content: "\e96e";
}

/* line 661, shared/_rebrand.scss */
.icon-Envelope-Closed-OutlineClosed:before {
  color: #FAFAFA;
  content: "\e96f";
}

/* line 666, shared/_rebrand.scss */
.icon-Envelope-Closed-FilledClosed2:before {
  content: "\e96d";
}

/* line 670, shared/_rebrand.scss */
.icon-Envelope-Closed-FilledOpen2:before {
  content: "\e96e";
}

/* line 674, shared/_rebrand.scss */
.icon-Envelope-Closed-OutlineClosed2:before {
  content: "\e96f";
}

/* line 678, shared/_rebrand.scss */
.icon-Envelope-Closed-OutlineOpen:before {
  content: "\e970";
}

/* line 683, shared/_rebrand.scss */
.icon-Environment:before {
  content: "\e971";
}

/* line 687, shared/_rebrand.scss */
.icon-ESG:before {
  content: "\e972";
}

/* line 691, shared/_rebrand.scss */
.icon-Excel-FIlled:before {
  content: "\e973";
}

/* line 695, shared/_rebrand.scss */
.icon-Excel-Outline:before {
  content: "\e974";
}

/* line 699, shared/_rebrand.scss */
.icon-External-Link:before {
  content: "\e975";
}

/* line 703, shared/_rebrand.scss */
.icon-Eye-Eye-Blocked:before {
  content: "\e976";
}

/* line 707, shared/_rebrand.scss */
.icon-Eye-Eye:before {
  content: "\e977";
}

/* line 711, shared/_rebrand.scss */
.icon-Filter:before {
  content: "\e978";
}

/* line 715, shared/_rebrand.scss */
.icon-Financials-Filled:before {
  content: "\e979";
}

/* line 719, shared/_rebrand.scss */
.icon-Financials-Outline:before {
  content: "\e97a";
}

/* line 723, shared/_rebrand.scss */
.icon-Flag-Filled:before {
  content: "\e97b";
}

/* line 727, shared/_rebrand.scss */
.icon-Flag-Outline:before {
  content: "\e97c";
}

/* line 731, shared/_rebrand.scss */
.icon-Folder-Filled:before {
  content: "\e97d";
}

/* line 735, shared/_rebrand.scss */
.icon-Folder-Outline:before {
  content: "\e97e";
}

/* line 739, shared/_rebrand.scss */
.icon-Formspring:before {
  content: "\e97f";
}

/* line 743, shared/_rebrand.scss */
.icon-Globe:before {
  content: "\e980";
}

/* line 747, shared/_rebrand.scss */
.icon-Good:before {
  content: "\e981";
}

/* line 751, shared/_rebrand.scss */
.icon-Governance:before {
  content: "\e982";
}

/* line 755, shared/_rebrand.scss */
.icon-Grip-Grip-Alt:before {
  content: "\e983";
}

/* line 759, shared/_rebrand.scss */
.icon-Grip-Grip:before {
  content: "\e984";
}

/* line 763, shared/_rebrand.scss */
.icon-Group-Filled-copy:before {
  content: "\e985";
}

/* line 767, shared/_rebrand.scss */
.icon-Group-Filled:before {
  content: "\e986";
}

/* line 771, shared/_rebrand.scss */
.icon-Group-Outline-copy:before {
  content: "\e987";
}

/* line 775, shared/_rebrand.scss */
.icon-Group-Outline:before {
  content: "\e988";
}

/* line 779, shared/_rebrand.scss */
.icon-Hamburger:before {
  content: "\e989";
}

/* line 783, shared/_rebrand.scss */
.icon-Healthcare-Filled:before {
  content: "\e98a";
}

/* line 787, shared/_rebrand.scss */
.icon-Healthcare-Outline:before {
  content: "\e98b";
}

/* line 791, shared/_rebrand.scss */
.icon-Help-Filled:before {
  content: "\e98c";
}

/* line 795, shared/_rebrand.scss */
.icon-Help-Outline:before {
  content: "\e98d";
}

/* line 799, shared/_rebrand.scss */
.icon-History:before {
  content: "\e98e";
}

/* line 803, shared/_rebrand.scss */
.icon-Home-Filled:before {
  content: "\e98f";
}

/* line 807, shared/_rebrand.scss */
.icon-Home-Outline:before {
  content: "\e990";
}

/* line 811, shared/_rebrand.scss */
.icon-Human-Rights:before {
  content: "\e991";
}

/* line 815, shared/_rebrand.scss */
.icon-II-Wisdom:before {
  content: "\e992";
}

/* line 819, shared/_rebrand.scss */
.icon-Industrials:before {
  content: "\e993";
}

/* line 823, shared/_rebrand.scss */
.icon-ISS-Trimond:before {
  content: "\e994";
}

/* line 827, shared/_rebrand.scss */
.icon-Key:before {
  content: "\e995";
}

/* line 831, shared/_rebrand.scss */
.icon-Labor:before {
  content: "\e996";
}

/* line 835, shared/_rebrand.scss */
.icon-Library-Filled:before {
  content: "\e997";
}

/* line 839, shared/_rebrand.scss */
.icon-Library-Outline:before {
  content: "\e998";
}

/* line 843, shared/_rebrand.scss */
.icon-Line-Arrow-Down:before {
  content: "\e999";
}

/* line 847, shared/_rebrand.scss */
.icon-Line-Arrow-Left:before {
  content: "\e99a";
}

/* line 851, shared/_rebrand.scss */
.icon-Line-Arrow-Right:before {
  content: "\e99b";
}

/* line 855, shared/_rebrand.scss */
.icon-Line-Arrow-Up:before {
  content: "\e99c";
}

/* line 859, shared/_rebrand.scss */
.icon-Link:before {
  content: "\e99d";
}

/* line 863, shared/_rebrand.scss */
.icon-List-Bullet:before {
  content: "\e99e";
}

/* line 867, shared/_rebrand.scss */
.icon-List-Numerical:before {
  content: "\e99f";
}

/* line 871, shared/_rebrand.scss */
.icon-Location-Filled:before {
  content: "\e9a0";
}

/* line 875, shared/_rebrand.scss */
.icon-Location-Outline:before {
  content: "\e9a1";
}

/* line 879, shared/_rebrand.scss */
.icon-Lock-Locked:before {
  content: "\e9a2";
}

/* line 883, shared/_rebrand.scss */
.icon-Lock-Unlocked:before {
  content: "\e9a3";
}

/* line 887, shared/_rebrand.scss */
.icon-Multimenu:before {
  content: "\e9a4";
}

/* line 891, shared/_rebrand.scss */
.icon-Negative:before {
  content: "\e9a5";
}

/* line 895, shared/_rebrand.scss */
.icon-No-Value:before {
  content: "\e9a6";
}

/* line 899, shared/_rebrand.scss */
.icon-Note-Filled:before {
  content: "\e9a7";
}

/* line 903, shared/_rebrand.scss */
.icon-Note-Outline:before {
  content: "\e9a8";
}

/* line 907, shared/_rebrand.scss */
.icon-Null:before {
  content: "\e9a9";
}

/* line 911, shared/_rebrand.scss */
.icon-Null1:before {
  content: "\e9aa";
}

/* line 915, shared/_rebrand.scss */
.icon-Outline-Arrow-Down:before {
  content: "\e9ab";
}

/* line 919, shared/_rebrand.scss */
.icon-Outline-Arrow-Left:before {
  content: "\e9ac";
}

/* line 923, shared/_rebrand.scss */
.icon-Outline-Arrow-Right:before {
  content: "\e9ad";
}

/* line 927, shared/_rebrand.scss */
.icon-Outline-Arrow-Up:before {
  content: "\e9ae";
}

/* line 931, shared/_rebrand.scss */
.icon-PDF-Filled:before {
  content: "\e9af";
}

/* line 935, shared/_rebrand.scss */
.icon-PDF-Outline:before {
  content: "\e9b0";
}

/* line 939, shared/_rebrand.scss */
.icon-Person-Filled:before {
  content: "\e9b1";
}

/* line 943, shared/_rebrand.scss */
.icon-Person-Outline:before {
  content: "\e9b2";
}

/* line 947, shared/_rebrand.scss */
.icon-Pie-Chart-Filled:before {
  content: "\e9b3";
}

/* line 951, shared/_rebrand.scss */
.icon-Pie-Chart-Outliine:before {
  content: "\e9b4";
}

/* line 955, shared/_rebrand.scss */
.icon-Pin-Filled:before {
  content: "\e9b5";
}

/* line 959, shared/_rebrand.scss */
.icon-Pin-Outline:before {
  content: "\e9b6";
}

/* line 963, shared/_rebrand.scss */
.icon-Play-FilledCircle:before {
  content: "\e9b7";
}

/* line 967, shared/_rebrand.scss */
.icon-Play-FilledNo-Circle:before {
  content: "\e9b8";
}

/* line 971, shared/_rebrand.scss */
.icon-Play-OutlineCircle:before {
  content: "\e9b9";
}

/* line 975, shared/_rebrand.scss */
.icon-Play-OutlineNo-Circle:before {
  content: "\e9ba";
}

/* line 979, shared/_rebrand.scss */
.icon-Podcast:before {
  content: "\e9bb";
}

/* line 983, shared/_rebrand.scss */
.icon-Positive:before {
  content: "\e9bc";
}

/* line 987, shared/_rebrand.scss */
.icon-Power:before {
  content: "\e9bd";
}

/* line 991, shared/_rebrand.scss */
.icon-Powerpoint-Filled:before {
  content: "\e9be";
}

/* line 995, shared/_rebrand.scss */
.icon-Powerpoint-Outline:before {
  content: "\e9bf";
}

/* line 999, shared/_rebrand.scss */
.icon-Printer-Filled:before {
  content: "\e9c0";
}

/* line 1003, shared/_rebrand.scss */
.icon-Printer-Outline:before {
  color: #FAFAFA;
  content: "\e9c1";
}

/* line 1008, shared/_rebrand.scss */
.icon-Radio-Button-SelectedNo:before {
  content: "\e9c2";
}

/* line 1012, shared/_rebrand.scss */
.icon-Radio-Button-SelectedYes:before {
  content: "\e9c3";
}

/* line 1016, shared/_rebrand.scss */
.icon-Radio-Button-UnselectedNo:before {
  content: "\e9c4";
}

/* line 1020, shared/_rebrand.scss */
.icon-Radio-Button-UnselectedYes:before {
  content: "\e9c5";
}

/* line 1024, shared/_rebrand.scss */
.icon-Real-Estate-Filled:before {
  content: "\e9c6";
}

/* line 1028, shared/_rebrand.scss */
.icon-Real-Estate-Outline:before {
  content: "\e9c7";
}

/* line 1032, shared/_rebrand.scss */
.icon-Remove-Circle-Filled:before {
  content: "\e9c8";
}

/* line 1036, shared/_rebrand.scss */
.icon-Remove-Circle-Outline:before {
  content: "\e9c9";
}

/* line 1040, shared/_rebrand.scss */
.icon-Remove:before {
  content: "\e9ca";
}

/* line 1044, shared/_rebrand.scss */
.icon-Report-Gallery-Filled:before {
  content: "\e9cb";
}

/* line 1048, shared/_rebrand.scss */
.icon-Report-Gallery-Outline:before {
  content: "\e9cc";
}

/* line 1052, shared/_rebrand.scss */
.icon-Research-Filled-copy:before {
  content: "\e9cd";
}

/* line 1056, shared/_rebrand.scss */
.icon-Research-Filled:before {
  content: "\e9ce";
}

/* line 1060, shared/_rebrand.scss */
.icon-Research-Outline-copy:before {
  content: "\e9cf";
}

/* line 1064, shared/_rebrand.scss */
.icon-Research-Outline:before {
  content: "\e9d0";
}

/* line 1068, shared/_rebrand.scss */
.icon-Screen-Fullscreen-Exit:before {
  content: "\e9d1";
}

/* line 1072, shared/_rebrand.scss */
.icon-Screen-Fullscreen-Alt:before {
  content: "\e9d2";
}

/* line 1076, shared/_rebrand.scss */
.icon-Screen-Fullscreen:before {
  content: "\e9d3";
}

/* line 1080, shared/_rebrand.scss */
.icon-Search:before {
  content: "\e9d4";
}

/* line 1084, shared/_rebrand.scss */
.icon-Settings-Filled:before {
  content: "\e9d5";
}

/* line 1088, shared/_rebrand.scss */
.icon-Settings-Outline:before {
  content: "\e9d6";
}

/* line 1092, shared/_rebrand.scss */
.icon-Shapes-Box-Rounded:before {
  content: "\e9d7";
}

/* line 1096, shared/_rebrand.scss */
.icon-Shapes-Circle:before {
  content: "\e9d8";
}

/* line 1100, shared/_rebrand.scss */
.icon-Share:before {
  color: #FAFAFA;
  content: "\e9d9";
}

/* line 1105, shared/_rebrand.scss */
.icon-Shopping-Bag-Filled:before {
  content: "\e9da";
}

/* line 1109, shared/_rebrand.scss */
.icon-Shopping-Bag-Outline:before {
  content: "\e9db";
}

/* line 1113, shared/_rebrand.scss */
.icon-Shopping-Cart-Filled:before {
  content: "\e9dc";
}

/* line 1117, shared/_rebrand.scss */
.icon-Shopping-Cart-Outline:before {
  content: "\e9dd";
}

/* line 1121, shared/_rebrand.scss */
.icon-Significantly-Negative:before {
  content: "\e9de";
}

/* line 1125, shared/_rebrand.scss */
.icon-Significantly-Postitive:before {
  content: "\e9df";
}

/* line 1129, shared/_rebrand.scss */
.icon-Slider:before {
  content: "\e9e0";
}

/* line 1133, shared/_rebrand.scss */
.icon-Social:before {
  content: "\e9e1";
}

/* line 1137, shared/_rebrand.scss */
.icon-Solid-Arrow-Down:before {
  content: "\e9e2";
}

/* line 1141, shared/_rebrand.scss */
.icon-Solid-Arrow-Left:before {
  content: "\e9e3";
}

/* line 1145, shared/_rebrand.scss */
.icon-Solid-Arrow-Right:before {
  content: "\e9e4";
}

/* line 1149, shared/_rebrand.scss */
.icon-Solid-Arrow-Up:before {
  content: "\e9e5";
}

/* line 1153, shared/_rebrand.scss */
.icon-Sorting-Alphabetical-Ascending:before {
  content: "\e9e6";
}

/* line 1157, shared/_rebrand.scss */
.icon-Sorting-Alphabetical-Descending:before {
  content: "\e9e7";
}

/* line 1161, shared/_rebrand.scss */
.icon-Sorting-Ascending:before {
  content: "\e9e8";
}

/* line 1165, shared/_rebrand.scss */
.icon-Sorting-Descending:before {
  content: "\e9e9";
}

/* line 1169, shared/_rebrand.scss */
.icon-Sorting-Numeric-Ascending:before {
  content: "\e9ea";
}

/* line 1173, shared/_rebrand.scss */
.icon-Sorting-Numeric-Descending:before {
  content: "\e9eb";
}

/* line 1177, shared/_rebrand.scss */
.icon-Speedometer:before {
  content: "\e9ec";
}

/* line 1181, shared/_rebrand.scss */
.icon-Spinner:before {
  content: "\e9ed";
}

/* line 1185, shared/_rebrand.scss */
.icon-Star-Filled:before {
  content: "\e9ee";
}

/* line 1189, shared/_rebrand.scss */
.icon-Star-Outline:before {
  content: "\e9ef";
}

/* line 1193, shared/_rebrand.scss */
.icon-Summary-Filled:before {
  content: "\e9f0";
}

/* line 1197, shared/_rebrand.scss */
.icon-Summary-Outline:before {
  content: "\e9f1";
}

/* line 1201, shared/_rebrand.scss */
.icon-Support-Filled:before {
  content: "\e9f2";
}

/* line 1205, shared/_rebrand.scss */
.icon-Support-Outline:before {
  content: "\e9f3";
}

/* line 1209, shared/_rebrand.scss */
.icon-Switch-OffNo:before {
  content: "\e9f4";
}

/* line 1213, shared/_rebrand.scss */
.icon-Switch-OffYes:before {
  content: "\e9f6";
}

/* line 1217, shared/_rebrand.scss */
.icon-Table-Columns:before {
  content: "\ea00";
}

/* line 1221, shared/_rebrand.scss */
.icon-Table-Pivot-Table:before {
  content: "\ea01";
}

/* line 1225, shared/_rebrand.scss */
.icon-Table-Rows:before {
  content: "\ea02";
}

/* line 1229, shared/_rebrand.scss */
.icon-Table-Table:before {
  content: "\ea03";
}

/* line 1233, shared/_rebrand.scss */
.icon-Tag-FilledNo:before {
  content: "\ea04";
}

/* line 1237, shared/_rebrand.scss */
.icon-Tag-FilledYes:before {
  content: "\ea05";
}

/* line 1241, shared/_rebrand.scss */
.icon-Tag-OutlineNo:before {
  content: "\ea06";
}

/* line 1245, shared/_rebrand.scss */
.icon-Tag-OutlineYes:before {
  content: "\ea07";
}

/* line 1249, shared/_rebrand.scss */
.icon-Target:before {
  content: "\ea08";
}

/* line 1253, shared/_rebrand.scss */
.icon-Text-Indent-Left:before {
  content: "\ea09";
}

/* line 1257, shared/_rebrand.scss */
.icon-Text-Indent-Right:before {
  content: "\ea0a";
}

/* line 1261, shared/_rebrand.scss */
.icon-Text-Justify-Center:before {
  content: "\ea0b";
}

/* line 1265, shared/_rebrand.scss */
.icon-Text-Justify-Left:before {
  content: "\ea0c";
}

/* line 1269, shared/_rebrand.scss */
.icon-Text-Justify-Right:before {
  content: "\ea0d";
}

/* line 1273, shared/_rebrand.scss */
.icon-Text-Filled:before {
  content: "\ea0e";
}

/* line 1277, shared/_rebrand.scss */
.icon-Text-Outline:before {
  content: "\ea0f";
}

/* line 1281, shared/_rebrand.scss */
.icon-Upload-Filled:before {
  content: "\ea10";
}

/* line 1285, shared/_rebrand.scss */
.icon-Upload-Outline:before {
  content: "\ea11";
}

/* line 1289, shared/_rebrand.scss */
.icon-Utilities:before {
  content: "\ea12";
}

/* line 1293, shared/_rebrand.scss */
.icon-Volume-Filled:before {
  content: "\ea13";
}

/* line 1297, shared/_rebrand.scss */
.icon-Volume-Outline:before {
  content: "\ea14";
}

/* line 1301, shared/_rebrand.scss */
.icon-Vote:before {
  content: "\ea15";
}

/* line 1305, shared/_rebrand.scss */
.icon-Weapons:before {
  content: "\ea16";
}

/* line 1309, shared/_rebrand.scss */
.icon-Widget-Outline:before {
  content: "\ea17";
}

/* line 1313, shared/_rebrand.scss */
.icon-Widget-Solid:before {
  content: "\ea18";
}

/* line 1317, shared/_rebrand.scss */
.icon-Word-Filled:before {
  content: "\ea19";
}

/* line 1321, shared/_rebrand.scss */
.icon-Word-Outline:before {
  content: "\ea1a";
}

/* line 1325, shared/_rebrand.scss */
.icon-Workbook-Filled:before {
  content: "\ea1b";
}

/* line 1329, shared/_rebrand.scss */
.icon-Workbook-Outline:before {
  content: "\ea1c";
}

/* line 1333, shared/_rebrand.scss */
.header-icon {
  padding-right: 10px;
  font-size: 20px;
}

/* line 7, shared/select2/_new.scss */
.select2-drop-active,
.select2-choice,
.select2-choices {
  border-color: #aaa !important;
}

/* line 14, shared/select2/_new.scss */
.select2-highlighted {
  background: #2a63a2 !important;
}

/* line 24, shared/select2/_new.scss */
.select2-drop.bigdrop .select2-results {
  max-height: 505px;
}

/* line 30, shared/select2/_new.scss */
.select2-results em {
  background: transparent !important;
  font-weight: bold !important;
  color: #82bee2 !important;
}
/* line 37, shared/select2/_new.scss */
.select2-results .select2-result .searchbar-row {
  font-size: 12px !important;
  margin-bottom: 0 !important;
  height: 17px !important;
  line-height: 19px !important;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
/* line 47, shared/select2/_new.scss */
.select2-results .select2-result .advisor-info {
  color: #999 !important;
  font-size: 10px !important;
  margin-bottom: 0 !important;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

/* line 58, shared/select2/_new.scss */
.invalid-choice {
  background: #b94a48 none !important;
  border-color: #d68484 !important;
  color: #fff !important;
}

/* line 68, shared/select2/_new.scss */
.select2-drop {
  z-index: 99999;
}
/* line 71, shared/select2/_new.scss */
.select2-drop.select-tooltip-drop {
  border: 1px solid #d4d4d4;
  margin-top: 11px;
  border-radius: 3px;
  min-width: 198px;
}
/* line 77, shared/select2/_new.scss */
.select2-drop.select-tooltip-drop .select2-results {
  max-height: none;
  margin: 0;
  padding: 0;
}
/* line 82, shared/select2/_new.scss */
.select2-drop.select-tooltip-drop .select2-results li {
  line-height: 2.4rem;
}
/* line 86, shared/select2/_new.scss */
.select2-drop.select-tooltip-drop .select2-results .select2-result {
  padding-left: 37px;
  position: relative;
}
/* line 90, shared/select2/_new.scss */
.select2-drop.select-tooltip-drop .select2-results .select2-result.select2-disabled {
  background: #fff;
  padding-left: 12px;
}
/* line 95, shared/select2/_new.scss */
.select2-drop.select-tooltip-drop .select2-results .select2-result.select2-highlighted {
  background: #2a63a2 !important;
}
/* line 98, shared/select2/_new.scss */
.select2-drop.select-tooltip-drop .select2-results .select2-result.select2-highlighted .icon-trash {
  color: #fff;
}
/* line 103, shared/select2/_new.scss */
.select2-drop.select-tooltip-drop .select2-results .select2-result.title {
  font-weight: bold;
  cursor: default;
}
/* line 108, shared/select2/_new.scss */
.select2-drop.select-tooltip-drop .select2-results .select2-result.click {
  border-top: 1px solid #ccc;
  padding-top: 5px;
  padding-bottom: 5px;
  margin-top: 9px;
}
/* line 115, shared/select2/_new.scss */
.select2-drop.select-tooltip-drop .select2-results .select2-result.selected-value {
  background-image: url('../../images/libraries/select2/icon-check.png') !important;
  background-repeat: no-repeat !important;
}
/* line 119, shared/select2/_new.scss */
.select2-drop.select-tooltip-drop .select2-results .select2-result.selected-value:hover, .select2-drop.select-tooltip-drop .select2-results .select2-result.selected-value.highlight-overwrite {
  background-image: url('../../images/libraries/select2/icon-check-white.png') !important;
  background-repeat: no-repeat !important;
}
/* line 127, shared/select2/_new.scss */
.select2-drop.select-tooltip-drop .select2-results .select2-result.pre-selected span {
  color: #fff;
}
/* line 132, shared/select2/_new.scss */
.select2-drop.select-tooltip-drop .select2-results .select2-result .select2-result-label {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* line 138, shared/select2/_new.scss */
.select2-drop.select-tooltip-drop .select2-results .select2-result.highlight-overwrite {
  background: #2a63a2 !important;
  color: #fff !important;
}
/* line 143, shared/select2/_new.scss */
.select2-drop.select-tooltip-drop .select2-results .select2-result.white-check {
  background-image: url('../../images/libraries/select2/icon-check-white.png') !important;
  background-repeat: no-repeat !important;
}
/* line 149, shared/select2/_new.scss */
.select2-drop.select-tooltip-drop .select2-results .icon-trash {
  position: relative;
  float: right;
  top: -24px;
  right: 15px;
  color: #77787f;
  font-size: 16px;
  cursor: pointer;
}
/* line 158, shared/select2/_new.scss */
.select2-drop.select-tooltip-drop .select2-results .icon-trash:hover {
  color: #fff !important;
}
/* line 162, shared/select2/_new.scss */
.select2-drop.select-tooltip-drop .select2-results .icon-trash.highlight-overwrite {
  color: #fff !important;
}
/* line 168, shared/select2/_new.scss */
.select2-drop.select-tooltip-drop:after, .select2-drop.select-tooltip-drop:before {
  bottom: 100%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
/* line 179, shared/select2/_new.scss */
.select2-drop.select-tooltip-drop:after {
  border: 8px rgba(136, 183, 213, 0);
  border-bottom-color: #fff;
  left: 50%;
  margin-left: -8px;
}
/* line 186, shared/select2/_new.scss */
.select2-drop.select-tooltip-drop:before {
  border: 9px rgba(212, 212, 212, 0);
  border-bottom-color: #d4d4d4;
  left: 50%;
  margin-left: -9px;
}
/* line 195, shared/select2/_new.scss */
.select2-drop.select-tooltip-with-icons-drop .select2-append-div {
  margin-top: 0 !important;
}
/* line 200, shared/select2/_new.scss */
.select2-drop .select2-prepend-div {
  font-weight: bold;
  padding: 10px 0 9px 18px;
}
/* line 205, shared/select2/_new.scss */
.select2-drop .select2-append-div {
  position: relative;
  border-top: 1px solid #ccc;
  bottom: 10px;
  padding: 10px 0 0 18px;
  margin-top: 16px;
  cursor: pointer;
}
