#cs-extension-promo {
  all: initial;
  position: fixed;
  top: 92px;
  right: 18px;
  z-index: 2147483000;
  color: #18363d;
  font-family: Montserrat, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  pointer-events: none;
}

#cs-extension-promo *,
#cs-extension-promo *::before,
#cs-extension-promo *::after {
  box-sizing: border-box;
  font-family: inherit;
}

.cs-install-promo__wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.cs-install-promo__bubble,
.cs-install-promo__panel {
  pointer-events: auto;
}

.cs-install-promo__bubble {
  position: relative;
  display: grid;
  width: 56px;
  height: 56px;
  margin: 0;
  padding: 3px;
  place-items: center;
  overflow: visible;
  cursor: pointer;
  background: linear-gradient(145deg, #12c4d4 0%, #0a9eac 100%);
  border: 0;
  border-radius: 16px;
  box-shadow: 0 8px 22px rgba(10, 80, 90, .35);
  -webkit-tap-highlight-color: transparent;
}

.cs-install-promo__bubble img {
  display: block;
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
  pointer-events: none;
}

.cs-install-promo__badge {
  position: absolute;
  right: -8px;
  bottom: -7px;
  min-width: 38px;
  padding: 3px 6px;
  color: #173f49;
  font-size: 9px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .02em;
  text-align: center;
  text-transform: uppercase;
  background: #fff;
  border: 1px solid rgba(23, 63, 73, .15);
  border-radius: 999px;
  box-shadow: 0 3px 9px rgba(10, 40, 50, .2);
}

.cs-install-promo__bubble:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(10, 80, 90, .4);
}

.cs-install-promo__bubble:focus-visible,
.cs-install-promo__close:focus-visible,
.cs-install-promo__cta:focus-visible,
.cs-install-promo__later:focus-visible {
  outline: 3px solid #ffc950;
  outline-offset: 3px;
}

.cs-install-promo__panel {
  width: min(330px, calc(100vw - 28px));
  overflow: hidden;
  color: #18363d;
  background: #fff;
  border: 1px solid rgba(15, 40, 45, .12);
  border-radius: 16px;
  box-shadow: 0 16px 42px rgba(10, 40, 50, .25);
}

.cs-install-promo__header {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 12px;
  color: #fff;
  background: linear-gradient(135deg, #0a9eb0, #12c4d4);
}

.cs-install-promo__header img {
  width: 26px;
  height: 26px;
  object-fit: cover;
  border-radius: 50%;
}

.cs-install-promo__brand {
  flex: 1;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
}

.cs-install-promo__site-label {
  display: block;
  margin-top: 2px;
  font-size: 10px;
  font-weight: 600;
  opacity: .9;
}

.cs-install-promo__close {
  display: grid;
  width: 36px;
  height: 36px;
  margin: -5px -5px -5px 0;
  padding: 0;
  place-items: center;
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  background: transparent;
  border: 0;
  border-radius: 50%;
}

.cs-install-promo__body {
  padding: 16px;
}

.cs-install-promo__title {
  margin: 0 0 8px;
  color: #173f49;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
}

.cs-install-promo__copy {
  margin: 0 0 15px;
  color: #526a70;
  font-size: 13px;
  line-height: 1.5;
}

.cs-install-promo__cta,
.cs-install-promo__later {
  display: flex;
  width: 100%;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 999px;
}

.cs-install-promo__cta {
  padding: 11px 14px;
  color: #fff !important;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
  text-decoration: none !important;
  background: linear-gradient(180deg, #ffc950, #fa8c34);
  box-shadow: 0 5px 14px rgba(250, 140, 52, .25);
}

.cs-install-promo__cta:hover {
  color: #fff !important;
  text-decoration: none !important;
  background: #fb8e35;
}

.cs-install-promo__later {
  margin-top: 5px;
  padding: 8px 12px;
  color: #087f8c;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  background: transparent;
  border: 0;
}

.cs-install-promo__later:hover {
  background: #eef9fa;
}

.cs-install-promo__permissions {
  margin: 7px 4px 0;
  color: #71858a;
  font-size: 10px;
  line-height: 1.4;
  text-align: center;
}

@media (prefers-reduced-motion: no-preference) {
  .cs-install-promo__bubble {
    animation: cs-install-promo-arrive .32s ease-out both;
    transition: transform .15s ease, box-shadow .15s ease;
  }

  .cs-install-promo__panel {
    animation: cs-install-promo-open .18s ease-out both;
  }
}

@keyframes cs-install-promo-arrive {
  from { opacity: 0; transform: translateY(-8px) scale(.92); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes cs-install-promo-open {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 767px) {
  #cs-extension-promo {
    display: none !important;
  }
}
