/* Function that returns either $dark or $light, whichever contrasts more with $color.
   Borrowed from the compass-style library. Source at http://compass-style.org/reference/compass/utilities/color/contrast/ */
/* Putting this here because it's used across several htmto/scss files */
/* Function that returns either $dark or $light, whichever contrasts more with $color.
   Borrowed from the compass-style library. Source at http://compass-style.org/reference/compass/utilities/color/contrast/ */
/* Putting this here because it's used across several htmto/scss files */
.text-italic {
  font-style: italic; }

.text-ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; }

.fadeIn {
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-duration: 0.25s;
          animation-duration: 0.25s;
  -webkit-animation-name: fadeInKeyframe;
          animation-name: fadeInKeyframe;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out; }

.fadeInDelay {
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-duration: 0.25s;
          animation-duration: 0.25s;
  -webkit-animation-name: fadeInKeyframe;
          animation-name: fadeInKeyframe;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  opacity: 0; }

.fadeInShortDelay {
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-duration: 0.25s;
          animation-duration: 0.25s;
  -webkit-animation-name: fadeInKeyframe;
          animation-name: fadeInKeyframe;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  opacity: 0; }

@-webkit-keyframes fadeInKeyframe {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes fadeInKeyframe {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

.fadeOut {
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-duration: 0.25s;
          animation-duration: 0.25s;
  -webkit-animation-name: fadeOutKeyframe;
          animation-name: fadeOutKeyframe;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out; }

@-webkit-keyframes fadeOutKeyframe {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@keyframes fadeOutKeyframe {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

.slideUpFadeIn {
  opacity: 0;
  -webkit-transform: translate3d(0, 60px, 0);
          transform: translate3d(0, 60px, 0);
  -webkit-animation-name: slideUpFadeIn;
          animation-name: slideUpFadeIn;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-timing-function: cubic-bezier(0.3, 1, 0.32, 1);
          animation-timing-function: cubic-bezier(0.3, 1, 0.32, 1);
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards; }

@-webkit-keyframes slideUpFadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 60px, 0);
            transform: translate3d(0, 60px, 0); }
  100% {
    opacity: 1.0;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); } }

@keyframes slideUpFadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 60px, 0);
            transform: translate3d(0, 60px, 0); }
  100% {
    opacity: 1.0;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); } }

@-webkit-keyframes slideIcon {
  0% {
    opacity: 1; }
  1% {
    background-position: 0 -48px; }
  24% {
    background-position: 0 -48px; }
  25% {
    background-position: 0 -96px; }
  49% {
    background-position: 0 -96px; }
  50% {
    background-position: 0 -144px; }
  74% {
    background-position: 0 -144px; }
  75% {
    background-position: 0 -192px; }
  99% {
    background-position: 0 -192px;
    opacity: 1; }
  100% {
    opacity: 0; } }

@keyframes slideIcon {
  0% {
    opacity: 1; }
  1% {
    background-position: 0 -48px; }
  24% {
    background-position: 0 -48px; }
  25% {
    background-position: 0 -96px; }
  49% {
    background-position: 0 -96px; }
  50% {
    background-position: 0 -144px; }
  74% {
    background-position: 0 -144px; }
  75% {
    background-position: 0 -192px; }
  99% {
    background-position: 0 -192px;
    opacity: 1; }
  100% {
    opacity: 0; } }

@-webkit-keyframes bounce {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0); }
  25% {
    -webkit-transform: translateY(2px);
            transform: translateY(2px); }
  50% {
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px); }
  75% {
    -webkit-transform: translateY(1px);
            transform: translateY(1px); }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0); } }

@keyframes bounce {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0); }
  25% {
    -webkit-transform: translateY(2px);
            transform: translateY(2px); }
  50% {
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px); }
  75% {
    -webkit-transform: translateY(1px);
            transform: translateY(1px); }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0); } }

@-webkit-keyframes embiggen {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1); }
  25% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05); }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1); }
  75% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05); }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1); } }

@keyframes embiggen {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1); }
  25% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05); }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1); }
  75% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05); }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1); } }

@-webkit-keyframes wiggle {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  10% {
    -webkit-transform: rotate(-7deg);
            transform: rotate(-7deg); }
  25% {
    -webkit-transform: rotate(7deg);
            transform: rotate(7deg); }
  50% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg); }
  75% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg); }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); } }

@keyframes wiggle {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  10% {
    -webkit-transform: rotate(-7deg);
            transform: rotate(-7deg); }
  25% {
    -webkit-transform: rotate(7deg);
            transform: rotate(7deg); }
  50% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg); }
  75% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg); }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); } }

@keyframes bounce {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0); }
  20%, 60% {
    -webkit-transform: translateY(-3px);
            transform: translateY(-3px); }
  40%, 80% {
    -webkit-transform: translateY(3px);
            transform: translateY(3px); } }



.button-like-link {
  -webkit-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out;
  border: none;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  font-size: 13px;
  line-height: 1.5em;
  padding: 8px 14px; }
  .button-like-link:hover {
    text-decoration: none; }

.button-inline-text {
  display: inline-block;
  font-size: 13px;
  line-height: 1.5em;
  padding: 8px 14px; }
  .button-inline-text.is-link {
    color: #448EE1;
    cursor: pointer; }
    .button-inline-text.is-link:hover {
      text-decoration: underline; }

