* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  -ms-content-zooming: none;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}

html, body {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  overflow: hidden;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  background-color: #000;
  /* color: #fff; */
}

a, a:hover, a:active, a:visited {
  text-decoration: none;
  color: inherit;
}

#intro {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0);
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  cursor: pointer;
  opacity: 1;
}

#pano {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

#titleBar {
  position: absolute;
  top: 0;
  left: 0;
  right: 40px;
  height: 40px;
  text-align: center;
}

.mobile #titleBar {
  height: 50px;
  right: 50px;
}

/* If there is a fullscreen button the title bar must make space for it */
body.fullscreen-enabled #titleBar {
  right: 80px;
}

body.fullscreen-enabled.mobile #titleBar {
  right: 100px;
}

/* If there are multiple scenes the title bar must make space for the scene list toggle */
body.multiple-scenes #titleBar {
  left: 40px;
}

body.multiple-scenes.mobile #titleBar {
  left: 50px;
}

#titleBar .sceneName {
  width: 100%;
  height: 100%;
  line-height: 30px;
  padding: 5px;
  background-color: rgb(58,68,84);
  background-color: rgba(58,68,84,0.8);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;

  -moz-user-select: text;
  -webkit-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

.mobile #titleBar .sceneName {
  line-height: 40px;
}

#fullscreenToggle {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  padding: 5px;
  background-color: rgb(103,115,131);
  background-color: rgba(103,115,131,0.8);
}

.mobile #fullscreenToggle {
  width: 50px;
  height: 50px;
}

body.fullscreen-enabled #fullscreenToggle {
  display: block;
}

#fullscreenToggle .icon {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 30px;
  height: 30px;
}

.mobile #fullscreenToggle .icon {
  top: 10px;
  right: 10px;
}

#fullscreenToggle .icon.on {
  display: none;
}

#fullscreenToggle .icon.off {
  display: block;
}

#fullscreenToggle.enabled .icon.on {
  display: block;
}

#fullscreenToggle.enabled .icon.off {
  display: none;
}

#autorotateToggle {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  padding: 5px;
  background-color: rgb(103,115,131);
  background-color: rgba(103,115,131,0.8);
}

.mobile #autorotateToggle {
  width: 50px;
  height: 50px;
}

/* If there is a fullscreen button, autorotate must placed a bit to the left */
body.fullscreen-enabled #autorotateToggle {
  right: 40px;
}

body.fullscreen-enabled.mobile #autorotateToggle {
  right: 50px;
}

#autorotateToggle .icon {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 30px;
  height: 30px;
}

.mobile #autorotateToggle .icon {
  top: 10px;
  right: 10px;
}

#autorotateToggle .icon.on {
  display: none;
}

#autorotateToggle .icon.off {
  display: block;
}

#autorotateToggle.enabled .icon.on {
  display: block;
}

#autorotateToggle.enabled .icon.off {
  display: none;
}

#sceneListToggle {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  padding: 5px;
  background-color: rgb(103,115,131);
  background-color: rgba(103,115,131,0.8);
}

.mobile #sceneListToggle {
  width: 50px;
  height: 50px;
}

#sceneListToggle .text {
  position: absolute;
  top: 5px;
  left: 15px;
  width: 100%;
  line-height: 30px;
}

#sceneListToggle .icon {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 30px;
  height: 30px;
}

.mobile #sceneListToggle .icon {
  top: 10px;
  right: 10px;
}

#sceneListToggle .icon.on {
  display: none;
}

#sceneListToggle .icon.off {
  display: block;
}

#sceneListToggle.enabled .icon.on {
  display: block;
}

#sceneListToggle.enabled .icon.off {
  display: none;
}

#sceneList {
  position: absolute;
  top: 0;
  left: -220px;
  padding-top: 40px;
  width: 220px;
  max-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  margin-left: 0;
  -webkit-transition: margin-left 0.5s ease-in-out;
  transition: margin-left 0.5s ease-in-out;
}

.mobile #sceneList {
  padding-top: 50px;
}

#sceneList .scenes {
  width: 100%;
  background-color: rgb(58,68,84);
  background-color: rgba(58,68,84,0.8);
}

.mobile #sceneList {
  width: 100%;
  height: 100%;
  left: -100%;
}

.mobile #sceneList.enabled {
  margin-left: 100%;
}

.mobile #sceneList .scenes {
  height: 100%;
}

#sceneList.enabled {
  margin-left: 220px;
}

#sceneList .scene {
  display: block;
  width: 100%;
  height: 30px;
}

.mobile #sceneList .scene {
  height: 40px;
}

#sceneList .scene .text {
  width: 100%;
  height: 100%;
  padding: 0 15px;
  line-height: 30px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mobile #sceneList .scene .text {
  line-height: 40px;
}

.no-touch #sceneList .scene:hover {
  background-color: rgb(103,115,131);
  background-color: rgba(103,115,131,0.8);
}

#sceneList .scene.current {
  background-color: rgb(103,115,131);
  background-color: rgba(103,115,131,0.8);
}

/* Hide scene list when only a single scene exists */
body.single-scene #sceneList, body.single-scene #sceneListToggle {
  display: none;
}

/* Link hotspot */

