



/* KSTEI TOGGLE AND HOME PAGE STYLES */

#stickyToggle #sticky-audio-bar {
  position: fixed;
  top: 200px;
  right: 0;
  width: 320px;
  xbackground: linear-gradient(to right, #f3c811, #232323);
  xbackground: #111;
  background: linear-gradient(to bottom, #151320, #151320);
  color: #fff;
  z-index: 99999;
  xborder-radius: 10px 0 0 10px;
  box-shadow: -2px 2px 12px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
  font-family: Gloock;
  letter-spacing: 1px;
}

#stickyToggle #sticky-audio-bar.collapsed {
  transform: translateX(270px);
}


#stickyToggle .audio-toggle {
  position: absolute;
  top: 0;
  left: -60px;
  width: 60px;
  height: 100%;
  background: linear-gradient(to bottom, #f3c811, #ff3360);
  color: #151320;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 8px;
  border-radius: 10px 0 0 10px;
  font-size: 17px;
}

#stickyToggle .audio-content {
  padding: 15px;
}

#stickyToggle .manual-controls {
  margin-top: 10px;
  text-align: left;
}

#stickyToggle .manual-controls button {
  background: #444;
  color: white;
  border: none;
  padding: 8px 14px;
  margin: 5px;
  border-radius: 5px;
  cursor: pointer;
  xfont-family: "DM Sans";
}

#stickyToggle .manual-controls button:hover {
  background: #666;
}

#stickyToggle .iframe-wrapper {
  height: 200px;
  overflow: hidden;
  width: 100%;
}

#stickyToggle .live-label {
  writing-mode: vertical-rl;
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 12px;
}

#stickyToggle #audio-toggle-text {
  writing-mode: vertical-rl;
  transform: rotate(0deg);
  margin: 10vh 0 5px;
  font-family: "DM Sans";
  font-size: 15px;
  font-weight: 800;
}

#stickyToggle .caret-icon {
  writing-mode: vertical-rl;
  transform: rotate(0deg);
  font-size: 20px;
  margin-left: -10px;
}

/* Adjust sound bar positioning */

#stickyToggle .sound-bars {
  display: flex;
  gap: 3px;
  height: 26px;
  margin-left: 5px;
  writing-mode: rl;
  transform: rotate(-180deg);
}

#stickyToggle .sound-bars span {
  width: 4px;
  background: #ff3360;
  animation: bounce 1s infinite ease-in-out;
  animation-play-state: paused;
  transform: rotate(0deg);
  xwriting-mode: vertical-rl;
}

#stickyToggle .sound-bars span:nth-child(1) {
  animation-delay: 0s;
  xbackground: red;
  xheight: 100%;
}
#stickyToggle .sound-bars span:nth-child(2) {
  animation-delay: 0.2s;
  xbackground: blue;
  height: 50%;
}
#stickyToggle .sound-bars span:nth-child(3) {
  animation-delay: 0.4s;
  xbackground: green;
  height: 60%;
}











@keyframes bounce {
  0%, 100% {
    height: 3px;
  }
  50% {
    height: 16px;
  }
}


/* Match the sticky audio bar button style */
.playBtn {
	background: #ff3360 !important;
    color: #fff !important;
    border: none;
    padding: 8px 14px;
    border-radius: 5px;
    font-family: "DM Sans", sans-serif;
    font-size: 16px !important;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.3s ease, color 0.3s ease;
    text-transform: none;
}

/* Hover effects to match sticky button */
.playBtn:hover {
  background: #666 !important;
  color: #fff !important;
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.16);
    -ms-transform: translateY(-3px);
    transform: translateY(-3px);
    -webkit-transform: translateY(-3px);
}

/* Optional: Add play icon spacing (for dynamic icon inside HTML) */
.playBtn i {
  margin-left: 8px;
}


.playBtn.dark {
	background: #333 !important;
}


nav li.playBtnMenu div {
    background: #ff3360 !important;
    color: #fff !important;
    border: none;
    padding: 20px 24px;
    border-radius: 200px !important;
    -webkit-border-radius: 200px !important;
    font-family: "DM Sans", sans-serif;
    font-size: 22px !important;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex !important
;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.3s ease, color 0.3s ease;
    text-transform: none;
}

nav li.playBtnMenu div:hover {
  background: #666 !important;
  color: #fff !important;
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.16);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
}

/* Optional: Add play icon spacing (for dynamic icon inside HTML) */
.playBtnMenu div i {
  margin-left: 8px;
}




