/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 15 2026 | 05:21:43 */
/* =========================================================
   VENTARI GLOBAL
   SCROLL PROGRESS / BACK-TO-TOP BUTTON
   ========================================================= */

.ventari-page-top {
  --ventari-page-top-size: 54px;

  position: fixed;
  right: clamp(18px, 2.2vw, 34px);
  bottom: clamp(18px, 2.2vw, 34px);
  z-index: 2147483647;

  display: grid;
  place-items: center;

  width: var(--ventari-page-top-size);
  height: var(--ventari-page-top-size);
  min-width: var(--ventari-page-top-size);
  min-height: var(--ventari-page-top-size);

  margin: 0;
  padding: 0;

  appearance: none;
  -webkit-appearance: none;

  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;

  background:
    radial-gradient(
      circle at 32% 22%,
      rgba(255, 255, 255, 0.15),
      transparent 39%
    ),
    linear-gradient(
      145deg,
      rgba(30, 57, 82, 0.88),
      rgba(7, 24, 39, 0.82)
    );

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.13);

  -webkit-backdrop-filter: blur(16px) saturate(145%);
  backdrop-filter: blur(16px) saturate(145%);

  cursor: pointer;
  touch-action: manipulation;
  overflow: hidden;
  isolation: isolate;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transform: translateY(10px) scale(0.96);

  transition:
    opacity 280ms ease,
    visibility 280ms ease,
    transform 280ms ease,
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}

/* Visible after the visitor scrolls down */
.ventari-page-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;

  transform: translateY(0) scale(1);
}

/* Keep the JavaScript-generated button above theme overlays */
body > .ventari-page-top {
  position: fixed !important;
  z-index: 2147483647 !important;
}

body > .ventari-page-top.is-visible {
  pointer-events: auto !important;
}

/* =========================================================
   PROGRESS RING
   ========================================================= */

.ventari-page-top__progress {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  overflow: visible;
  pointer-events: none !important;

  transform: rotate(-90deg);
  transform-origin: center;
}

.ventari-page-top__track,
.ventari-page-top__indicator {
  fill: none;
  stroke-width: 1.75;
}

.ventari-page-top__track {
  stroke: rgba(255, 255, 255, 0.13);
}

.ventari-page-top__indicator {
  fill: none;
  stroke: #d89b2b;
  stroke-linecap: round;

  /*
   * These are the starting values.
   * JavaScript updates them with numeric values while scrolling.
   */
  stroke-dasharray: 144.513;
  stroke-dashoffset: 144.513;

  transition: stroke-dashoffset 70ms linear;
}

/* =========================================================
   FONT AWESOME CHEVRON
   ========================================================= */

.ventari-page-top__arrow {
  position: relative;
  z-index: 2;

  display: block;

  margin: 0;
  padding: 0;

  color: rgba(255, 255, 255, 0.96);
  font-size: 15px;
  line-height: 1;

  pointer-events: none !important;

  transform: translateY(-1px);

  transition:
    color 220ms ease,
    transform 220ms ease;
}

/* =========================================================
   HOVER
   ========================================================= */

@media (hover: hover) and (pointer: fine) {
  .ventari-page-top:hover {
    border-color: rgba(216, 155, 43, 0.58);

    background:
      radial-gradient(
        circle at 32% 22%,
        rgba(255, 255, 255, 0.18),
        transparent 40%
      ),
      linear-gradient(
        145deg,
        rgba(36, 67, 96, 0.94),
        rgba(7, 24, 39, 0.88)
      );

    box-shadow:
      0 0 0 1px rgba(216, 155, 43, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.15);

    transform: translateY(-2px) scale(1);
  }

  .ventari-page-top:hover .ventari-page-top__arrow {
    color: #d89b2b;
    transform: translateY(-3px);
  }
}

/* =========================================================
   CLICK / ACTIVE
   ========================================================= */

.ventari-page-top:active {
  transform: translateY(0) scale(0.97);
}

.ventari-page-top:active .ventari-page-top__arrow {
  color: #f3c96b;
  transform: translateY(-1px);
}

/* =========================================================
   KEYBOARD FOCUS
   ========================================================= */

.ventari-page-top:focus:not(:focus-visible) {
  outline: none;
}

.ventari-page-top:focus-visible {
  outline: 2px solid #d89b2b;
  outline-offset: 4px;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1024px) {
  .ventari-page-top {
    --ventari-page-top-size: 52px;

    right: 22px;
    bottom: 22px;
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {
  .ventari-page-top {
    --ventari-page-top-size: 48px;

    right: 16px;
    bottom: 16px;
  }

  .ventari-page-top__arrow {
    font-size: 14px;
  }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  .ventari-page-top,
  .ventari-page-top__indicator,
  .ventari-page-top__arrow {
    transition-duration: 0.01ms;
  }
}