@import url('../../root/root.css');


  .lock-scroll {
    overflow: hidden;
  }
  
  .toggle-container {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 1000;
  }
  
  .toggle-switch {
    position: relative;
    width: 5rem;
    height: 2.5rem;
    background-color: var(--duck-charcoal);
    border-radius: 5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: none !important;
  }
  
  .toggle-switch::before {
    content: '';
    position: absolute;
    top: 0.3rem;
    left: 0.3rem;
    width: 1.9rem;
    height: 1.9rem;
    background-color: var(--duck-white);
    border-radius: 50%;
    transition: transform 0.3s ease;
    box-shadow: 0 0.2rem 0.4rem rgba(0, 0, 0, 0.2);
  }
  
  .toggle-switch.active {
    background-color: var(--duck-pink);
  }
  
  .toggle-switch.active::before {
    transform: translateX(2.5rem);
  }
  
  .toggle-label {
    font-family: var(--font-main);
    font-size: 1.6rem;
    color: var(--text-charcoal);
        display: none !important;

  }
  
  .content {
    height: 200rem;
    padding: 2rem;
  }

  #scroll-toggle:hover .custom-tooltip {
  opacity: 1;
  pointer-events: auto;
}
  

/* <!----------------------------------------------------------> */
/* <!-- LOCK SCROLL MODAL --> */
/* <!----------------------------------------------------------> */
.lockscroll-modal {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  z-index: 20000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(43,45,66,0.11);
  transition: background 0.23s;
    display: none !important;
}

.lockscroll-modal-inner {
  background: var(--duck-charcoal);
  border-radius: 2.2rem;
  box-shadow:
    0 0 2.5rem 0.8rem var(--duck-yellow), 
    0 0.8rem 2.2rem rgba(44,62,80,0.14);  padding: 2.5rem 3rem 2rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 280px;
  max-width: 98vw;
}

.lockscroll-modal-logo {
  font-size: 6.5rem;
  color: var(--duck-yellow);
  margin-bottom: 1.2rem;
  display: block;
  text-align: center;
}


.lockscroll-modal-text {
  color: var(--duck-white);
  font-size: 2rem;
  margin-bottom: 2.2rem;
  text-align: center;
  font-family: var(--font-main);
  line-height: 1.4;
}

.lockscroll-modal-dismiss {
  background: var(--duck-yellow);
  color: var(--duck-charcoal);
  border: none;
  border-radius: 1.3rem;
  padding: 0.8rem 2.2rem;
  font-size: 1.7rem;
  font-family: var(--font-main);
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 0.3rem 1rem rgba(0,0,0,0.11);
  transition: background 0.18s;
}
/* 
@keyframes wiggle {
  0%   { transform: rotate(0deg); }
  15%  { transform: rotate(-12deg); }
  30%  { transform: rotate(12deg); }
  45%  { transform: rotate(-8deg); }
  60%  { transform: rotate(8deg); }
  75%  { transform: rotate(-4deg); }
  100% { transform: rotate(0deg); }
}

.lockscroll-wiggle {
  animation: wiggle 0.7s cubic-bezier(.36,.07,.19,.97) infinite;
  box-shadow: 0 0 2.5rem 0.5rem var(--duck-yellow), 0 0.4rem 1rem rgba(0,0,0,0.18);
} */




  
/* TABLET SIZE 480 -1023 */
/* ---------------------------------------------------------------------------- */
@media (min-width: 480px) and (max-width: 1023px) {

  .toggle-container {
      display: none !important;
  }

}
  
/* MOBILE SIZE 479 */
/* ---------------------------------------------------------------------------- */
@media (max-width: 479px) {
  .toggle-container {
      display: none !important;
  }
}