.link-hotspot {
  width: 60px;
  height: 60px;
  margin-left: -30px;
  margin-top: -30px;
  opacity: 0.9;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.turn-off {
  filter: opacity(0.5) drop-shadow(0 0 0 #ff0000);
}

.no-touch .link-hotspot:hover {
  opacity: 1;
}

.mobile .link-hotspot {
  width: 70px;
  height: 70px;
}

.link-hotspot-icon {
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.link-hotspot-tooltip {
  position: absolute;
  left: 100%;
  top: 14px; /* ( 60 - (16 + 2*8) ) / 2 */

  margin-left: 3px;

  font-size: 16px;

  max-width: 300px;

  padding: 8px 10px;

  border-radius: 5px;

  background-color: rgb(58,68,84);
  background-color: rgba(58,68,84,0.8);

  color: #fff;

  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;

  cursor: pointer;

  opacity: 0;

  -ms-transform: translateX(-8px);
  -webkit-transform: translateX(-8px);
  transform: translateX(-8px);

  -webkit-transition: -ms-transform 0.3s,
                      -webkit-transform 0.3s,
                      transform 0.3s,
                      opacity 0.3s;
  transition: -ms-transform 0.3s,
              -webkit-transform 0.3s,
              transform 0.3s,
              opacity 0.3s;
}

.mobile .link-hotspot {
  top: 19px; /* ( 70 - (16 + 2*8) ) / 2 */
}

.no-touch .link-hotspot:hover .link-hotspot-tooltip {
  opacity: 1;
  -ms-transform: translateX(0);
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

/* Prevent tooltip from triggering */
.link-hotspot-tooltip {
  pointer-events: none;
}
.no-touch .link-hotspot:hover .link-hotspot-tooltip {
  pointer-events: all;
}

/* Fallback mode without pointer-events (IE8-10) */
.tooltip-fallback .link-hotspot-tooltip {
  display: none;
}
.no-touch .tooltip-fallback .link-hotspot:hover .link-hotspot-tooltip {
  display: block;
}

/* Info hotspot */

.info-hotspot {
  line-height: 1.2em;
  opacity: 0.9;
  -webkit-transition: opacity 0.2s 0.2s;
  transition: opacity 0.2s 0.2s;
}

.no-touch .info-hotspot:hover {
  opacity: 1;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.info-hotspot.visible {
  opacity: 1;
}

.info-hotspot .info-hotspot-header {
  width: 40px;
  height: 40px;
  border-radius: 20px;
  background-color: rgb(103,115,131);
  cursor: pointer;
  -webkit-transition: width 0.3s ease-in-out 0.5s,
                      border-radius 0.3s ease-in-out 0.5s;
  transition: width 0.3s ease-in-out 0.5s,
              border-radius 0.3s ease-in-out 0.5s;
}

.mobile .info-hotspot .info-hotspot-header {
  width: 50px;
  height: 50px;
  border-radius: 25px;
}

.desktop.no-touch .info-hotspot .info-hotspot-header:hover {
  width: 260px;
  border-radius: 5px;
  -webkit-transition: width 0.3s ease-in-out,
                      border-radius 0.3s ease-in-out;
  transition: width 0.3s ease-in-out,
              border-radius 0.3s ease-in-out;
}

.desktop .info-hotspot.visible .info-hotspot-header,
.desktop.no-touch .info-hotspot.visible .info-hotspot-header:hover {
  width: 260px;
  border-radius: 5px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  -webkit-transition: width 0.3s ease-in-out,
                      border-radius 0.3s ease-in-out;
  transition: width 0.3s ease-in-out,
              border-radius 0.3s ease-in-out;
}

.info-hotspot .info-hotspot-icon-wrapper {
  width: 40px;
  height: 40px;
}

.mobile .info-hotspot .info-hotspot-icon-wrapper {
  width: 50px;
  height: 50px;
}

.info-hotspot .info-hotspot-icon {
  width: 90%;
  height: 90%;
  margin: 5%;
}

.info-hotspot .info-hotspot-title-wrapper {
  position: absolute;
  left: 40px;
  top: 0;
  width: 0;
  height: 40px;
  padding: 0;
  overflow: hidden;
  -webkit-transition: width 0s 0.4s,
                      padding 0s 0.4s;
  transition: width 0s 0.4s,
              padding 0s 0.4s;
}

.desktop .info-hotspot.visible .info-hotspot-title-wrapper,
.desktop.no-touch .info-hotspot .info-hotspot-header:hover .info-hotspot-title-wrapper {
  width: 220px;
  padding: 0 5px;
  -webkit-transition: width 0s 0.4s,
                      padding 0s 0.4s;
  transition: width 0s 0.4s,
              padding 0s 0.4s;
}

.info-hotspot .info-hotspot-title-wrapper:before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}

.info-hotspot .info-hotspot-title {
  display: inline-block;
  vertical-align: middle;

  -moz-user-select: text;
  -webkit-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

.info-hotspot .info-hotspot-close-wrapper {
  position: absolute;
  left: 260px;
  top: 0;
  height: 40px;
  width: 40px;
  border-top-right-radius: 5px;
  background-color: rgb(78,88,104);
  visibility: hidden;
  -ms-transform: perspective(200px) rotateY(90deg);
  -webkit-transform: perspective(200px) rotateY(90deg);
  transform: perspective(200px) rotateY(90deg);
  -ms-transform-origin: 0 50% 0;
  -webkit-transform-origin: 0 50% 0;
  transform-origin: 0 50% 0;
  -webkit-transition: -ms-transform 0.3s 0.3s,
                      -webkit-transform 0.3s 0.3s,
                      transform 0.3s 0.3s,
                      visibility 0s 0.6s;
  transition: -ms-transform 0.3s 0.3s,
              -webkit-transform 0.3s 0.3s,
              transform 0.3s 0.3s,
              visibility 0s 0.6s;
}

.desktop .info-hotspot.visible .info-hotspot-close-wrapper {
  visibility: visible;
  -ms-transform: perspective(200px) rotateY(0deg);
  -webkit-transform: perspective(200px) rotateY(0deg);
  transform: perspective(200px) rotateY(0deg);
  -webkit-transition: -ms-transform 0.3s,
                      -webkit-transform 0.3s,
                      transform 0.3s,
                      visibility 0s 0s;
  transition: -ms-transform 0.3s,
              -webkit-transform 0.3s,
              transform 0.3s,
              visibility 0s 0s;
}

.info-hotspot .info-hotspot-close-icon {
  width: 70%;
  height: 70%;
  margin: 15%;
}

.info-hotspot .info-hotspot-text {
  position: absolute;
  width: 300px;
  height: auto;
  max-height: 200px;
  top: 40px;
  left: 0;
  padding: 10px;
  background-color: rgb(58,68,84);
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  overflow-y: auto;
  visibility: hidden;
  /* rotate(90deg) causes transition flicker on Firefox 58 */
  -ms-transform: perspective(200px) rotateX(-89.999deg);
  -webkit-transform: perspective(200px) rotateX(-89.999deg);
  transform: perspective(200px) rotateX(-89.999deg);
  -ms-transform-origin: 50% 0 0;
  -webkit-transform-origin: 50% 0 0;
  transform-origin: 50% 0 0;
  -webkit-transition: -ms-transform 0.3s,
                      -webkit-transform 0.3s,
                      transform 0.3s,
                      visibility 0s 0.3s;
  transition: -ms-transform 0.3s,
              -webkit-transform 0.3s,
              transform 0.3s,
              visibility 0s 0.3s;

  -moz-user-select: text;
  -webkit-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

.desktop .info-hotspot.visible .info-hotspot-text {
  visibility: visible;
  -ms-transform: perspective(200px) rotateX(0deg);
  -webkit-transform: perspective(200px) rotateX(0deg);
  transform: perspective(200px) rotateX(0deg);
  -webkit-transition: -ms-transform 0.3s 0.3s,
                      -webkit-transform 0.3s 0.3s,
                      transform 0.3s 0.3s,
                      visibility 0s 0s;
  transition: -ms-transform 0.3s 0.3s,
              -webkit-transform 0.3s 0.3s,
              transform 0.3s 0.3s,
              visibility 0s 0s;
}

/* Info hotspot modal */

.desktop .info-hotspot-modal {
  display: none;
}

.info-hotspot-modal {
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 11000 !important;
  background-color: rgba(0,0,0,.5);
  line-height: 1.2em;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.2s ease-in-out 0.5s,
                      visibility 0s 0.7s;
  transition: opacity 0.2s ease-in-out 0.5s,
              visibility 0s 0.7s;
}

.info-hotspot-modal.visible {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.2s ease-in-out,
                      visibility 0s 0s;
  transition: opacity 0.2s ease-in-out,
              visibility 0s 0s;
}

.info-hotspot-modal .info-hotspot-header {
  position: absolute;
  top: 60px;
  left: 10px;
  right: 10px;
  width: auto;
  height: 50px;
  background-color: rgb(103,115,131);
  background-color: rgba(103,115,131,0.8);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out 0.2s;
  transition: opacity 0.3s ease-in-out 0.2s;
}

.info-hotspot-modal.visible .info-hotspot-header {
  opacity: 1;
  -webkit-transition: opacity 0.3s ease-in-out 0.2s;
  transition: opacity 0.3s ease-in-out 0.2s;
}

.info-hotspot-modal .info-hotspot-icon-wrapper {
  width: 50px;
  height: 50px;
}

.info-hotspot-modal .info-hotspot-icon {
  width: 90%;
  height: 90%;
  margin: 5%;
}

.info-hotspot-modal .info-hotspot-title-wrapper {
  position: absolute;
  top: 0;
  left: 50px;
  right: 50px;
  width: auto;
  height: 50px;
  padding: 0 10px;
}

.info-hotspot-modal .info-hotspot-title-wrapper:before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}

.info-hotspot-modal .info-hotspot-title {
  display: inline-block;
  vertical-align: middle;

  -moz-user-select: text;
  -webkit-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

.info-hotspot-modal .info-hotspot-close-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  background-color: rgb(78,88,104);
  background-color: rgba(78,88,104,0.8);
  cursor: pointer;
}

.info-hotspot-modal .info-hotspot-close-icon {
  width: 70%;
  height: 70%;
  margin: 15%;
}

.info-hotspot-modal .info-hotspot-text {
  position: absolute;
  top: 110px;
  bottom: 10px;
  left: 10px;
  right: 10px;
  padding: 10px;
  background-color: rgb(58,68,84);
  background-color: rgba(58,68,84,0.8);
  overflow-y: auto;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;

  -moz-user-select: text;
  -webkit-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

.info-hotspot-modal.visible .info-hotspot-text {
  opacity: 1;
  -webkit-transition: opacity 0.3s ease-in-out 0.4s;
  transition: opacity 0.3s ease-in-out 0.4s;
}

/* View control buttons */

.viewControlButton {
  display: none;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 40px;
  height: 40px;
  padding: 5px;
  background-color: rgb(103,115,131);
  background-color: rgba(103,115,131,0.8);
}

body.view-control-buttons .viewControlButton {
  display: block;
}

/* Hide controls when width is too small */
@media (max-width: 600px) {
  body.view-control-buttons .viewControlButton {
    display: none;
  }
}

.viewControlButton .icon {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 30px;
  height: 30px;
}

/* Center is at margin-left: -20px */
.viewControlButton-1 {
  margin-left: -145px;
}
.viewControlButton-2 {
  margin-left: -95px;
}
.viewControlButton-3 {
  margin-left: -45px;
}
.viewControlButton-4 {
  margin-left: 5px;
}
.viewControlButton-5 {
  margin-left: 55px;
}
.viewControlButton-6 {
  margin-left: 105px;
}



#play{
  position: absolute;
}
#pause{
  position: absolute;
}

img.hotspot-TV {
  width: 127.5px;
  height: 189px;
  cursor: pointer;
}
img.hotspot-still {
  width: 276px;
  height: 225px;
  cursor: pointer;
}
img.hotspot-poster {
  width: 144px;
  height: 210px;
  cursor: pointer;
}
img.hotspot-blueberry {
  width: 39px;
  height: 27px;
  cursor: pointer;
}
img.hotspot-audio {
  width: 156px;
  height: 171px;
  /* cursor: pointer; */
}
img.hotspot-letter {
  width: 165px;
  height: 129px;
  /* cursor: pointer; */
}
img.hotspot-contract {
  width: 58.5px;
  height: 195px;
  cursor: pointer;
}
img.hotspot-lamp1 {
  width: 135px;
  height: 507px;
  cursor: pointer;
}
img.hotspot-lamp2 {
  width: 145.5px;
  height: 190.5px;
  cursor: pointer;
}
img.hotspot-book {
  width: 90px;
  height: 75px;
  cursor: pointer;
}
img.hotspot-jh {
  width: 222px;
  height: 231px;
  cursor: pointer;
  /* display: none; */
}
img.hotspot-hs {
  width: 443.25px;
  height: 495px;
  cursor: pointer;
  /* display: none; */
}
.hotspot-jh-wrapper {
  clip-path: polygon(
    40% 0%,
    100% 0%,
    100% 100%,
    0% 100%,
    0% 65%,
    45% 0%
  );
}
.hotspot-hs-wrapper {
  clip-path: polygon(
    45% 0%,
    70% 0%,
    80% 80%,
    0% 100%,
    0% 60%,
    25% 40%
  );
}
.hotspot-mirror-ball-d {
  width: 222px;
  height: 222px;
  cursor: pointer;
}
.hotspot-director {
  width: 120px;
  height: 120px;
  cursor: pointer;
}

img.info-hotspot-close-icon:hover{
  filter: url(#hover-outline);
}

img.hotspot-blueberry:hover{
  filter: url(#hover-outline-blueberry);
}

/* 애니메이션 정의 */
@keyframes hoverAnimation {
  0% {
    filter: none;
  }
  100% {
    filter: url(#hover-outline);
  }
}

/* 애니메이션 클래스 */
.hotspot-animate {
  animation: hoverAnimation 4s ease-in-out forwards;
}

.tv-modal > .swiper-button-container, .audio-modal > .swiper-button-container {
  display:flex;
  justify-content:space-between;
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  max-width: 1300px;
  width: 100%;
}

@media (max-width: 2000px) {
  .tv-modal > .swiper-button-container, .audio-modal > .swiper-button-container {
    max-width: 900px;
  }
}

/* image popup */
.mirror-ball-modal,
.director-modal,
.book-modal,
.contract-image-modal,
.letter-modal {
  position: absolute;
  width: 100%;
  height: 100%;
}
.mirror-ball-container,
.director-container,
.book-container,
.contract-image-container,
.letter-container{
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 630px;
  max-height: 891px;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  transform: translate(-50%, -50%);
}
.contract-image-container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.contract-image, .letter-image{
  height: 100%;
}
.mirror-ball-container {
  background-image: url('/img/poster1.png');
  background-size: cover;
  height: 100%;
}
.director-container {
  background-image: url('/img/director-letter.png');
  background-size: cover;
}
.book-container {
  background-image: url('/img/author.png');
  background-size: cover;
}

.guestbook-container {
  position: absolute;
  bottom: 0;
  height: 70%;
  width: 95.5%;
  padding-top: 4%;
  padding-bottom: 4%;
  padding-left: 9%;
  padding-right: 6%;
}
#guestbook-form {
  position: relative;
  height: 45%;
}
.guest-info-inputs {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 3%;
}
.guest-info-inputs input {
  padding-left: 2%;
  padding-right: 2%;
  padding-top: 1.5%;
  padding-bottom: 1.5%;
  border-radius: 5px;
  border: 1px solid;
  /* border: solid;
  border-width: 1px 2.5px 2.5px 1px; */
  outline-color: #9DB3FF;
}
.guest-info-inputs :nth-child(odd) {
  width: 25%;
}
.guest-info-inputs :nth-child(even) {
  width: 40%;
}
#guestbook-form textarea {
  resize: none;
  height: 45%;
  width: 100%;
  padding: 2%;
  outline-color: #9DB3FF;
  border-radius: 5px;
  border: solid;
  border-width: 1px 2.5px 2.5px 1px;
}
#guestbook-form p {
  margin-top: 0.5%;
  font-size: 12px;
  font-weight: 500;
}
#guestbook-form button {
  position: absolute;
  left: 50%;
  bottom: 3%;
  transform: translate(-50%, 0%);
  border: none;
  height: 20%;
  width: 26.5%;
  background-color: #00000000;
}
.submit-button {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  cursor: pointer;
}
.return-button {
  display: none;
}
.guestbook {
  /* height: 55%; */
  width: 100%;
  padding-top: 2%;

  height: 70%;
  margin-top: 10%;
}
.guestbook-list-container {
  height: 100%;
}
.guestbook-list-wrapper {
  padding: 2%;
  height: 80%;
  width: 100%;
  border-radius: 5px;
  background-color: #ffffff;
  position: relative;
}
.guestbook-list {
  position: relative;
  height: 100%;
  width: 100%;
}
.guestbook-list li {
  height: 20%;
  padding: 3%;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  font-size: 14px;
  box-sizing: border-box;
}
.guest-name {
  height: 100%;
  font-weight: 500;
  width: 17%;
}
.guest-detail {
  display: flex;
  /* align-items: center; */
  height: 100%;
  width: 65%;
  margin-left: 3%;
  margin-right: 3%;
}
.modify {
  width: 12%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  color: #72716D;
  font-size: 12px;
}
.modify span {
  cursor: pointer;
}
.guestbook-list li:nth-last-child(1) {
  border-bottom: none;
}
.guestbook-pagination {
  height: 20%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.guestbook-pagination button {
  min-width: 7%;
  margin: 0 2px;
  border: none;
  background-color: #00000000;
  cursor: pointer;
}
.guestbook-pagination button.disabled {
  color: #9DB3FF;
  font-weight: 700;
  cursor: default;
}
.pagination button.arrow {
  min-width: 7%;
}
.btn-write {
  display: none;
}

.guestbook-detail-container {
  height: 100%;
  width: 100%;
}
.guestbook-detail {
  padding: 3%;
  height: 80%;
  width: 100%;
  border-radius: 5px;
  border: outset;
  border-width: 1px 2.5px 2.5px 1px;
  background-color: #ffffff;
}
.detail-name {
  height: 20%;
  font-weight: 600;
  font-size: 16px;
}
.detail-content {
  height: 80%;
  font-size: 15px;
  /* font-weight: 500; */
}
.guestbook-detail-menu {
  height: 100%;
  width: 100%;
  color: #818181;
  font-size: 16px;
  font-weight: 700;
}
.guestbook-detail-menu span {
  margin-left: 5%;
  margin-right: 5%;
  cursor: pointer;
}
.menu-wrapper {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translate(3.1%, 0%);
}
.password-input {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.password-input input {
  padding-left: 2%;
  padding-right: 2%;
  padding-top: 1.5%;
  padding-bottom: 1.5%;
  border-radius: 5px;
  border: 1px solid;
  width: 20%;
  /* border: solid;
  border-width: 1px 2.5px 2.5px 1px; */
  outline-color: #9DB3FF;
}

#modify-form {
  position: relative;
  height: 100%;
}
.modify-info-inputs {
  display: flex;
  flex-direction: row;
  height: 10.5%;
  margin-bottom: 3%;
}
.modify-info-inputs input {
  padding-left: 2%;
  padding-right: 2%;
  padding-top: 1.5%;
  padding-bottom: 1.5%;
  border-radius: 5px;
  border: 1px solid;
  /* border: solid;
  border-width: 1px 2.5px 2.5px 1px; */
  outline-color: #9DB3FF;
}
.modify-info-inputs :nth-child(odd) {
  width: 25%;
  margin-right: 3%;
}
.modify-info-inputs :nth-child(even) {
  width: 40%;
}
#modify-form textarea {
  resize: none;
  height: 65%;
  width: 100%;
  padding: 2%;
  outline-color: #9DB3FF;
  border-radius: 5px;
  border: solid;
  border-width: 1px 2.5px 2.5px 1px;
}
.modify-menu {
  height: 20%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.modify-menu span {
  margin-left: 5%;
  margin-right: 5%;
  cursor: pointer;
  color: #818181;
  font-size: 16px;
  font-weight: 700;
}

.tooltip {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  bottom: 100%; /* 오브젝트 위쪽에 위치시키기 위해 */
  left: 50%;
  transform: translateX(-50%) translateY(-10px); /* 가운데 정렬 및 위치 조정 */
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1;
}
.coming-soon:hover .tooltip {
  visibility: visible;
  opacity: 1;
}
.tooltip img {
  height: 71.4px;
  width: 218.4px;
}

@media (max-height: 1200px) {
  .mirror-ball-container,
  .director-container, 
  .book-container, 
  .contract-image-container,
  .letter-container {
    max-width:  calc(80vh / 99 * 70);
    max-height: 80vh;
  }
}
@media (max-height: 950px) or (max-width: 800px){
  .guest-info-inputs input, textarea {
    font-size: 14px;
  }
  .guestbook-list li {
    font-size: 14px;
    display: flex;
    flex-direction: column;
  }
  .guest-name {
    width: 100%;
  }
  .guest-detail {
    padding-top: 2%;
    padding-bottom: 2%;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
  .modify {
    position: absolute;
    right: 2%;
    width: 20%;
  }
  #guestbook-form {
    display: none;
    height: 100%;
  }
  #guestbook-form button {
    height: 10%;
    width: 29.5%;
    bottom: 25%;
  }
  .return-button {
    position: absolute;
    left: 50%;
    bottom: 1%;
    transform: translate(-50%, 0%);
    display: inline;
    cursor: pointer;
    color: #818181;
  }
  .guestbook {
    height: 100%;
    margin-top: 0%;
  } 
  .btn-write {
    position: absolute;
    bottom: 4%;
    display: initial;
    width: 13.5%;
    height: 5%;
  }
  .write-button-image {
    height: 100%;
    cursor: pointer;
  }
  .btn-write span{
    cursor: pointer;
    color: #818181;
  }
}
/* @media (max-height: 800px) {
  .mirror-ball-container,
  .director-container,
  .book-container,
  .contract-image-container,
  .letter-container {
    max-width:  calc(60vh / 99 * 70);
    max-height: 60vh;
  }
  .guest-info-inputs input, textarea {
    font-size: 8px;
  }
  .guestbook-list li {
    font-size: 8px;
  }
  #guestbook-form p {
    font-size: 6px;
  }
} */
@media (max-width: 700px) {
  .mirror-ball-container,
  .director-container,
  .book-container,
  .contract-image-container,
  .letter-container {
    max-width: 80vw;
    max-height: calc(80vw / 70 * 99);
  }
  .guest-info-inputs input, .modify-info-inputs input, textarea {
    font-size: 10px;
  }
  .guest-detail {
    padding-top: 1%;
    padding-bottom: 1%;
  }
  #guestbook-form button {
    bottom: 20%;
  }
  .guestbook-list li {
    font-size: 10px;
    padding: 1%;
  }
  #guestbook-form p {
    font-size: 10px;
  }
  .detail-name {
    font-size: 12px;
  }
  .detail-content {
    font-size: 11px;
    font-weight: 500;
  }
  .guestbook-detail-menu, .modify-menu span {
    font-size: 12px;
  }
  .password-input input {
    font-size: 10px;
  }
  .modify {
    font-size: 8px;
  }
  .guestbook-pagination button {
    font-size: 10px;
  }
  .return-button {
    font-size: 10px;
  }
  .btn-write {
    font-size: 10px;
  }
}
/* @media (max-width: 420px) {
  #guestbook-form p {
    font-size: 5.5px;
  }
  #guestbook-form button {
    bottom: 0%;
  }
  .detail-content {
    padding-top: 2%;
  }
  .guestbook-list li {
    font-size: 6.5px;
  }
  .password-input input {
    font-size: 8px;
  }
  .modify {
    font-size: 6px;
  }
  .guestbook-pagination button {
    font-size: 8px;
  }
} */

@media (max-height: 600px) {
  .mirror-ball-container,
  .director-container,
  .book-container,
  .contract-image-container,
  .letter-container {
    max-width: 50vh;
    max-height: calc(50vh / 70 * 99);
  }
}

.contract-link {
  position: absolute;
  right: 7%;
  bottom: 3%;
  width: 25%;
  height: 8%;
  cursor: pointer;
}
.contract-close, .letter-close {
  position: absolute;
  top: 0px;
  right: 3%;
  width: 8%;
  height: 7%;
  cursor: pointer;
}
.image-close-button {
  position: absolute;
  top: 0px;
  right: 0.3%;
  background-color: #00000000;
  border: none;
  height: calc(100% / 14.5);
  width: calc(100% / 11);
}
.director-close-button {
  position: absolute;
  top: 0.5%;
  right: calc(100% / 11.2);
  background-color: #00000000;
  border: none;
  height: calc(100% / 14.5);
  width: calc(100% / 11);
}
.image-close {
  width: 100%;
  height: 100%;
  /* width: 7.14%; */
  /* height: 59px; */
}
/* tv-swiper */
.tv-modal, .audio-modal {
  position: absolute;
  width: 100%;
  height: 100%;
}
.tv-swiper, .audio-swiper {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 1200px;
  max-height: 735px;
  width: 80%;
  height: 100%;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transform: translate(-50%, -50%);
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}
.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
}
.swiper-slide.menu-button {
  cursor: pointer;
}
.tv-swiper-slide::after, .audio-swiper-slide::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 150px);
  clip-path: polygon(0% 0%, 0% 100%, 46% 100%, 46% 50%, 54% 50%, 54% 63%, 0% 63%, 0% 100%, 100% 100%, 100% 0%);
}
.yt-player {
  position: absolute;
  left: 0;
}
iframe {
  border-radius: 8px;
  width: 100%;
  height: 90%;
}