#stickyToggle #sticky-audio-bar .sticky-inner {
  xbackground: linear-gradient(to bottom, #f3c811, #ff3360);
  background: linear-gradient(to bottom, #151320, #151320);
}



@keyframes horizontal-bump {
  0% { transform: translateX(0); }
  20% { transform: translateX(-6px); }
  40% { transform: translateX(6px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(4px); }
  100% { transform: translateX(0); }
}

.sticky-inner.bump {
  animation: horizontal-bump 1s ease;
}



/* STATIC TOGGLE STYLES */


#staticToggle #sticky-audio-bar {
  xposition: fixed;
  xtop: 200px;
  xright: 0;
  width: 330px;
  xbackground: linear-gradient(to right, #f3c811, #232323);
  xbackground: #111;
  background: linear-gradient(to bottom, #151320, #151320);
  color: #fff;
  z-index: 99999;
  xborder-radius: 10px 0 0 10px;
  box-shadow: -2px 2px 12px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
  font-family: Gloock;
  letter-spacing: 1px;
}

#staticToggle #sticky-audio-bar {
  transform: translateX(60px);
}

#staticToggle #sticky-audio-bar {
    transform: translateX(0px);
}

#staticToggle #sticky-audio-bar.collapsed {
    transform: translateX(0px);
}


#staticToggle .audio-toggle {
  xposition: absolute;
  xtop: 0;
  xleft: -60px;
  xwidth: 60px;
  height: 60px;
  background: linear-gradient(to right, #f3c811, #ff3360);
  color: #151320;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: left;
  justify-content: flex-start;
  padding-top: 14px;
  border-radius: 10px 10px 0 0;
  font-size: 17px;
}

#staticToggle .audio-content {
  padding: 15px;
}

#staticToggle .manual-controls {
  margin-top: 10px;
  text-align: left;
}

#staticToggle .manual-controls button {
  background: #444;
  color: white;
  border: none;
  padding: 8px 14px;
  margin: 5px;
  border-radius: 5px;
  cursor: pointer;
  xfont-family: "DM Sans";
}

#staticToggle .manual-controls button:hover {
  background: #666;
}

#staticToggle .iframe-wrapper {
  height: 500px;
  overflow: hidden;
  width: 100%;
}

#staticToggle .live-label {
  xwriting-mode: vertical-rl;
  font-size: 20px;
  display: flex;
  align-items: left;
  gap: 5px;
  margin-left: 12px;
}

#staticToggle #audio-toggle-text {
  display: none;
}

#staticToggle .caret-icon {
  display: none;
}

/* Adjust sound bar positioning */
#staticToggle .sound-bars {
  display: flex;
  gap: 3px;
  height: 26px;
  margin-left: 5px;
  xwriting-mode: vertical-rl;
  transform: rotate(-180deg);
}

#staticToggle .sound-bars span {
  width: 4px;
  background: #ff3360;
  animation: bounce 1s infinite ease-in-out;
  animation-play-state: paused;
  transform: rotate(0deg);
  xwriting-mode: vertical-rl;
}

#staticToggle .sound-bars span:nth-child(1) {
  animation-delay: 0s;
  xbackground: red;
  xheight: 100%;
}
#staticToggle .sound-bars span:nth-child(2) {
  animation-delay: 0.2s;
  xbackground: blue;
  height: 50%;
}
#staticToggle .sound-bars span:nth-child(3) {
  animation-delay: 0.4s;
  xbackground: green;
  height: 60%;
}



#staticToggle #sticky-audio-bar .sticky-inner {
  xbackground: linear-gradient(to bottom, #f3c811, #ff3360);
  background: linear-gradient(to bottom, #151320, #151320);
}


@media (max-width: 1000px) {
	#stickyToggle {
		display:none;
	}
 }


 
 
 
 
 
 
/* hopmepage styles */


.dancer-container {
      position: relative;
      /* Position bottom-left of image at 80% down and 15% from right */
      left: calc(85vw - -50%%); /* 15% from right */
      left: 62vw; /* 15% from right */
      top: 4vh;
      transform: translateY(-14%); /* Shift container up so bottom aligns */
     width: 190px; /* Scaled to fit */
      pointer-events: none;
    }

    .dancer-image {
      width: 100%;
      display: block;
      will-change: transform;
    }




 
 
@media only screen and (max-width: 999px) {
    .using-mobile-browser .wpb_row.vc_row-o-full-height.top-level, .using-mobile-browser .wpb_row.vc_row-o-full-height.top-level > .col.span_12, [data-permanent-transparent="1"].using-mobile-browser .wpb_row.vc_row-o-full-height.top-level, [data-permanent-transparent="1"].using-mobile-browser .wpb_row.vc_row-o-full-height.top-level > .col.span_12 {
        min-height: calc(60vh - 76px);
    }
}

 
@media (max-width: 999px) {
  .wpb_row.vc_row.top-level .nectar-video-bg {
    opacity: 1;
        height: 100%;
        width: 100%;
        object-fit: cover;
        object-position: 38% 0% !important;
}



.dancer-container {
      position: absolute;
      /* Position bottom-left of image at 80% down and 15% from right */
      left: calc(85vw - -50%); /* 15% from right */
      left: 65vw; /* 15% from right */
      top: -2vh;
      transform: translateY(-100%); /* Shift container up so bottom aligns */
     width: 15vh; /* Scaled to fit */
      pointer-events: none;
    }

  
}
 
 
.stickyMenuLoader {
	xdisplay: none !important;
}
 
 



