@charset "utf-8";

.wt-sky-hint { text-rendering: optimizelegibility; -webkit-font-smoothing: antialiased; padding: 5px; position: absolute; z-index: 2147483647; cursor: default; animation: 0.15s ease 0s 1 normal none running fadeIn; }

.wt-sky-hint__arrow { content: ""; width: 0px; height: 0px; margin: auto; display: block; position: absolute; inset: 0px; border: 5px solid transparent; }

.wt-sky-hint__content { border-radius: 3px; background-color: rgba(51, 51, 51, 0.85); padding: 1px 7px 2px; font-family: "Open Sans", sans-serif; font-size: 13px; text-align: center; color: rgb(255, 255, 255); }

.wt-sky-hint--top .wt-sky-hint__arrow { top: auto; border-bottom-width: medium; border-bottom-style: none; border-bottom-color: currentcolor; border-top-color: rgba(51, 51, 51, 0.85); }

.wt-sky-hint--left .wt-sky-hint__arrow { left: auto; border-right-width: medium; border-right-style: none; border-right-color: currentcolor; border-left-color: rgba(51, 51, 51, 0.85); }

.wt-sky-hint--right .wt-sky-hint__arrow { right: auto; border-left-width: medium; border-left-style: none; border-left-color: currentcolor; border-right-color: rgba(51, 51, 51, 0.85); }

.wt-sky-hint--bottom .wt-sky-hint__arrow { bottom: auto; border-top-width: medium; border-top-style: none; border-top-color: currentcolor; border-bottom-color: rgba(51, 51, 51, 0.85); }

@keyframes fadeIn { 
  0% { opacity: 0; }
  100% { opacity: 1; }
}