.las-creator-nudge {
  position: fixed;
  z-index: 2147483000;
  width: min(292px, calc(100vw - 28px));
  padding: 14px 42px 14px 16px;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(16, 16, 18, 0.96);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.48);
  color: #fff;
  font-family: Roboto, "Open Sans", Arial, sans-serif;
  letter-spacing: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.las-creator-nudge.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.las-creator-nudge__title {
  margin: 0 0 5px;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 700;
}

.las-creator-nudge__body {
  margin: 0;
  font-size: 13px;
  line-height: 1.42;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
}

.las-creator-nudge__close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  line-height: 28px;
  text-align: center;
  font-family: Arial, sans-serif;
}

.las-creator-nudge__close:hover,
.las-creator-nudge__close:focus {
  background: rgba(255, 255, 255, 0.18);
  outline: none;
}

.las-creator-nudge::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  background: rgba(16, 16, 18, 0.96);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transform: rotate(45deg);
}

.las-creator-nudge[data-placement="right"]::after {
  left: -8px;
  top: 50%;
  margin-top: -7px;
}

.las-creator-nudge[data-placement="left"]::after {
  right: -8px;
  top: 50%;
  margin-top: -7px;
  transform: rotate(225deg);
}

.las-creator-nudge[data-placement="bottom"]::after {
  top: -8px;
  right: 22px;
  transform: rotate(135deg);
}

.las-creator-nudge[data-placement="top"]::after {
  bottom: -8px;
  right: 22px;
  transform: rotate(-45deg);
}

@media (max-width: 840px) {
  .las-creator-nudge {
    width: min(274px, calc(100vw - 24px));
    padding: 13px 40px 13px 14px;
  }

  .las-creator-nudge__title {
    font-size: 14px;
  }

  .las-creator-nudge__body {
    font-size: 12px;
  }
}
