.not-included .tp-demo-thumb::after{
  opacity: 1;
  visibility: visible;
}

.not-included-badge {
	position: absolute;
	right: 15px;
	bottom: 15px;
	z-index: 6;
	display: inline-flex;
	align-items: center;
	gap: 7px;
	background-color: #fcd8d8;
	color: #ae3f3f;
	border-radius: 6px;
	padding: 7px 10px;
	font-size: 13px;
	line-height: 18px;
	font-weight: 600;
	box-shadow: 0 8px 20px rgba(174, 63, 63, 0.14);
	pointer-events: auto;
}


.tf-notice-root {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 2147483000;
  width: 460px;
  max-width: calc(100vw - 48px);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  box-sizing: border-box;
}

.tf-notice-root,
.tf-notice-root * {
  box-sizing: border-box;
}

/* Card shell ------------------------------------------------------------- */

.tf-notice-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 36px rgba(19, 29, 62, 0.14), 0 2px 8px rgba(19, 29, 62, 0.06);
  animation: tf-card-in 0.3s ease;
}

@keyframes tf-card-in {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tf-notice-stage {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  transition: height 0.42s cubic-bezier(0.65, 0, 0.35, 1);
}

.tf-notice-panel,
.tf-notice-pill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: opacity 0.28s ease, transform 0.32s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: opacity, transform;
}

.tf-notice-panel {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.tf-notice-pill {
  opacity: 0;
  transform: translateY(-6px) scale(0.98);
  pointer-events: none;
}

.tf-notice-stage.is-collapsed .tf-notice-panel {
  opacity: 0;
  transform: translateY(6px) scale(0.98);
  pointer-events: none;
}

.tf-notice-stage.is-collapsed .tf-notice-pill {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* Shared round icon button (close / chevron) ------------------------------ */

.tf-icon-btn {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f1f3f7;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7c8598;
  cursor: pointer;
  padding: 0;
  transition: background 0.15s ease, transform 0.15s ease;
}

.tf-icon-btn:hover {
  background: #e7eaf1;
}

.tf-icon-btn:active {
  transform: scale(0.9);
}

.tf-icon-btn svg {
  width: 13px;
  height: 13px;
  display: block;
  transition: transform 0.32s cubic-bezier(0.65, 0, 0.35, 1);
}

.tf-icon-btn--static {
  cursor: inherit;
}

.tf-notice-stage:not(.is-collapsed) [data-tf-chevron] svg {
  transform: rotate(180deg);
}

/* Expanded panel ----------------------------------------------------------- */

.tf-notice-panel {
  padding: 26px 26px 24px;
}

.tf-notice-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.tf-notice-title {
  margin: 0;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 800;
  color: #182449;
  font-family: var(--tp-ff-p);
}

.tf-notice-body {
  margin: 0 0 18px;
  font-size: 14.5px;
  line-height: 1.6;
  color: #5b6478;
}

.tf-notice-body strong {
  color: #182449;
  font-weight: 700;
}

/* Pink callout box ---------------------------------------------------------- */

.tf-notice-callout {
  background: #fdedef;
  border-radius: 12px;
  padding: 18px 20px;
}

.tf-callout-heading {
  margin: 0 0 14px;
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.4;
  color: #182449;
}

.tf-envato {
  color: #82b541;
  font-weight: 800;
}

.tf-notice-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tf-notice-list li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  line-height: 1.3;
  color: #3b4256;
}

.tf-x-icon {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #f8c6cc;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tf-x-icon svg {
  width: 9px;
  height: 9px;
  display: block;
}

/* Info icon + tooltip -------------------------------------------------------- */

.tf-info-wrap {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  margin-left: 2px;
}

.tf-info-icon {
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1.5px solid #b7bfcf;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  color: #8f97a8;
  padding: 0;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.tf-info-icon:hover,
.tf-info-icon:focus-visible {
  background: #eef0f4;
  border-color: #8f97a8;
  color: #5b6478;
  outline: none;
}

.tf-tooltip {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  width: max-content;
  max-width: 230px;
  background: #1c2033;
  color: #ffffff;
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.55;
  text-align: center;
  padding: 12px 16px;
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(15, 20, 40, 0.28);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 5;
}

.tf-tooltip-arrow {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background: #1c2033;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}

.tf-info-wrap:hover .tf-tooltip,
.tf-info-icon:focus-visible + .tf-tooltip,
.tf-tooltip.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
@media (max-width: 480px) {
  .tf-tooltip {
    left: auto;
    right: -8px;
    transform: translateY(4px);
    max-width: 200px;
  }

  .tf-tooltip.is-visible,
  .tf-info-wrap:hover .tf-tooltip,
  .tf-info-icon:focus-visible + .tf-tooltip {
    transform: translateY(0);
  }

  .tf-tooltip-arrow {
    left: auto;
    right: 14px;
    transform: none;
  }
}

/* Collapsed pill ------------------------------------------------------------- */

.tf-notice-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  padding: 16px 16px 16px 22px;
  background: #ffffff;
  border: none;
  cursor: pointer;
  text-align: left;
  font: inherit;
}

.tf-pill-title {
  font-size: 15px;
  font-weight: 700;
  color: #182449;
  line-height: 1.3;
}

/* Responsive ------------------------------------------------------------------ */

@media (max-width: 480px) {
  .tf-notice-root {
    top: 12px;
    left: 12px;
    width: calc(100vw - 24px);
  }

  .tf-notice-panel {
    padding: 20px 18px;
  }

  .tf-notice-title {
    font-size: 17px;
  }
}

/* Respect reduced-motion preferences ------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  .tf-notice-card,
  .tf-notice-stage,
  .tf-notice-panel,
  .tf-notice-pill,
  .tf-icon-btn svg,
  .tf-tooltip {
    animation: none !important;
    transition: none !important;
  }
}

.tp-demo-btn-wrap {
  z-index: 8;
}

.notice-alert {
  padding: 10px 15px;
  border-radius: 6px;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
}

.notice-alert-success {
  background-color: #e6f4ea;
  color: #2e7d32;
}