@media (max-width: 2000px) {
  .tv-swiper, .audio-swiper {
    max-width: 800px;
    max-height: 490px;
  }
  .tv-swiper-slide::after, .audio-swiper-slide::after {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 100px);
    clip-path: polygon(0% 0%, 0% 100%, 44% 100%, 44% 49%, 56% 49%, 56% 67%, 0% 67%, 0% 100%, 100% 100%, 100% 0%);
  }
}
@media (max-width: 900px) {
  .tv-swiper, .audio-swiper {
    max-height: calc(100vw / 21 * 10 + 50px);
  }
  .tv-swiper-slide::after, .audio-swiper-slide::after {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 90px);
    clip-path: polygon(0% 0%, 0% 100%, 44% 100%, 44% 50%, 56% 50%, 56% 100%, 0% 100%, 0% 100%, 100% 100%, 100% 0%);
  }
}

/* poster-swiper */
.poster-modal, .still-modal {
  position: absolute;
  width: 100%;
  height: 100%;
}
.poster-swiper {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 620px;
  max-height: 891px;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  transform: translate(-50%, -50%);
}
.still-swiper {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 1067.5px;
  max-height: 712.5px;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  transform: translate(-50%, -50%);
}
.poster-swiper-slide, .still-swiper-slide {
  border-radius: 18px;
}
.poster-swiper-slide img, .still-swiper-slide img {
  width: 100%;
  height: 100%;
}
.mg-top {
  margin-top: 10%;
}

