@keyframes vanRemoveAdFadeIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mv-ad-box,
.van-taboola-ad-wrap {
  position: relative;
}

.mv-ad-box[data-van-remove-ad],
.van-taboola-ad-wrap[data-van-remove-ad] {
  padding-top: 18px;
}

.mv-ad-box > .van-remove-ad-badge,
.van-taboola-ad-wrap > .van-remove-ad-badge {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  width: auto;
  margin: 15px;
  animation: vanRemoveAdFadeIn 0.35s ease-out;
}

.van-remove-ad-pill {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 10px 10px;
  border-radius: 3px;
  border: none;
  background: #008000;
  color: #fff;
  font: 700 9px/1 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.15s;
}

.van-remove-ad-pill:hover,
.van-remove-ad-pill:focus-visible {
  background: #006600;
  color: #fff;
  outline: none;
}