.additionalBtn,
.submitBtn,
.saveBtn {
  background-color: #448EE1; }
  .additionalBtn:hover,
  .submitBtn:hover,
  .saveBtn:hover {
    background-color: #3A7CC6; }
  .additionalBtn[disabled],
  .submitBtn[disabled],
  .saveBtn[disabled] {
    background-color: #ccc; }

.cancelBtn {
  background: #c8d2d9;
  color: #666; }

.d-block {
  display: block; }

.text-left {
  text-align: left !important; }

.text-center {
  text-align: center !important; }

.text-right {
  text-align: right !important; }

.heavy-weight {
  font-weight: 600; }

.normal-weight {
  font-weight: 500; }

.light-weight {
  font-weight: 400; }

.lightest-weight {
  font-weight: 200; }

.lh-copy {
  line-height: 1.5; }

.lh-headline {
  line-height: 2; }

.text-muted {
  color: #96A2AC; }

.text-emphasized {
  color: #121212; }

.bg-white {
  background-color: #fff; }

.bg-blue {
  background-color: #448EE1; }

.bg-green {
  background-color: #65AB83; }

.bg-red {
  background-color: #E35F61; }

.text-placeholder {
  color: #96A2AC; }

.text-blue {
  color: #448EE1; }

.text-red {
  color: #E35F61; }

.m-tb-16 {
  margin-top: 16px;
  margin-bottom: 16px; }

.m-b-16 {
  margin-bottom: 16px; }

.m-b-24 {
  margin-bottom: 24px; }

.m-t-16 {
  margin-top: 16px; }

.selectReset,
.inputReset {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none; }
  .selectReset:focus,
  .inputReset:focus {
    outline: none; }

.buttonReset {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  line-height: normal;
  margin: 0;
  padding: 0; }
  .buttonReset::focus-inner {
    border: 0;
    padding: 0; }

.end {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end; }

.hidden {
  display: none !important; }

@media print {
  body * {
    visibility: hidden; }
  .invoice-zone,
  .invoice-zone * {
    visibility: visible; }
  .invoice-zone {
    -webkit-box-shadow: 0 0 0 #fff;
            box-shadow: 0 0 0 #fff;
    border: none;
    border-radius: 0;
    left: 0;
    position: absolute;
    top: 0; } }








.map-key {
  position: absolute;
  right: 0;
  left: 90%;
  bottom: 0;
  top: 0;
  z-index: 1;
  display: none; }
  .map-key .map-keys-wrapper {
    padding: 8px 16px;
    border: 1px solid transparent;
    border-radius: 6px;
    margin-right: -40px;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out; }
  .map-key .map-key-label {
    color: #96A2AC;
    font-weight: 600;
    font-size: 10px;
    text-transform: uppercase;
    text-align: right;
    overflow: hidden;
    margin-bottom: 6px;
    margin-right: -28px;
    letter-spacing: 0.12em; }
  .map-key .map-key-item {
    height: 4px;
    width: 36px;
    position: relative;
    display: block;
    float: right;
    clear: both;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    line-height: 1.5;
    margin-bottom: 15px;
    border-radius: 4px; }
    .map-key .map-key-item::after {
      color: #121212;
      font-weight: 600;
      font-size: 10px;
      display: inline;
      content: attr(data-map-count);
      position: absolute;
      right: 0;
      top: 4px;
      text-align: center;
      text-overflow: ellipsis;
      white-space: nowrap;
      opacity: 0; }
  .map-key .map-key-item[data-map-count=""] {
    height: 0;
    margin-bottom: 0; }
  .map-key:hover .map-keys-wrapper {
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid #E4E8EB;
    margin-right: 16px;
    min-width: 160px; }
  .map-key:hover .map-key-label {
    margin-right: 0; }
  .map-key:hover .map-key-item::after {
    opacity: 1; }
  .map-key:hover .map-key-item[data-map-count=""] {
    opacity: .3;
    height: 4px;
    margin-bottom: 16px;
    width: 4%; }

.masker {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out; }

.overlays {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: visible; }

.RankIndicator {
  opacity: 0;
  display: none;
  position: fixed;
  cursor: pointer;
  z-index: 27; }
  .RankIndicator.is-on {
    opacity: 1; }
  .RankIndicator > .content {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border: 2px solid #E4E8EB;
    color: #448EE1;
    font-size: 14px;
    font-weight: 500;
    border-radius: 42px;
    width: 30px;
    height: 30px;
    background-color: #fff;
    padding: 1px;
    -webkit-transition: opacity .2s ease-in-out;
    transition: opacity .2s ease-in-out; }
  .RankIndicator.animate {
    -webkit-transition: opacity 0.01s ease-in-out, -webkit-transform 0.25s ease-in-out;
    transition: opacity 0.01s ease-in-out, -webkit-transform 0.25s ease-in-out;
    transition: transform 0.25s ease-in-out, opacity 0.01s ease-in-out;
    transition: transform 0.25s ease-in-out, opacity 0.01s ease-in-out, -webkit-transform 0.25s ease-in-out; }
  .RankIndicator.dead > .content {
    border-color: #f7ad00;
    color: #f7ad00; }
  .RankIndicator.rage > .content {
    border-color: #6ebb1a;
    color: #6ebb1a; }
  .RankIndicator.error > .content {
    border-color: #e35f61;
    color: #e35f61; }
  .RankIndicator.backgrounded > .content {
    color: white;
    background-color: #448EE1; }
  .RankIndicator.backgrounded.dead > .content {
    background-color: #f7ad00; }
  .RankIndicator.backgrounded.rage > .content {
    background-color: #6ebb1a; }
  .RankIndicator.backgrounded.error > .content {
    background-color: #e35f61; }
  .RankIndicator.selected > .content {
    background-color: #448EE1;
    border-color: white;
    color: white;
    z-index: 27; }
  .RankIndicator.selected.dead > .content {
    background-color: #f7ad00; }
  .RankIndicator.selected.rage > .content {
    background-color: #6ebb1a; }
  .RankIndicator.selected.error > .content {
    background-color: #e35f61; }
  .RankIndicator.offscreen {
    border-radius: 100%;
    padding: 5px;
    background-color: white;
    -webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
            box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2); }
    .RankIndicator.offscreen > .content {
      -webkit-box-shadow: none;
              box-shadow: none; }
    .RankIndicator.offscreen::after {
      content: '';
      display: inline-block;
      position: absolute;
      border-style: solid;
      z-index: -1; }
    .RankIndicator.offscreen.above::after {
      top: -31px;
      left: 1px;
      border-left: 19px solid transparent;
      border-right: 19px solid transparent;
      border-bottom: 45px solid white;
      border-top: 0; }
    .RankIndicator.offscreen.below::after {
      bottom: -31px;
      left: 1px;
      border-left: 19px solid transparent;
      border-right: 19px solid transparent;
      border-top: 45px solid white;
      border-bottom: 0; }

.highlights > .rect {
  -webkit-transition: border-color 0.25s ease-in-out, border-width 0.25s ease-in-out;
  transition: border-color 0.25s ease-in-out, border-width 0.25s ease-in-out;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  border: 2px solid transparent;
  border-radius: 4px;
  padding: 8px;
  display: inline-block; }
  .highlights > .rect.selected {
    border-color: #448EE1;
    z-index: 27; }
    .highlights > .rect.selected.dead {
      border-color: #f7ad00; }
    .highlights > .rect.selected.rage {
      border-color: #6ebb1a; }
    .highlights > .rect.selected.error {
      border-color: #e35f61; }

.Renderer {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden; }
  .Renderer .checkerboard {
    background: linear-gradient(90deg, #F9F9F9 22px, transparent 1%) center, linear-gradient(#F9F9F9 22px, transparent 1%) center, #d9e1e7;
    background-size: 24px 24px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: '';
    z-index: 0;
    opacity: 0;
    -webkit-transition: opacity 0.25s ease-in-out;
    transition: opacity 0.25s ease-in-out; }
  .Renderer > .scaled {
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0; }
    .Renderer > .scaled > .viewport {
      width: 100%;
      height: 100%;
      position: absolute;
      -webkit-transform-origin: 0 0;
              transform-origin: 0 0; }
      .Renderer > .scaled > .viewport.floating {
        -webkit-transition: -webkit-transform 0.25s ease-out;
        transition: -webkit-transform 0.25s ease-out;
        transition: transform 0.25s ease-out;
        transition: transform 0.25s ease-out, -webkit-transform 0.25s ease-out; }
      .Renderer > .scaled > .viewport .frame {
        background-color: #fff;
        opacity: 1;
        position: absolute;
        border-width: 0;
        -webkit-transition: opacity 0.5s ease-in-out;
        transition: opacity 0.5s ease-in-out; }
      .Renderer > .scaled > .viewport > .overlays {
        /* Set z-index above the iframe. If the playback iframe -- or, oddly enough, an element in its
        * document -- has a `transform` property or `backface-visibility: hidden;`, the iframe can
        * obscure *some* elements in the overlay on Chrome (CH49232). */
        z-index: 2; }
        .Renderer > .scaled > .viewport > .overlays > .cursor, .Renderer > .scaled > .viewport > .overlays > .cursor-pointer, .Renderer > .scaled > .viewport > .overlays > .touches > .touch {
          --overlay-x: 0;
          --overlay-y: 0;
          --overlay-scale: 1;
          --overlay-width: 0;
          --overlay-height: 0;
          --overlay-hotspot-x: 0;
          --overlay-hotspot-y: 0;
          width: calc(var(--overlay-width) * var(--overlay-scale));
          height: calc(var(--overlay-height) * var(--overlay-scale));
          -webkit-transform: translate(calc(var(--overlay-x) - var(--overlay-hotspot-x) * var(--overlay-scale)), calc(var(--overlay-y) - var(--overlay-hotspot-y) * var(--overlay-scale)));
                  transform: translate(calc(var(--overlay-x) - var(--overlay-hotspot-x) * var(--overlay-scale)), calc(var(--overlay-y) - var(--overlay-hotspot-y) * var(--overlay-scale))); }
        .Renderer > .scaled > .viewport > .overlays > .cursor, .Renderer > .scaled > .viewport > .overlays > .cursor-pointer {
          position: absolute;
          display: none;
          background: var(--overlay-image) left top/100% no-repeat; }
          @media only screen and (-webkit-min-device-pixel-ratio: 2), (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
            .Renderer > .scaled > .viewport > .overlays > .cursor, .Renderer > .scaled > .viewport > .overlays > .cursor-pointer {
              background: var(--overlay-image-2x) left top/100% no-repeat; } }
        .Renderer > .scaled > .viewport > .overlays > .cursor {
          --overlay-width: 18px;
          --overlay-height: 25px;
          --overlay-hotspot-x: 6px;
          --overlay-hotspot-y: 1.5px;
          --overlay-image: url(/s/img/cursor.png);
          --overlay-image-2x: url(/s/img/cursor@2x.png); }
        .Renderer > .scaled > .viewport > .overlays > .cursor-pointer {
          --overlay-width: 21px;
          --overlay-height: 22px;
          --overlay-hotspot-x: 8px;
          --overlay-hotspot-y: 0px;
          --overlay-image: url(/s/img/cursor-pointer.png);
          --overlay-image-2x: url(/s/img/cursor-pointer@2x.png); }
        .Renderer > .scaled > .viewport > .overlays > .touches > .touch {
          --overlay-width: 32px;
          --overlay-height: 32px;
          --overlay-hotspot-x: 16px;
          --overlay-hotspot-y: 16px;
          background-color: #448EE1;
          position: absolute;
          border-radius: 100%;
          opacity: 0.5;
          -webkit-animation: scaleout 0.25s ease-in-out;
                  animation: scaleout 0.25s ease-in-out; }
        .Renderer > .scaled > .viewport > .overlays > .touches > .touch.up {
          -webkit-animation: scalein 0.25s ease-in-out;
                  animation: scalein 0.25s ease-in-out; }
  .Renderer.pageInsights .checkerboard {
    opacity: 1; }
  .Renderer.pageInsights > .scaled {
    -webkit-transition: -webkit-transform 0.25s ease-in-out;
    transition: -webkit-transform 0.25s ease-in-out;
    transition: transform 0.25s ease-in-out;
    transition: transform 0.25s ease-in-out, -webkit-transform 0.25s ease-in-out;
    overflow: visible; }
  .Renderer.pageInsights .overlays {
    /*pointer-events: none;*/ }
    .Renderer.pageInsights .overlays > .highlights {
      pointer-events: auto; }
      .Renderer.pageInsights .overlays > .highlights > .rect {
        pointer-events: none; }
  .Renderer.is-map-mode.map-insights .RankIndicator .content {
    opacity: 0; }
  .Renderer.is-map-mode.map-insights .RankIndicator::after {
    opacity: 0; }
  .Renderer.is-map-mode.map-insights .RankIndicator.offscreen {
    -webkit-box-shadow: none;
            box-shadow: none;
    background-color: transparent; }
  .Renderer.is-map-mode.map-insights .scaled:hover .RankIndicator.is-on.offscreen {
    -webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
            box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
    padding: 5px;
    background-color: white; }
  .Renderer.is-map-mode.map-insights .scaled:hover .RankIndicator.is-on .content {
    opacity: .4; }
  .Renderer.is-map-mode.map-insights .scaled:hover .RankIndicator.is-on:hover .content, .Renderer.is-map-mode.map-insights .scaled:hover .RankIndicator.is-on.selected .content {
    opacity: 1; }
  .Renderer.is-map-mode.map-insights .scaled:hover .RankIndicator.is-on::after {
    opacity: 1; }
  .Renderer.is-map-mode.map-insights .map-key {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
  .Renderer.is-map-mode.map-insights .scaled:hover .map-color-1:hover {
    border-color: rgba(234, 25, 149, 0.4); }
  .Renderer.is-map-mode.map-insights .scaled:hover .map-color-1.selected {
    border-color: rgba(234, 25, 149, 0.7); }
  .Renderer.is-map-mode.map-insights .scaled:hover .map-color-2:hover {
    border-color: rgba(222, 24, 142, 0.4); }
  .Renderer.is-map-mode.map-insights .scaled:hover .map-color-2.selected {
    border-color: rgba(222, 24, 142, 0.7); }
  .Renderer.is-map-mode.map-insights .scaled:hover .map-color-3:hover {
    border-color: rgba(222, 35, 155, 0.4); }
  .Renderer.is-map-mode.map-insights .scaled:hover .map-color-3.selected {
    border-color: rgba(222, 35, 155, 0.7); }
  .Renderer.is-map-mode.map-insights .scaled:hover .map-color-4:hover {
    border-color: rgba(212, 43, 159, 0.4); }
  .Renderer.is-map-mode.map-insights .scaled:hover .map-color-4.selected {
    border-color: rgba(212, 43, 159, 0.7); }
  .Renderer.is-map-mode.map-insights .scaled:hover .map-color-5:hover {
    border-color: rgba(199, 52, 164, 0.4); }
  .Renderer.is-map-mode.map-insights .scaled:hover .map-color-5.selected {
    border-color: rgba(199, 52, 164, 0.7); }
  .Renderer.is-map-mode.map-insights .scaled:hover .map-color-6:hover {
    border-color: rgba(179, 67, 173, 0.4); }
  .Renderer.is-map-mode.map-insights .scaled:hover .map-color-6.selected {
    border-color: rgba(179, 67, 173, 0.7); }
  .Renderer.is-map-mode.map-insights .scaled:hover .map-color-7:hover {
    border-color: rgba(165, 79, 179, 0.4); }
  .Renderer.is-map-mode.map-insights .scaled:hover .map-color-7.selected {
    border-color: rgba(165, 79, 179, 0.7); }
  .Renderer.is-map-mode.map-insights .scaled:hover .map-color-8:hover {
    border-color: rgba(153, 88, 184, 0.4); }
  .Renderer.is-map-mode.map-insights .scaled:hover .map-color-8.selected {
    border-color: rgba(153, 88, 184, 0.7); }
  .Renderer.is-map-mode.map-insights .scaled:hover .map-color-9:hover {
    border-color: rgba(141, 97, 190, 0.4); }
  .Renderer.is-map-mode.map-insights .scaled:hover .map-color-9.selected {
    border-color: rgba(141, 97, 190, 0.7); }
  .Renderer.is-map-mode.map-insights .scaled:hover .map-color-10:hover {
    border-color: rgba(123, 110, 196, 0.4); }
  .Renderer.is-map-mode.map-insights .scaled:hover .map-color-10.selected {
    border-color: rgba(123, 110, 196, 0.7); }
  .Renderer.is-map-mode.map-insights .scaled:hover .map-color-11:hover {
    border-color: rgba(102, 126, 205, 0.4); }
  .Renderer.is-map-mode.map-insights .scaled:hover .map-color-11.selected {
    border-color: rgba(102, 126, 205, 0.7); }
  .Renderer.is-map-mode.map-insights .scaled:hover .map-color-12:hover {
    border-color: rgba(90, 136, 211, 0.4); }
  .Renderer.is-map-mode.map-insights .scaled:hover .map-color-12.selected {
    border-color: rgba(90, 136, 211, 0.7); }
  .Renderer.is-map-mode.map-insights .scaled:hover .map-color-13:hover {
    border-color: rgba(75, 148, 218, 0.4); }
  .Renderer.is-map-mode.map-insights .scaled:hover .map-color-13.selected {
    border-color: rgba(75, 148, 218, 0.7); }
  .Renderer.is-map-mode.map-insights .scaled:hover .map-color-14:hover {
    border-color: rgba(66, 153, 221, 0.4); }
  .Renderer.is-map-mode.map-insights .scaled:hover .map-color-14.selected {
    border-color: rgba(66, 153, 221, 0.7); }
  .Renderer.is-map-mode.map-insights .scaled:hover .map-color-15:hover {
    border-color: rgba(47, 169, 230, 0.4); }
  .Renderer.is-map-mode.map-insights .scaled:hover .map-color-15.selected {
    border-color: rgba(47, 169, 230, 0.7); }
  .Renderer.is-map-mode.map-insights .scaled:hover .map-color-16:hover {
    border-color: rgba(32, 181, 237, 0.4); }
  .Renderer.is-map-mode.map-insights .scaled:hover .map-color-16.selected {
    border-color: rgba(32, 181, 237, 0.7); }
  .Renderer.is-map-mode.map-insights .scaled:hover .map-color-17:hover {
    border-color: rgba(27, 193, 242, 0.4); }
  .Renderer.is-map-mode.map-insights .scaled:hover .map-color-17.selected {
    border-color: rgba(27, 193, 242, 0.7); }
  .Renderer.is-map-mode.map-insights .scaled:hover .map-color-18:hover {
    border-color: rgba(40, 196, 243, 0.4); }
  .Renderer.is-map-mode.map-insights .scaled:hover .map-color-18.selected {
    border-color: rgba(40, 196, 243, 0.7); }
  .Renderer.is-map-mode.map-insights .scaled:hover .map-color-19:hover {
    border-color: rgba(58, 200, 244, 0.4); }
  .Renderer.is-map-mode.map-insights .scaled:hover .map-color-19.selected {
    border-color: rgba(58, 200, 244, 0.7); }
  .Renderer.is-map-mode.map-insights .scaled:hover .map-color-20:hover {
    border-color: rgba(79, 205, 245, 0.4); }
  .Renderer.is-map-mode.map-insights .scaled:hover .map-color-20.selected {
    border-color: rgba(79, 205, 245, 0.7); }
  .Renderer.is-map-mode.map-insights .scaled:hover .map-color-21:hover {
    border-color: rgba(105, 210, 246, 0.4); }
  .Renderer.is-map-mode.map-insights .scaled:hover .map-color-21.selected {
    border-color: rgba(105, 210, 246, 0.7); }
  .Renderer.is-map-mode.map-insights .scaled:hover .map-color-22:hover {
    border-color: rgba(121, 214, 247, 0.4); }
  .Renderer.is-map-mode.map-insights .scaled:hover .map-color-22.selected {
    border-color: rgba(121, 214, 247, 0.7); }
  .Renderer.is-map-mode.map-insights .scaled:hover .map-color-23:hover {
    border-color: rgba(143, 218, 247, 0.4); }
  .Renderer.is-map-mode.map-insights .scaled:hover .map-color-23.selected {
    border-color: rgba(143, 218, 247, 0.7); }
  .Renderer.is-map-mode.map-insights .scaled:hover .map-color-24:hover {
    border-color: rgba(160, 222, 248, 0.4); }
  .Renderer.is-map-mode.map-insights .scaled:hover .map-color-24.selected {
    border-color: rgba(160, 222, 248, 0.7); }
  .Renderer.is-map-mode.map-insights .scaled:hover .map-color-25:hover {
    border-color: rgba(187, 228, 250, 0.4); }
  .Renderer.is-map-mode.map-insights .scaled:hover .map-color-25.selected {
    border-color: rgba(187, 228, 250, 0.7); }
  .Renderer.is-map-mode.map-insights .map-color-1 {
    z-index: 25;
    border-color: transparent;
    background: radial-gradient(#ea1995 0%, transparent 80%) center center no-repeat; }
  .Renderer.is-map-mode.map-insights .map-key-color-1 {
    background: rgba(234, 25, 149, 0.9); }
  .Renderer.is-map-mode.map-insights .map-key:hover .map-key-color-1[data-map-count]:not([data-map-count='']) {
    width: 100%; }
    .Renderer.is-map-mode.map-insights .map-key:hover .map-key-color-1[data-map-count]:not([data-map-count=''])::after {
      text-align: right; }
  .Renderer.is-map-mode.map-insights .map-color-2 {
    z-index: 24;
    border-color: transparent;
    background: radial-gradient(#de188e 0%, transparent 80%) center center no-repeat; }
  .Renderer.is-map-mode.map-insights .map-key-color-2 {
    background: rgba(222, 24, 142, 0.9); }
  .Renderer.is-map-mode.map-insights .map-key:hover .map-key-color-2[data-map-count]:not([data-map-count='']) {
    width: 96%; }
    .Renderer.is-map-mode.map-insights .map-key:hover .map-key-color-2[data-map-count]:not([data-map-count=''])::after {
      text-align: right; }
  .Renderer.is-map-mode.map-insights .map-color-3 {
    z-index: 23;
    border-color: transparent;
    background: radial-gradient(#de239b 0%, transparent 80%) center center no-repeat; }
  .Renderer.is-map-mode.map-insights .map-key-color-3 {
    background: rgba(222, 35, 155, 0.9); }
  .Renderer.is-map-mode.map-insights .map-key:hover .map-key-color-3[data-map-count]:not([data-map-count='']) {
    width: 92%; }
    .Renderer.is-map-mode.map-insights .map-key:hover .map-key-color-3[data-map-count]:not([data-map-count=''])::after {
      text-align: right; }
  .Renderer.is-map-mode.map-insights .map-color-4 {
    z-index: 22;
    border-color: transparent;
    background: radial-gradient(#d42b9f 0%, transparent 80%) center center no-repeat; }
  .Renderer.is-map-mode.map-insights .map-key-color-4 {
    background: rgba(212, 43, 159, 0.9); }
  .Renderer.is-map-mode.map-insights .map-key:hover .map-key-color-4[data-map-count]:not([data-map-count='']) {
    width: 88%; }
    .Renderer.is-map-mode.map-insights .map-key:hover .map-key-color-4[data-map-count]:not([data-map-count=''])::after {
      text-align: right; }
  .Renderer.is-map-mode.map-insights .map-color-5 {
    z-index: 21;
    border-color: transparent;
    background: radial-gradient(#c734a4 0%, transparent 80%) center center no-repeat; }
  .Renderer.is-map-mode.map-insights .map-key-color-5 {
    background: rgba(199, 52, 164, 0.9); }
  .Renderer.is-map-mode.map-insights .map-key:hover .map-key-color-5[data-map-count]:not([data-map-count='']) {
    width: 84%; }
    .Renderer.is-map-mode.map-insights .map-key:hover .map-key-color-5[data-map-count]:not([data-map-count=''])::after {
      text-align: right; }
  .Renderer.is-map-mode.map-insights .map-color-6 {
    z-index: 20;
    border-color: transparent;
    background: radial-gradient(#b343ad 0%, transparent 80%) center center no-repeat; }
  .Renderer.is-map-mode.map-insights .map-key-color-6 {
    background: rgba(179, 67, 173, 0.9); }
  .Renderer.is-map-mode.map-insights .map-key:hover .map-key-color-6[data-map-count]:not([data-map-count='']) {
    width: 80%; }
    .Renderer.is-map-mode.map-insights .map-key:hover .map-key-color-6[data-map-count]:not([data-map-count=''])::after {
      text-align: right; }
  .Renderer.is-map-mode.map-insights .map-color-7 {
    z-index: 19;
    border-color: transparent;
    background: radial-gradient(#a54fb3 0%, transparent 80%) center center no-repeat; }
  .Renderer.is-map-mode.map-insights .map-key-color-7 {
    background: rgba(165, 79, 179, 0.9); }
  .Renderer.is-map-mode.map-insights .map-key:hover .map-key-color-7[data-map-count]:not([data-map-count='']) {
    width: 76%; }
    .Renderer.is-map-mode.map-insights .map-key:hover .map-key-color-7[data-map-count]:not([data-map-count=''])::after {
      text-align: right; }
  .Renderer.is-map-mode.map-insights .map-color-8 {
    z-index: 18;
    border-color: transparent;
    background: radial-gradient(#9958b8 0%, transparent 80%) center center no-repeat; }
  .Renderer.is-map-mode.map-insights .map-key-color-8 {
    background: rgba(153, 88, 184, 0.9); }
  .Renderer.is-map-mode.map-insights .map-key:hover .map-key-color-8[data-map-count]:not([data-map-count='']) {
    width: 72%; }
    .Renderer.is-map-mode.map-insights .map-key:hover .map-key-color-8[data-map-count]:not([data-map-count=''])::after {
      text-align: right; }
  .Renderer.is-map-mode.map-insights .map-color-9 {
    z-index: 17;
    border-color: transparent;
    background: radial-gradient(#8d61be 0%, transparent 80%) center center no-repeat; }
  .Renderer.is-map-mode.map-insights .map-key-color-9 {
    background: rgba(141, 97, 190, 0.9); }
  .Renderer.is-map-mode.map-insights .map-key:hover .map-key-color-9[data-map-count]:not([data-map-count='']) {
    width: 68%; }
    .Renderer.is-map-mode.map-insights .map-key:hover .map-key-color-9[data-map-count]:not([data-map-count=''])::after {
      text-align: right; }
  .Renderer.is-map-mode.map-insights .map-color-10 {
    z-index: 16;
    border-color: transparent;
    background: radial-gradient(#7b6ec4 0%, transparent 80%) center center no-repeat; }
  .Renderer.is-map-mode.map-insights .map-key-color-10 {
    background: rgba(123, 110, 196, 0.9); }
  .Renderer.is-map-mode.map-insights .map-key:hover .map-key-color-10[data-map-count]:not([data-map-count='']) {
    width: 64%; }
    .Renderer.is-map-mode.map-insights .map-key:hover .map-key-color-10[data-map-count]:not([data-map-count=''])::after {
      text-align: right; }
  .Renderer.is-map-mode.map-insights .map-color-11 {
    z-index: 15;
    border-color: transparent;
    background: radial-gradient(rgba(102, 126, 205, 0.7) 0%, transparent 50%) center center no-repeat; }
  .Renderer.is-map-mode.map-insights .map-key-color-11 {
    background: rgba(102, 126, 205, 0.9); }
  .Renderer.is-map-mode.map-insights .map-key:hover .map-key-color-11[data-map-count]:not([data-map-count='']) {
    width: 60%; }
    .Renderer.is-map-mode.map-insights .map-key:hover .map-key-color-11[data-map-count]:not([data-map-count=''])::after {
      text-align: right; }
  .Renderer.is-map-mode.map-insights .map-color-12 {
    z-index: 14;
    border-color: transparent;
    background: radial-gradient(rgba(90, 136, 211, 0.7) 0%, transparent 50%) center center no-repeat; }
  .Renderer.is-map-mode.map-insights .map-key-color-12 {
    background: rgba(90, 136, 211, 0.9); }
  .Renderer.is-map-mode.map-insights .map-key:hover .map-key-color-12[data-map-count]:not([data-map-count='']) {
    width: 56%; }
    .Renderer.is-map-mode.map-insights .map-key:hover .map-key-color-12[data-map-count]:not([data-map-count=''])::after {
      text-align: right; }
  .Renderer.is-map-mode.map-insights .map-color-13 {
    z-index: 13;
    border-color: transparent;
    background: radial-gradient(rgba(75, 148, 218, 0.7) 0%, transparent 50%) center center no-repeat; }
  .Renderer.is-map-mode.map-insights .map-key-color-13 {
    background: rgba(75, 148, 218, 0.9); }
  .Renderer.is-map-mode.map-insights .map-key:hover .map-key-color-13[data-map-count]:not([data-map-count='']) {
    width: 52%; }
    .Renderer.is-map-mode.map-insights .map-key:hover .map-key-color-13[data-map-count]:not([data-map-count=''])::after {
      text-align: right; }
  .Renderer.is-map-mode.map-insights .map-color-14 {
    z-index: 12;
    border-color: transparent;
    background: radial-gradient(rgba(66, 153, 221, 0.7) 0%, transparent 50%) center center no-repeat; }
  .Renderer.is-map-mode.map-insights .map-key-color-14 {
    background: rgba(66, 153, 221, 0.9); }
  .Renderer.is-map-mode.map-insights .map-key:hover .map-key-color-14[data-map-count]:not([data-map-count='']) {
    width: 48%; }
    .Renderer.is-map-mode.map-insights .map-key:hover .map-key-color-14[data-map-count]:not([data-map-count=''])::after {
      text-align: right; }
  .Renderer.is-map-mode.map-insights .map-color-15 {
    z-index: 11;
    border-color: transparent;
    background: radial-gradient(rgba(47, 169, 230, 0.7) 0%, transparent 50%) center center no-repeat; }
  .Renderer.is-map-mode.map-insights .map-key-color-15 {
    background: rgba(47, 169, 230, 0.9); }
  .Renderer.is-map-mode.map-insights .map-key:hover .map-key-color-15[data-map-count]:not([data-map-count='']) {
    width: 44%; }
    .Renderer.is-map-mode.map-insights .map-key:hover .map-key-color-15[data-map-count]:not([data-map-count=''])::after {
      text-align: right; }
  .Renderer.is-map-mode.map-insights .map-color-16 {
    z-index: 10;
    border-color: transparent;
    background: radial-gradient(rgba(32, 181, 237, 0.7) 0%, transparent 50%) center center no-repeat; }
  .Renderer.is-map-mode.map-insights .map-key-color-16 {
    background: rgba(32, 181, 237, 0.9); }
  .Renderer.is-map-mode.map-insights .map-key:hover .map-key-color-16[data-map-count]:not([data-map-count='']) {
    width: 40%; }
    .Renderer.is-map-mode.map-insights .map-key:hover .map-key-color-16[data-map-count]:not([data-map-count=''])::after {
      text-align: right; }
  .Renderer.is-map-mode.map-insights .map-color-17 {
    z-index: 9;
    border-color: transparent;
    background: radial-gradient(rgba(27, 193, 242, 0.7) 0%, transparent 50%) center center no-repeat; }
  .Renderer.is-map-mode.map-insights .map-key-color-17 {
    background: rgba(27, 193, 242, 0.9); }
  .Renderer.is-map-mode.map-insights .map-key:hover .map-key-color-17[data-map-count]:not([data-map-count='']) {
    width: 36%; }
    .Renderer.is-map-mode.map-insights .map-key:hover .map-key-color-17[data-map-count]:not([data-map-count=''])::after {
      text-align: right; }
  .Renderer.is-map-mode.map-insights .map-color-18 {
    z-index: 8;
    border-color: transparent;
    background: radial-gradient(rgba(40, 196, 243, 0.7) 0%, transparent 50%) center center no-repeat; }
  .Renderer.is-map-mode.map-insights .map-key-color-18 {
    background: rgba(40, 196, 243, 0.9); }
  .Renderer.is-map-mode.map-insights .map-key:hover .map-key-color-18[data-map-count]:not([data-map-count='']) {
    width: 32%; }
    .Renderer.is-map-mode.map-insights .map-key:hover .map-key-color-18[data-map-count]:not([data-map-count=''])::after {
      text-align: right; }
  .Renderer.is-map-mode.map-insights .map-color-19 {
    z-index: 7;
    border-color: transparent;
    background: radial-gradient(rgba(58, 200, 244, 0.7) 0%, transparent 50%) center center no-repeat; }
  .Renderer.is-map-mode.map-insights .map-key-color-19 {
    background: rgba(58, 200, 244, 0.9); }
  .Renderer.is-map-mode.map-insights .map-key:hover .map-key-color-19[data-map-count]:not([data-map-count='']) {
    width: 28%; }
    .Renderer.is-map-mode.map-insights .map-key:hover .map-key-color-19[data-map-count]:not([data-map-count=''])::after {
      text-align: right; }
  .Renderer.is-map-mode.map-insights .map-color-20 {
    z-index: 6;
    border-color: transparent;
    background: radial-gradient(rgba(79, 205, 245, 0.7) 0%, transparent 50%) center center no-repeat; }
  .Renderer.is-map-mode.map-insights .map-key-color-20 {
    background: rgba(79, 205, 245, 0.9); }
  .Renderer.is-map-mode.map-insights .map-key:hover .map-key-color-20[data-map-count]:not([data-map-count='']) {
    width: 24%; }
    .Renderer.is-map-mode.map-insights .map-key:hover .map-key-color-20[data-map-count]:not([data-map-count=''])::after {
      text-align: right; }
  .Renderer.is-map-mode.map-insights .map-color-21 {
    z-index: 5;
    border-color: transparent;
    background: radial-gradient(rgba(105, 210, 246, 0.7) 0%, transparent 50%) center center no-repeat; }
  .Renderer.is-map-mode.map-insights .map-key-color-21 {
    background: rgba(105, 210, 246, 0.9); }
  .Renderer.is-map-mode.map-insights .map-key:hover .map-key-color-21[data-map-count]:not([data-map-count='']) {
    width: 20%; }
    .Renderer.is-map-mode.map-insights .map-key:hover .map-key-color-21[data-map-count]:not([data-map-count=''])::after {
      text-align: right; }
  .Renderer.is-map-mode.map-insights .map-color-22 {
    z-index: 4;
    border-color: transparent;
    background: radial-gradient(rgba(121, 214, 247, 0.7) 0%, transparent 50%) center center no-repeat; }
  .Renderer.is-map-mode.map-insights .map-key-color-22 {
    background: rgba(121, 214, 247, 0.9); }
  .Renderer.is-map-mode.map-insights .map-key:hover .map-key-color-22[data-map-count]:not([data-map-count='']) {
    width: 16%; }
    .Renderer.is-map-mode.map-insights .map-key:hover .map-key-color-22[data-map-count]:not([data-map-count=''])::after {
      text-align: right; }
  .Renderer.is-map-mode.map-insights .map-color-23 {
    z-index: 3;
    border-color: transparent;
    background: radial-gradient(rgba(143, 218, 247, 0.7) 0%, transparent 50%) center center no-repeat; }
  .Renderer.is-map-mode.map-insights .map-key-color-23 {
    background: rgba(143, 218, 247, 0.9); }
  .Renderer.is-map-mode.map-insights .map-key:hover .map-key-color-23[data-map-count]:not([data-map-count='']) {
    width: 12%; }
    .Renderer.is-map-mode.map-insights .map-key:hover .map-key-color-23[data-map-count]:not([data-map-count=''])::after {
      text-align: right; }
  .Renderer.is-map-mode.map-insights .map-color-24 {
    z-index: 2;
    border-color: transparent;
    background: radial-gradient(rgba(160, 222, 248, 0.7) 0%, transparent 50%) center center no-repeat; }
  .Renderer.is-map-mode.map-insights .map-key-color-24 {
    background: rgba(160, 222, 248, 0.9); }
  .Renderer.is-map-mode.map-insights .map-key:hover .map-key-color-24[data-map-count]:not([data-map-count='']) {
    width: 8%; }
    .Renderer.is-map-mode.map-insights .map-key:hover .map-key-color-24[data-map-count]:not([data-map-count=''])::after {
      text-align: right; }
  .Renderer.is-map-mode.map-insights .map-color-25 {
    z-index: 1;
    border-color: transparent;
    background: radial-gradient(rgba(187, 228, 250, 0.7) 0%, transparent 50%) center center no-repeat; }
  .Renderer.is-map-mode.map-insights .map-key-color-25 {
    background: rgba(187, 228, 250, 0.9); }
  .Renderer.is-map-mode.map-insights .map-key:hover .map-key-color-25[data-map-count]:not([data-map-count='']) {
    width: 4%; }
    .Renderer.is-map-mode.map-insights .map-key:hover .map-key-color-25[data-map-count]:not([data-map-count=''])::after {
      text-align: right; }

.Tooltip {
  font-size: 13px;
  line-height: 1.6em;
  padding: 8px 16px;
  font-weight: 500;
  position: absolute;
  max-width: 220px;
  z-index: 10009;
  color: #F9F9F9;
  border-radius: 6px; }
  .Tooltip hr {
    border: 0;
    height: 1px;
    background: #E4E8EB;
    margin: 16px 0; }
  .Tooltip.no-max-width {
    max-width: none;
    /* some larger tooltips don't want the max width restriction */ }
  .Tooltip::before {
    content: '';
    display: block;
    border-style: solid;
    border-width: 0 12px 12px 12px;
    position: absolute; }
  .Tooltip.aboveright::before {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
    bottom: -12px;
    right: 24px; }
  .Tooltip.abovecenter::before {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
    bottom: -12px;
    left: 50%;
    margin-left: -12px; }
  .Tooltip.belowright::before {
    top: -12px;
    right: 24px; }
  .Tooltip.belowleft::before {
    top: -12px;
    left: 24px; }
  .Tooltip.belowcenter::before {
    top: -12px;
    left: calc(50% - 12px); }
  .Tooltip.aboveleft::before {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
    bottom: -12px;
    left: 24px; }
  .Tooltip.clippedleft::before {
    left: 16px; }
  .Tooltip.right {
    border-radius: 6px 6px; }
    .Tooltip.right::before {
      -webkit-transform: rotate(-90deg);
              transform: rotate(-90deg);
      left: -18px;
      top: 24px; }
  .Tooltip.left {
    border-radius: 6px 6px; }
    .Tooltip.left::before {
      -webkit-transform: rotate(90deg);
              transform: rotate(90deg);
      right: -18px;
      top: 24px; }
  .Tooltip.gray {
    background-color: #3A4B59; }
    .Tooltip.gray::before {
      border-color: transparent transparent #3A4B59 transparent; }
  .Tooltip.pink {
    background-color: #f65c8c; }
    .Tooltip.pink::before {
      border-color: transparent transparent #f65c8c transparent; }
  .Tooltip.red {
    background-color: #e35f61; }
    .Tooltip.red::before {
      border-color: transparent transparent #e35f61 transparent; }
  .Tooltip.yellow {
    background-color: #f7ad00; }
    .Tooltip.yellow::before {
      border-color: transparent transparent #f7ad00 transparent; }
  .Tooltip.green {
    background-color: #6ebb1a; }
    .Tooltip.green::before {
      border-color: transparent transparent #6ebb1a transparent; }
  .Tooltip.blue {
    background-color: #448EE1; }
    .Tooltip.blue::before {
      border-color: transparent transparent #448EE1 transparent; }
  .Tooltip.black {
    background-color: #121212; }
    .Tooltip.black::before {
      border-color: transparent transparent #121212 transparent; }
  .Tooltip.white {
    background-color: white;
    color: #3A4B59; }
    .Tooltip.white::before {
      border-color: transparent transparent white transparent; }
  .Tooltip > .overflow-ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box; }

body {
  overflow: hidden;
  margin: 0;
  font-size: 12px;
  font-weight: 500; }