@media (max-width: 2000px) {
  .still-swiper {
    max-width: 50vw;
    height: auto;
  }
}
@media (max-width: 1400px) {
  .still-swiper {
    max-width: 60vw;
  }
}
@media (max-height: 1200px) and (max-width: 1400px) {
  .still-swiper {
    max-width: 50vw;
    transform: translate(-50%, -70%);
  }
}
@media (max-width: 1200px) {
  .still-swiper {
    max-width: 75vw;
  }
}
@media (max-width: 1400px) {
  .poster-swiper {
    max-width:  420px;
    max-height: 594px;
  }
}
@media (max-height: 1200px) {
  .poster-swiper {
    max-width:  calc(50vh / 99 * 70);
    max-height: 50vh;
  }
}
@media (max-height: 800px) {
  .poster-swiper {
    max-width:  calc(45vh / 99 * 70);
    max-height: 45vh;
  }
}
@media (max-height: 600px) {
  .poster-swiper {
    max-width:  calc(40vh / 99 * 70);
    max-height: 40vh;
  }
}
@media (max-width: 500px) {
  .poster-swiper {
    max-width: 30vh;
    max-height: calc(30vh / 70 * 99);
  }
}


/* jh, hs */
.rolling-swiper {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 630px;
  max-height: 891px;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  transform: translate(-50%, -50%);
  overflow: hidden;
  border-radius: 8px;
}
.rolling-swiper-wrapper {
  transition-timing-function: linear;
}
.rolling-swiper-slide img {
  display: block;
  border-radius: 8px;
  height: 100%;
}
 
