body {
  padding: 0;
  margin: 0;
}

.view-desktop {
  display: block;
}

.view-mobile {
  display: none;
}

.cny-container {
  position: relative;
  width: 100%;
}

.cny-img {
  display: block;
  width: 100%;
  height: auto;
}

.animate-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease-in-out;
  pointer-events: none;
  z-index: 1;
}

.cny-map {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.animate-video.active {
  opacity: 1;
  visibility: visible;
}

.trigger-hotspot {
  fill: transparent;
  cursor: pointer;
  pointer-events: all;
}

.control-music {
  position: absolute;
  z-index: 1000;
  right: 0;
  border: none;
  border-radius: 20px !important;
  width: 35px;
  height: 35px;
  margin: 5px !important;
  background-color: var(--theme-ui-colors-light-theme);
}

.cny-tooltip {
  position: absolute;
  padding: 8px 12px;
  background: var(--theme-ui-colors-secondary);
  color: var(--theme-ui-colors-white);
  border-radius: 4px;
  font-size: 1em;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
  z-index: 2;
  white-space: nowrap;
}

.cny-tooltip.show {
  opacity: 1;
}

/* The group containing both box and text */
.label-text {
  fill: #000000;
  font-weight: bold;
  text-anchor: middle;
  font-size: 1.1rem;
}

.mobile-font {
  font-size: 1.5rem; /* Smaller font for mobile screens */
}

.hotspot-intro-group {
  opacity: 1;
  animation: fadeOutLabels 1s forwards 2s;
}

@keyframes fadeOutLabels {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

.cny-stickers,
.cny-shortcuts {
  height: 100%;
  min-height: 30vh;
  padding: 20px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.deco {
  position: absolute;
  top: 0;
  width: auto;
  height: 100%;
}

.deco-left {
  left: 0;
}

.deco-right {
  right: 0;
}

.cny-stickers {
  background-color: #fff2d1;
  background-image: url("../img/stickers-bg-pattern.webp");
}

.download-stickers {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 100;
}

.download-stickers h4 {
  margin-bottom: 30px;
}

.stickers,
.socials {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.stickers {
  padding-bottom: 20px;
}

.stickers-mobile {
  display: flex;
}

.sticker-animate img {
  width: 80px;
  max-width: 100%;
}

.socials img {
  width: 30px;
}

.cny-shortcuts {
  background-color: #fff0f0;
  background-image: url("../img/shortcuts-bg.webp");
}

.shortcuts-title {
  display: flex;
  justify-content: center;
  align-items: center;
}

.festive-plants {
  position: relative;
  display: inline-block;
  text-align: center;
  color: white;
  font-weight: 800;
}

.plants-bg {
  display: block;
  width: 100%;
  height: auto;
}

.section {
  position: absolute;
  top: 45%;
  left: 45%;
  transform: translate(-45%, -45%);
}

.material-icons {
  line-height: 1.3 !important;
}

/* videos podcasts */
.cny-playlists {gap:1em; background: aliceblue; padding: 2em;}
  #jumbotron-video.sph-video-widget .slick-slide cite.vjs-playlist-name {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  div#jumbotron-video.sph-video-widget{margin-bottom: 0 !important;}
  .cny-podcasts {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    flex-grow: 1;
    display:flex;
  }
  .responsive-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }
  #videos.display-panel {
    display:flex;
    align-items: flex-start;
  }

@media (max-width: 768px) {
  .view-desktop {
    display: none;
  }

  .view-mobile {
    display: block;
  }

  .label-text {
    font-size: 1em;
  }

  /* videos podcasts */
  #videos.display-panel {
    flex-wrap: wrap;
    align-items: stretch;
  }
  .cny-podcasts {
    width: 100%;
    height: 80vh; 
    min-height: 500px;
    margin-top: 20px;
  }
  .responsive-iframe {
    width: 100%;
    height: 100% !important;
  }
}
