.bonus-verified-badge {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border: 1px solid #b7e6c5;
  border-radius: 999px;
  background: #e7f7ec;
  color: #12833a;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  transition: background-color .15s ease, border-color .15s ease;
  -webkit-tap-highlight-color: transparent;
}

.bonus-verified-badge:hover,
.bonus-verified-badge:focus-visible {
  background: #d6f0df;
  border-color: #9adcae;
}

.bonus-verified-badge:focus-visible {
  outline: 2px solid #12833a;
  outline-offset: 2px;
}

.bonus-verified-badge__check {
  flex: 0 0 auto;
  color: #16a34a;
}

.bonus-verified-badge__label {
  white-space: nowrap;
}

.single-bonus__meta-card-content .bonus-verified-badge {
  margin: 4px 0 14px;
}

.bonus-verified-popover[hidden],
.bonus-verified-sheet-backdrop[hidden] {
  display: none;
}

.bonus-verified-popover {
  position: fixed;
  z-index: 10000;
  width: 260px;
  max-width: calc(100vw - 16px);
  padding: 14px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .16);
}

.bonus-verified-popover::before {
  content: "";
  position: absolute;
  left: var(--arrow-x, 50%);
  width: 12px;
  height: 12px;
  background: #fff;
  transform: translateX(-50%) rotate(45deg);
}

.bonus-verified-popover[data-placement="top"]::before {
  bottom: -6px;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, .06);
}

.bonus-verified-popover[data-placement="bottom"]::before {
  top: -6px;
  box-shadow: -3px -3px 6px rgba(0, 0, 0, .06);
}

.bonus-verified-popover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 12px;
}

.bonus-verified-popover[data-placement="top"]::after {
  bottom: -12px;
}

.bonus-verified-popover[data-placement="bottom"]::after {
  top: -12px;
}

.bonus-verified-popover__head {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 15px;
  color: #1a1a1a;
}

.bonus-verified-popover__head-check {
  color: #16a34a;
}

.bonus-verified-popover__author,
.bonus-verified-sheet__author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bonus-verified-popover__avatar,
.bonus-verified-sheet__avatar {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
  background: #eef0f4;
  font-weight: 700;
  color: #6b7280;
}

.bonus-verified-sheet__avatar {
  width: 48px;
  height: 48px;
}

.bonus-verified-popover__avatar img,
.bonus-verified-sheet__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bonus-verified-popover__meta,
.bonus-verified-sheet__meta {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.bonus-verified-popover__name,
.bonus-verified-sheet__name {
  font-weight: 600;
  font-size: 14px;
  color: #1a1a1a;
}

a.bonus-verified-popover__name,
a.bonus-verified-sheet__name {
  text-decoration: none;
}

a.bonus-verified-popover__name:hover,
a.bonus-verified-sheet__name:hover {
  text-decoration: underline;
}

.bonus-verified-sheet__name {
  font-size: 17px;
}

.bonus-verified-popover__position,
.bonus-verified-sheet__position {
  font-size: 12px;
  color: #6b7280;
}

.bonus-verified-sheet__position {
  font-size: 14px;
}

.bonus-verified-sheet-backdrop {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: flex-end;
  background: rgba(0, 0, 0, .5);
  opacity: 0;
  transition: opacity .25s ease;
}

.bonus-verified-sheet-backdrop.is-open {
  opacity: 1;
}

.bonus-verified-sheet {
  width: 100%;
  padding: 10px 20px calc(20px + env(safe-area-inset-bottom));
  background: #fff;
  border-radius: 20px 20px 0 0;
  transform: translateY(100%);
  transition: transform .28s ease;
}

.bonus-verified-sheet-backdrop.is-open .bonus-verified-sheet {
  transform: translateY(0);
}

.bonus-verified-sheet__handle {
  width: 40px;
  height: 4px;
  margin: 0 auto 16px;
  border-radius: 2px;
  background: #d1d5db;
}

.bonus-verified-sheet__confirm {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 18px 0;
  font-size: 15px;
  color: #1a1a1a;
}

.bonus-verified-sheet__confirm-check {
  flex: 0 0 auto;
  color: #16a34a;
}

.bonus-verified-sheet__ok {
  width: 100%;
}

body.bonus-verified-scroll-lock {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {

  .bonus-verified-sheet-backdrop,
  .bonus-verified-sheet {
    transition: none;
  }
}