@media (max-height: 1200px) {
  .rolling-swiper {
    max-width:  calc(70vh / 99 * 70);
    max-height: 70vh;
  }
}

@media (max-width: 500px) {
  .rolling-swiper {
    max-width: 80vw;
    max-height: calc(80vw / 70 * 99);
  }
} 
@media (max-height: 600px) {
  .rolling-swiper {
    max-width:  calc(60vh / 99 * 70);
    max-height: 60vh;
  }
}

/* shorts */
.jh-modal, .hs-modal, .blueberry-modal, .contract-video-modal {
  position: absolute;
  width: 100%;
  height: 100%;
}
.blueberry-wrapper, .contract-video-container {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 441px;
  height: 868px;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transform: translate(-50%, -50%);
}
/* .jh-swiper, .hs-swiper, .blueberry-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 315px;
  height: 620px;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transform: translate(-50%, -50%);
} */

/* .jh-modal > .swiper-button-container,
.hs-modal > .swiper-button-container {
  display:flex;
  justify-content:space-between;
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  max-width: 415px;
  width: 100%;
}
.jh-swiper > .swiper-pagination,
.hs-swiper > .swiper-pagination {
  bottom: var(--swiper-pagination-bottom, 30px) !important;
} */

@media (max-height: 1000px) {
  /* .jh-swiper, .hs-swiper, .blueberry-wrapper {
    max-width:  calc(80vh / 16 * 9);
    max-height: 80vh
  }
  .jh-modal > .swiper-button-container,
  .hs-modal > .swiper-button-container {
    max-width:  calc(80vh / 16 * 9 + 100px);
  }
  .jh-swiper > .swiper-pagination,
  .hs-swiper > .swiper-pagination {
    bottom: var(--swiper-pagination-bottom, 8px) !important;
  } */
  .blueberry-wrapper, .contract-video-container {
    max-width:  calc(65vh / 16 * 9);
    max-height: 65vh
  }
}

