/* components/custom-cursor/src/scss/custom-cursor.scss */
@media (min-width: 62em) {
  .c-custom-cursor {
    pointer-events: none;
    z-index: 3000000000;
    mix-blend-mode: difference;
    background-color: var(--iio-color-white);
    border-radius: 50%;
    height: 0.7vw;
    width: 0.7vw;
    position: fixed;
    top: 0.125%;
    left: 0.125%;
    -webkit-transition:
      width 0.25s ease,
      height 0.25s ease,
      background-color 0.25s ease,
      max-height 0.25s ease,
      max-width 0.25s ease;
    transition:
      width 0.25s ease,
      height 0.25s ease,
      background-color 0.25s ease,
      max-height 0.25s ease,
      max-width 0.25s ease;
    max-width: 0.9375rem;
    max-height: 0.9375rem;
  }
  .c-custom-cursor .c-custom-cursor__text {
    color: var(--iio-base-solicon-blue);
    opacity: 0;
    pointer-events: none;
    -webkit-transition: var(--iio-transition-eased);
    transition: var(--iio-transition-eased);
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
    font-size: 0.875rem;
    font-weight: var(--iio-fw-light);
  }
  .c-custom-cursor.hover {
    height: 1.6vw;
    width: 1.6vw;
    background-color: var(--iio-base-solicon-blue);
    mix-blend-mode: normal;
    opacity: 0.3;
    max-width: 1.5625rem;
    max-height: 1.5625rem;
  }
  .c-custom-cursor.hover-card {
    background-color: var(--iio-base-solicon-light-blue);
    height: 7.1875rem;
    width: 7.1875rem;
    opacity: 1;
    mix-blend-mode: normal;
    max-width: 7.1875rem;
    max-height: 7.1875rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .c-custom-cursor.hover-card .c-custom-cursor__text {
    opacity: 1;
    -webkit-transition-delay: 0;
    transition-delay: 0;
  }
}
/*# sourceMappingURL=custom-cursor.css.map */
