.lasso-tip {
  box-sizing: content-box;
  position: absolute;
  z-index: 999;
  padding: 16px;
  pointer-events: none;
}
.lasso-tip .lasso-tip-content {
  pointer-events: all;
}
.lasso-tip[data-close="on-click"] .lasso-loop,
.lasso-tip[data-close="on-click"] .lasso-tip-content {
  pointer-events: all;
  cursor: pointer;
}
.lasso-tip[data-activate="hover"][data-close="never"] .lasso-tip-content {
  pointer-events: none;
}
.lasso-tip .lasso-tip-content,
.lasso-tip-extract {
  box-sizing: content-box;
  position: absolute;
  z-index: 3;
  left: -16px;
  top: auto;
  bottom: calc(100% - 16px + 24px);
  background: #33F;
  color: #fff;
  display: inline-block;
  padding: 6px 12px;
  border-radius: 8px;
  transform: translate(-50%,0%) scale(1);
  animation: lasso-content-in 300ms ease 1;
}
.lasso-top .lasso-tip-content,
.lasso-bottom .lasso-tip-content,
.lasso-right .lasso-tip-content,
.lasso-left .lasso-tip-content {
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.lasso-tip-wrap .lasso-tip-extract {
  display: none;
  left: auto;
  bottom: auto;
  position: relative;
  transform: none;
  animation: none;
  width: 100%;
}
.lasso-tip.lasso-out .lasso-tip-content {
  animation: lasso-content-out 300ms ease 1;
  transform: translate(-50%,0%) scale(0);
}
@keyframes lasso-content-in {
  from {
   transform: translate(-50%,0%) scale(0);
  } to {
   transform: translate(-50%,0%) scale(1);
  }
}
@keyframes lasso-content-out {
  from {
   transform: translate(-50%,0%) scale(1);
  } to {
   transform: translate(-50%,0%) scale(0);
  }
}
@keyframes lasso-content-in-neg-y {
  from {
   transform: translate(0%,-50%) scale(0);
  } to {
   transform: translate(0%,-50%) scale(1);
  }
}
@keyframes lasso-content-out-neg-y {
  from {
   transform: translate(0%,-50%) scale(1);
  } to {
   transform: translate(0%,-50%) scale(0);
  }
}
@keyframes lasso-content-in-pos-x {
  from {
   transform: translate(50%,0%) scale(0);
  } to {
   transform: translate(50%,0%) scale(1);
  }
}
@keyframes lasso-content-out-pos-x {
  from {
   transform: translate(50%,0%) scale(1);
  } to {
   transform: translate(50%,0%) scale(0);
  }
}
.lasso-tip svg {
  pointer-events: none;
}
.lasso-tip line,
.lasso-tip rect {
  stroke-width: 3px;
  stroke: #33F;
  fill: transparent;
  stroke-dasharray: 6 4;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  animation: rotate-dash 500ms ease 1;
}
.lasso-tip.lasso-out rect {
  stroke-width: 0;
  animation: rotate-dash-out 300ms ease 1;
}
.lasso-tip line {
  animation: rotate-dash 500ms ease 1;
}
.lasso-tip svg.lasso-line {
  position: absolute;
  z-index: 2;
  bottom: calc(100% - 24px);
  left: 18px;
  transform: rotate(-45deg);
  transform-origin: bottom;
  height: 50px;
}
.lasso-tip.lasso-out line {
  stroke-width: 0;
  animation: rotate-dash-out 300ms ease 1;
}
@keyframes rotate-dash {
  from {
    stroke-width: 0;
    stroke-dashoffset: 0;
  } to {
    stroke-width: 3px;
    stroke-dashoffset: -40;
  }
}
@keyframes rotate-dash-out {
  from {
    stroke-width: 3px;
    stroke-dashoffset: -40;
  } to {
    stroke-width: 0;
    stroke-dashoffset: 0;
  }
}
.lasso-close,
.lasso-toggle {
  color: rgba(0,0,0,0.6);
  background-color: #fff;
  display: inline-block;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 96 96' enable-background='new 0 0 96 96' xml:space='preserve'%3e%3cpolygon fill='rgba(0,0,0,0.6)' points='96,14 82,0 48,34 14,0 0,14 34,48 0,82 14,96 48,62 82,96 96,82 62,48 '/%3e%3c/svg%3e");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  line-height: 24px;
  font-size: 18px;
  border-radius: 12px;
  text-align: center;
  position: absolute;
  top: 4px;
  right: 4px;
  cursor: pointer;
  transition: transform 300ms ease;
  font-family: helvetica;
}
.lasso-close {
  right: -12px;
  top: -12px;
  transform: scale(1);
}
.lasso-tip[data-activate="toggle"] .lasso-tip-content .lasso-close {
  transform: scale(0);
}
.lasso-tip[data-activate="toggle"] .lasso-tip-content:hover .lasso-close {
  transform: scale(1);
}
.lasso-toggle {
  top: 0px;
  right: 0px;
  background-image: none;
  transition: transform 300ms ease;
  transform: scale(0);
  animation: none;
}
a[href="#lasso-open"] {
  transition: transform 300ms ease;
  transform: scale(1);
}
.lasso-tip-wrap a[href="#lasso-open"],
a.lasso-custom-hide[href="#lasso-open"] {
  transform: scale(0);
}
.lasso-closed .lasso-toggle,
.lasso-tip-wrap.lasso-closed a[href="#lasso-open"] {
  transform: scale(1);
}
.lasso-tip.lasso-out .lasso-close {
  transform: scale(0);
}
.lasso-top-left.lasso-squared svg.lasso-line {
  left: 12px;
  bottom: calc(100% - 18px);
}
.lasso-top .lasso-tip-content {
  left: 50%;
  top: auto;
  bottom: calc(100% + 50px - 16px);
}
.lasso-top svg.lasso-line {
  left: 50%;
  bottom: calc(100% - 16px);
  transform: rotate(0deg) translate(-50%,0);
}
.lasso-top-right .lasso-tip-content {
  left: auto;
  right: -16px;
  bottom: calc(100% - 16px + 24px);
  top: auto;
  transform: translate(50%,0%) scale(1);
  animation: lasso-content-in-pos-x 300ms ease 1;
}
.lasso-top-right.lasso-out .lasso-tip-content {
  animation: lasso-content-out-pos-x 300ms ease 1;
  transform: translate(50%,0%) scale(0);
}
.lasso-top-right svg.lasso-line {
  left: auto;
  right: 18px;
  transform: rotate(45deg);
}
.lasso-top-right.lasso-squared svg.lasso-line {
  right: 12px;
  bottom: calc(100% - 18px);
}
.lasso-left .lasso-tip-content {
  top: calc(50% - 12px);
  bottom: auto;
  left: auto;
  right: calc(100% + 50px - 18px);
  transform: translate(0%,-50%) scale(1);
  animation: lasso-content-in-neg-y 300ms ease 1;
}
.lasso-left.lasso-out .lasso-tip-content {
  animation: lasso-content-out-neg-y 300ms ease 1;
  transform: translate(0%,-50%) scale(0);
}
.lasso-left svg.lasso-line {
  transform: rotate(-75deg) translate(50%,0%);
  bottom: calc(50% - 4px);
  left: 12px;
}
.lasso-right .lasso-tip-content {
  top: calc(50% - 12px);
  bottom: auto;
  left: calc(100% + 50px - 18px);
  transform: translate(0%,-50%) scale(1);
  animation: lasso-content-in-neg-y 300ms ease 1;
}
@-moz-document url-prefix() {
  .lasso-right .lasso-tip-content {
    right: -100%;
  }
}
.lasso-right.lasso-out .lasso-tip-content {
  animation: lasso-content-out-neg-y 300ms ease 1;
  transform: translate(0%,-50%) scale(0);
}
.lasso-right svg.lasso-line {
  transform: rotate(75deg) translate(-50%,0%);
  bottom: calc(50% - 4px);
  right: 12px;
  left: auto;
}
.lasso-bottom-left .lasso-tip-content {
  left: -16px;
  bottom: auto;
  top: calc(100% + 24px - 16px);
  transform: translate(-50%,0%) scale(1);
  animation: lasso-content-in 300ms ease 1;
}
.lasso-bottom-left.lasso-out .lasso-tip-content {
  transform: translate(-50%,0%) scale(0);
  animation: lasso-content-out 300ms ease 1;
}
.lasso-bottom-left svg.lasso-line {
  transform: rotate(-135deg);
  top: calc(100% - 24px - 50px);
  bottom: auto;
}
.lasso-bottom-left.lasso-squared svg.lasso-line {
  left: 12px;
  top: calc(100% - 18px - 50px);
}
.lasso-bottom .lasso-tip-content {
  bottom: auto;
  left: 50%;
  top: calc(100% + 50px - 16px);
  transform: translate(-50%,0%) scale(1);
  animation: lasso-content-in 300ms ease 1;
}
.lasso-bottom.lasso-out .lasso-tip-content {
  animation: lasso-content-out 300ms ease 1;
  transform: translate(-50%,0%) scale(0)
}
.lasso-bottom svg.lasso-line {
  left: 50%;
  top: calc(100% - 16px);
  bottom: auto;
  transform: rotate(0deg) translate(-50%,0);
}
.lasso-bottom-right .lasso-tip-content {
  right: -16px;
  left: auto;
  bottom: auto;
  top: calc(100% + 24px - 16px);
  transform: translate(50%,0%) scale(1);
  animation: lasso-content-in-pos-x 300ms ease 1;
}
.lasso-bottom-right.lasso-out .lasso-tip-content {
  transform: translate(50%,0%) scale(0);
  animation: lasso-content-out-pos-x 300ms ease 1;
}
.lasso-bottom-right svg.lasso-line {
  transform: rotate(135deg);
  top: calc(100% - 24px - 50px);
  right: 18px;
  left: auto;
  bottom: auto;
}
.lasso-bottom-right.lasso-squared svg.lasso-line {
  right: 12px;
  top: calc(100% - 18px - 50px);
}