.shorts-slide {
  position: relative;
  width: 100%;
  /* padding-bottom: 177.78%; */
}
.shorts-slide::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 90px);
  clip-path: polygon(0% 0%, 0% 100%, 38% 100%, 38% 50%, 62% 50%, 62% 69%, 0% 69%, 0% 100%, 100% 100%, 100% 0%);
}
.shorts-iframe {
  position: absolute;
  /* width: 100%;
  height: 100%; */
  left: 0;
  top: 0;
}


div#intro {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0); /* 검은색 박스 */
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  /* display: none; */
}

div#intro .circle{
  content: '';
  width: 0px; /* 구멍의 너비 */
  height: 0px; /* 구멍의 높이 */
  background-color: #00000000;
  border-radius: 50%;
  /* border: 4px solid #9DB3FF; */
  box-shadow: 0 0 0 9999px #f2f2f2;
}

#intro .intro-container {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-height: 847px;
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#intro .intro-text {
  height: 36.6%;
}
#intro .intro-image {
  height: 43.3%;
}
#intro .intro-enter {
  height: 15.4%;
}
#intro .intro-copyright {
  height: 4.7%;
}
@media (max-height: 1000px) {
  #intro .intro-container {
    /* transform: translate(0%, -56%); */
    height: 80vh;
  }
}

 @keyframes grow {
  from {
    width: 200px;
    height: 200px; 
    border: none;
  }
  to {
    width: 50000px;
    height: 50000px; 
    border: none;
  }
}

 .circle.grow {
  animation: grow 4s forwards;
}
@keyframes grow2 {
  from { 
    width: 100%;
    height: 100%;
    border-radius: 50%;
  }
  to { 
    width: 100%;
    height: 100%;
    border-radius: 0;
  }
}

