.kv-jivo-launcher {
  position: fixed;
  left: auto;
  right: 12px;
  top: 45%;
  z-index: 2147483001;
  width: 58px;
  height: 58px;
  padding: 0;
  border: 2px solid #fff;
  border-radius: 50%;
  background: linear-gradient(135deg, #656565 15%, #424867 85%);
  color: #fff;
  box-shadow: 0 4px 18px rgba(0, 0, 0, .28);
  cursor: grab;
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
  display: none;
  align-items: center;
  justify-content: center;
}

.kv-jivo-launcher.is-measuring {
  display: flex;
  visibility: hidden;
}

.kv-jivo-launcher.is-ready {
  display: flex;
  visibility: visible;
}
.kv-jivo-launcher.is-dragging { cursor: grabbing; }
.kv-jivo-launcher[hidden] { display: none !important; }

.kv-jivo-launcher::before {
  content: '';
  width: 26px;
  height: 20px;
  border: 2px solid currentColor;
  border-radius: 12px;
  box-sizing: border-box;
}

.kv-jivo-launcher::after {
  content: '';
  position: absolute;
  left: 18px;
  top: 35px;
  width: 8px;
  height: 8px;
  border-left: 2px solid currentColor;
  transform: skew(-28deg);
}

.kv-jivo-launcher:hover { filter: brightness(1.08); }

.kv-jivo-launcher:focus-visible {
  outline: 3px solid #ffb000;
  outline-offset: 3px;
}

@media (max-width: 767px) {
  .kv-jivo-launcher {
    width: 52px;
    height: 52px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .kv-jivo-launcher:not(.is-dragging) {
    transition: left .16s ease, top .16s ease, filter .16s ease;
  }
}

@media print {
  .kv-jivo-launcher { display: none !important; }
}