/* Apply the animation to the circle */
.circle.grow2 {
  animation: grow2 2s forwards;
}

/* 상단 메뉴 */
.menu-swiper {
  position: fixed;
  top: 0px;
  left: 20px;
  width: 100%;
   z-index: 5;  
  overflow: hidden;
  padding-bottom: 2px;
}
.menu-button {
  margin-right: 16px;
}
.inner {
  padding-top: 28px;
  padding-bottom: 15px;
}
.menu-swiper span {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  text-shadow: 1px 1px 1px rgba(64, 64, 64, 0.6);
}
.inner .line {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: white;
  box-shadow: 1px 1px 1px rgba(64, 64, 64, 0.6);
}

.menu-panel {
  position: fixed;
  left: 20px;
  top: 80px;
  width: calc(((calc(70vw - 40px) - (16px * 3)) / 4));
  max-width: 330px;
  /* height: 80vh; */
  max-height: 800px;
  background-color: rgba(121, 121, 121, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 5;
  overflow: hidden;
  transition: 0.4s ease-out height, 0.4s ease-out opacity;
  transform: translateZ(0.1px);
}

.menu-panel.tv-panel, .menu-panel.audio-panel{
  max-width: 450px;
}


/* div[class$="-modal"]{
  height: calc(100% - 60px);
  margin-top: 60px;
} */

@media (max-width: 1400px) {
  .menu-swiper {
    left: 0px;
    top: auto;
    bottom: 0;
    height: 50px;
  }
  .inner {
    padding-top: 15px;
    padding-bottom: 8px;
    text-align: center;
  }
  .menu-swiper span {
    font-size: 12px;
  }
  .inner .line {
    display: none;
  }
  .menu-panel {
    top: auto;
    bottom: 70px;
    left: 20px;
    max-width: none;
    width: calc(100% - 40px);
    height: 15vh;
    transition: none;
  }
  .menu-panel.tv-panel, .menu-panel.audio-panel {
    max-width: none;
  }

  /* div[class$="-modal"]{
    height: calc(100% - 80px);
    margin-top: 0;
    margin-bottom: 80px
  } */
}
@media (max-width: 700px) {
  .menu-swiper span {
    font-size: 10px;
  }
}

.poster-panel-swiper, .still-panel-swiper {
  max-height: 800px;
}

.tv-panel-swiper, .audio-panel-swiper {
  max-height: 800px;
  height: calc(((calc(70vw - 40px) - (16px * 3)) / 4) / 21 * 10 * 3 + (20px * 6));
}
.tv-panel-slide, .audio-panel-slide, .panel-image-slide {
  padding: 20px;
}
.panel-image-slide {
 display: flex !important;
 justify-content: center;
 align-items: center;
}
.thumbnail-wrapper, .panel-image-wrapper {
  border-radius: 8px;
  /* overflow: hidden; */
}
.panel-image, .still-panel-image {
  width: 100%;
  max-width: 245px;
  /* max-height: 395px; */
  /* max-height: calc(((calc(70vw - 40px) - (16px * 3)) / 4) / 90 * 70); */
}
.thumbnail {
  width: 100%;
}

@media (max-width: 1400px) {
  .tv-panel-slide, .audio-panel-slide {
    height: 15vh !important;
    display: flex !important;
    align-items: center;
    padding: 10px;
  }
  .thumbnail {
    max-height: calc(15vh - 20px);
  }
  .panel-swiper {
    height: calc(((calc(70vw - 40px) - (16px * 3)) / 4) / 21 * 10 * 3 + (20px * 6));
  }
  .panel-image {
    max-height: calc(15vh - 20px);
    width: calc((15vh - 20px) / 99 * 70 - 20px);
  }
  .still-panel-image {
    max-height: calc(13vh - 20px);
    /* width: calc((15vh - 20px) / 99 * 70 - 20px); */
  }
  /* .tv-panel-slide, .panel-image-slide {
    padding: 20px 0;
  } */
}

@media (max-width: 570px) {
  .tv-panel-slide, .audio-panel-slide {
    padding: 5px;
  }
  .thumbnail {
    max-height: calc(15vh - 10px);
  }
}


.hidden {
  display: none;
}


@-webkit-keyframes rotateDiscoBall {
  0% {-webkit-transform: rotateX(90deg) rotateZ(0deg) rotate(0deg); }
  100% {-webkit-transform: rotateX(90deg) rotateZ(360deg) rotate(0deg); }
}

@keyframes rotateDiscoBall {
  0% {transform: rotateX(90deg) rotateZ(0deg) rotate(0deg); }
  100% {transform: rotateX(90deg) rotateZ(360deg) rotate(0deg); }
}

@-webkit-keyframes rotateDiscoBallMiddle {
  0% {-webkit-transform: rotateX(90deg) rotateY(0deg) rotate(0deg); }
  100% {-webkit-transform: rotateX(90deg) rotateY(-360deg) rotate(0deg); }
}

@keyframes rotateDiscoBallMiddle {
  0% {transform: rotateX(90deg) rotateY(0deg) rotate(0deg); }
  100% {transform: rotateX(90deg) rotateY(-360deg) rotate(0deg); }
}

@-webkit-keyframes reflect {
  0% {-webkit-filter: brightness(60%);}
  50% {-webkit-filter: brightness(120%);}  
  100% {-webkit-filter: brightness(90%);}  
}

@keyframes reflect {
  0% {opacity: 1;}
  50% {opacity: 0.4;}  
  100% {opacity: 1;}  
}

.ball-container {
  width: 140px;
  height: 140px;
  background-color: #414141;
  border-radius: 50%;
}
.ball-container:hover{
  filter: url(#hover-outline);
}
.ball-container-n {
  width: 140px;
  height: 140px;
  background-color: #313131;
  border-radius: 50%;
}
.ball-container-n:hover{
  filter: url(#hover-outline);
}

.discoball, .discoball-n {
  position: absolute;
  top: 5px;
  left: 50%;
  /* background: rgba(200, 100, 100, 0.7); */
  transform: rotateX(70deg) rotateY(-1deg);
  transform-style: preserve-3d;
  cursor: pointer;
  /* animation: rotate-discoball 16s linear infinite; */
}

.animation {
  animation: rotate-discoball 16s linear infinite;
}

.mirror {
  position: absolute;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  border-radius: 3px;
}

.glow {
  position: absolute;
  width: 150px;
  height: 150px;
  background: white;
  border-radius: 50%;
  top: 50px;
  left: 50%;
  margin-left: -75px;
  filter: blur(30px);
  opacity: 0.15;
}

@keyframes rotate-discoball {
  from {
    transform: rotateX(70deg) rotateY(-1deg) rotateZ(0deg);
  }
  to {
    transform: rotateX(70deg) rotateY(-1deg) rotateZ(360deg);
  }
}

@keyframes sparkle {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}


.sphere-wrapper {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
  perspective: 1500px;
  pointer-events: none;
}

.sphere {
  transform-style: preserve-3d;
  position: absolute;
  width: 0;
  height: 0;
  top: 0;
  left: 0;
}

.animating {
  animation: ro 20s linear infinite;
}

.sphere div {
  width: 50px;
  height: 50px;
  position: absolute;
  border-radius: 50%;
  /* background: url(https://profesor08.github.io/player-material/assets/images/icon-128.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center; */
}

@keyframes ro {
  0% {
    transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg)
  }
  100% {
    transform: rotateX(360deg) rotateY(360deg) rotateZ(360deg);
  }
}


/***/
.mute-control {
  position: fixed;
  bottom: 25px;
  right: 20px;
  z-index: 5;
  width: 30px;
  filter: drop-shadow(1px 1px 1px rgba(64, 64, 64, 0.9));
  cursor: pointer;
}

@media (max-width: 1400px) {
  .mute-control {
    top: 20px;
    right: 15px;
    bottom: auto;
    width: 24px;
  }
}
.mute-control img {
  width: 100%;
}
.mute-control .unmute {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
}
.mute-control .mute {
  opacity: 0;
}
.mute-control.muted .unmute {
  opacity: 0;
}
.mute-control.muted .mute {
  opacity: 1;
}

@media (max-width: 700px) {

  .director-close-button {
     top: 0.4vw;
    right: 7vw; 
  }
  .image-close-button {
    top: 0.4vw;
    right: 2vw;
  }

  .image-close {
    width: 6vw;
    height: auto;
  }
}

  