@charset "UTF-8";
*:focus{
  outline: none;
}

#iv-container {
  background: #fffe;
}

.iv-close:after,
.iv-close:before {
  content: "";
  height: 4px;
  width: 32px;
  background: #000;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -2px;
}

.iv-close {
  right: 20px;
  top: 20px;
}

.iv-snap-view {
  background: #fff;
}

.onoffswitch {
  position: absolute !important;
  right: 13px !important;
  bottom: 15px !important;
}

#hideAllHS {
  bottom: 150px !important;
}

.onoffswitch {
  width: 90px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.onoffswitch-checkbox {
  display: none;
}

.onoffswitch-label {
  display: block;
  overflow: hidden;
  cursor: pointer;
  /* border-radius: 20px; */
}

.onoffswitch-inner {
  display: block;
  width: 200%;
  margin-left: -100%;
  -webkit-transition: margin 0.3s ease-in 0s;
  transition: margin 0.3s ease-in 0s;
}

.onoffswitch-inner:before, .onoffswitch-inner:after {
  display: block;
  float: left;
  width: 50%;
  height: 30px;
  padding: 0;
  line-height: 30px;
  font-size: 14px;
  color: white;
  font-family: Trebuchet, Arial, sans-serif;
  font-weight: bold;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.onoffswitch-inner:before {
  content: "開";
  padding-left: 10px;
  background-color: #4B4F54;
  color: #ffffff;
}

.onoffswitch-inner:after {
  content: "關";
  padding-right: 10px;
  background-color: #4B4F54;
  color: #ffffff;
  text-align: right;
}

.onoffswitch-switch {
  display: block;
  width: 24px;
  margin: 4px;
  background: #308078;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 56px;
  /* border: 2px solid white;  */
  /* border-radius: 20px; */
  -webkit-transition: all 0.3s ease-in 0s;
  transition: all 0.3s ease-in 0s;
}

.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner {
  margin-left: 0;
}

.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch {
  right: 0px;
  background-color: #45B8AC;
}

@-ms-viewport {
  width: device-width;
}

@media only screen and (min-device-width: 800px) {
  html {
    overflow: hidden;
  }
}

html {
  height: 100%;
}

body {
  height: 100%;
  overflow: hidden;
  margin: 0;
  padding: 0;
  font-family: 'Noto Sans TC', Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #FFFFFF;
  background-color: #000000;
}

.dialog-wrapper {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 1;
  pointer-events: all;
  -webkit-transition: opacity 0.5s ease-out;
  /* Safari */
  transition: opacity 0.5s ease-out;
}

.dialog-wrapper .dialog {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  /*max-width: 1000px;
			max-height: 750px;*/
  /*border-radius: 5px;*/
  overflow: hidden;
}

.dialog-wrapper .dialog .img {
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9998;
}

.dialog-wrapper .close {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 10px;
  left: 10px;
  cursor: pointer;
  z-index: 9999;
}

.hidden {
  opacity: 0;
  pointer-events: none;
}

#info-overlay {
  position: fixed;
  left: 0;
  bottom: 0;
  margin: 20px;
}

#info-overlay > * {
  display: inline-block;
  vertical-align: middle;
}

.no-select {
  pointer-events: none;
}

.modal-card-head, .modal-card-foot {
  background: white;
  border: none;
}

#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9;
}

#navbar .brand {
  height: 40px;
  margin: 5px;
}

#menu-toggle {
  background: white;
  width: 50px;
  height: 50px;
  padding: 10px;
}

.modal-card, .modal-content {
  width: 90%;
}

.kr-hotspots {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.kr-hotspot {
  position: absolute;
  top: -100000;
  left: -100000;
  pointer-events: all;
  opacity: 0;
}

.kr-hotspot .handle {
  width: 50px;
  height: 50px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 5;
  position: relative;
}

.kr-hotspot .detail {
  z-index: 2;
  width: 200px;
  text-align: center;
}

.kr-hotspot .detail img {
  max-width: 100%;
}

.kr-hotspot.style-1:hover .detail {
  opacity: 1;
  bottom: 200px;
  pointer-events: all;
}

.kr-hotspot.style-1 .detail {
  position: absolute;
  bottom: 300px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 0;
  text-shadow: -1px -1px 0 #000,  
 1px -1px 0 #000,
 -1px 1px 0 #000,
 1px 1px 0 #000;
  font-size: 24px;
  line-height: 30px;
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
  pointer-events: none;
}

.kr-hotspot.style-1 .detail::after {
  content: "";
  position: absolute;
  top: 29px;
  height: 127px;
  width: 1px;
  left: calc(50% - 0.5px);
  background: white;
}

.kr-hotspot.style-2:hover .detail {
  opacity: 1;
  bottom: 75px;
  pointer-events: all;
}

.kr-hotspot.style-2 .detail {
  position: absolute;
  bottom: -10px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 0;
  font-size: 24px;
  line-height: 30px;
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
  background: white;
  border-radius: 4px;
  padding: 10px;
  pointer-events: none;
}

#starting-screen {
  z-index: 9999999;
  position: fixed;
  color: #363636;
  padding: 20px;
  -webkit-transition: 1s background;
  transition: 1s background;
}

#starting-screen p {
  max-width: 600px;
  margin: 20px auto;
}

#info-toggle {
  opacity: 0;
  height: 100px;
  width: 100px;
  border-radius: 50px;
  position: absolute;
  left: 50%;
  bottom: 10px;
  cursor: pointer;
  transform: translateX(-50%);
  z-index: 3;
  background: #BE1E4A;
  box-shadow: 0px 0px 5px 0px black;
  border: 4px solid white ;
  color: white;
}

#info-toggle .icon{
  background-image: url(../nav_buttons.png?v=3);
  background-size: 392px 112px;
  background-position: -56px 0px;
  height: 56px;
  width: 56px;
  display: block;
  margin-left: 18px;
  margin-top: 4px;
}

#info-toggle .label{
  width: 92px;
  text-align: center;
  color: white;
}

.b-r-0 {
  border-radius: 0 !important;
}

#infoModal .delete {
  background: #33CCCC;
}

.modal-card-foot {
  text-align: center;
}

.modal-card-foot .footer-logo {
  width: 100%;
}

button {
  background: linear-gradient(#BE1E4A, #A51F52,#BE1E4A);
  color: white;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  font-size: 1.4rem;
  padding: 5px 20px;
  border-radius: 5px;
  cursor: pointer;
  -webkit-transition: background 0.5s;
  transition: background 0.5s;
}

#controls {
  width: 100%;
  height: 50px;
  position: absolute;
  top: 0;
  left: 0;
  padding: 10px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
}

#controls .control-btn {
  pointer-events: all;
  min-width: 30px;
  height: 30px;
  cursor: pointer;
  display: inline-block;
  background-repeat: no-repeat;
}

#controls .prev-scene {
  background-image: url(../nav_buttons.png?v=3);
  background-size: 420px 120px;
  background-position: -10px 0;
  height: 60px;
}

#controls .next-scene {
  background-image: url(../nav_buttons.png?v=3);
  background-size: 420px 120px;
  background-position: -310px 0;
  height: 60px;
}

#controls .share-pano {
  background-image: url(../nav_buttons.png?v=3);
  background-size: 280px 80px;
  background-position: -80px 0;
}

#controls .pick-mode {
  background-image: url(../nav_buttons.png?v=3);
  background-size: 280px 80px;
  background-position: -120px 0;
}

#controls .pick-mode.active {
  background-position: -120px -40px;
}

#controls .pick-scene {
  background-image: url(../nav_buttons.png?v=3);
  background-size: 280px 80px;
  background-position: -120px 0px;
}

#controls .pick-scene.active {
  background-position: -120px -40px;
}

#controls .floor-plan {
  background-image: url(../nav_buttons.png?v=3);
  background-size: 280px 80px;
  background-position: -160px 0px;
}

#controls .floor-plan.active {
  background-position: -160px -40px;
}

#controls .list-view {
  background-image: url(../nav_buttons.png?v=3);
  background-size: 280px 80px;
  background-position: -240px 0px;
}

#controls .list-view.active {
  background-position: -240px;
}


#controls .control-btn:hover {
  background-position-y: -40px;
}
#controls .prev-scene:hover, #controls .next-scene:hover {
  background-position-y: -60px !important;
}

#scene-picker-wrapper{
  position: absolute;
  width: 100%;
  pointer-events: none;
  bottom: 0px;
  left: 0;
}
#scene-picker {
  pointer-events: none;
  height: 0;
  overflow: hidden;
  -webkit-transition: 0.7s all;
  transition: 0.7s all;
  opacity: 0;
  padding-bottom: 0px;
  padding-top: 0px;
  background: rgba(0,0,0,0.7);
}

#scene-picker-wrapper.active #scene-picker {
  height: auto;
  opacity: 1;
}

#scene-picker-toggle{
  pointer-events: all;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  bottom: 0;
  margin-left: 15px;
  padding: 8px;
  background: rgba(0,0,0,0.7);
  border-radius: 10px 10px 0px 0px ;
  cursor: pointer;
  width: 120px;
  text-align: center;
}
#scene-picker-toggle span{
  display: inline-block;
  vertical-align: middle;
}
#scene-picker-toggle img{
  width: 15px;
  height: 15px;
  display: inline-block;
  vertical-align: middle;
  margin-left: 5px;;
  transition: all 0.6 ease;
  transform: rotate(180deg);
}
#scene-picker-wrapper.active #scene-picker-toggle img{
  transform: rotate(0deg);
}

#scene-picker-wrapper.active .slick-slide {
  pointer-events: all;
}

#scene-picker .slick-slide {
  pointer-events: none;
  margin-top: 15px;
  margin-bottom: 15px;
}

#scene-picker .slick-slide .scene-thumbnail {
  border: 2px solid transparent;
  margin: 5px;
}

#scene-picker .slick-slide .scene-thumbnail.focus {
  border: 2px solid #F4D523;
  
}

.is-16by9 iframe {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
/*# sourceMappingURL=app.css.map */


@media (max-width: 640px){

  #starting-screen p{
    font-size: 0.8rem;
  }
  
    #info-toggle {
      opacity: 0;
      height: 70px;
      width: 70px;
      border-radius: 50px;
      position: absolute;
      left: 50%;
      bottom: 10px;
      cursor: pointer;
      transform: translateX(-50%);
      z-index: 3;
      background: #BE1E4A;
      box-shadow: 0px 0px 5px 0px black;
      border: 4px solid white ;
      color: white;
    }

    #info-toggle .icon{
      background-image: url(../nav_buttons.png?v=3);
      background-size: 252px 72px;
      background-position: -36px 0px;
      height: 36px;
      width: 36px;
      display: block;
      margin-left: 12px;
      margin-top: 4px;
    }

    #info-toggle .label{
      width: 62px;
      text-align: center;
      color: white;
      font-size: 0.8rem;
    }
      

}

#controls>div{
  width: 40%;
}

.is-pulled-right{
  text-align: right;
}

.is-pulled-left>div{
  margin-left: -4px;
}
.is-pulled-right>div{
  margin-right: -4px;
}

#controls>div>div{
  width: 33%;
  text-align: center;
}

.control-btn{
  margin: auto;
}


#list-view{
  position: fixed;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  z-index: 5;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,0.7);
  display: none;
}
#list-view.active{
  display: block;
}
#list-view .close{
  position: fixed;
  right: 15px;
  top: 15px;
  font-size: 0.6rem;
  color: black;
  z-index: 6;
  cursor: pointer;
  padding-left: 5px;
  line-height: 40px;
  padding-right: 5px;
}

#list-view .list-title{
  line-height: 40px;
  color: black;
  font-size: 1.5rem;
  font-weight: bold;
  margin-left: 15px;
  margin-top: 15px;
}

#list-view .container{
  position: fixed;
  top: 50%;
  left: 50%;
  height: calc(100% - 80px);
  width: calc(100% - 50px);
  max-width: 600px;
  background: white;
  box-shadow: 0px 0px 5px 0px black;
  z-index: 5;
  transform: translate(-50%, -50%);
}

#list-view .item-list{
  height: calc(100% - 60px);
  width: 100%;
  overflow-y: auto;
  overflow-x: hidden;
}

#list-view .item{
  display: block;
  margin: 15px;
  color: black; 
  position: relative;
  height: 150px;
  box-sizing: border-box;
  overflow: hidden;
  background-color: black;
  cursor: pointer;
  user-select: none;
}

#list-view .item .img{
  background-repeat: no-repeat;
  background-position: center center;
  width: 100%;
  height: 100%;
  background-size: cover;
  transition: all 0.7s ease-out;
  opacity: 0.8;
}

#list-view .item .overlay{
  color: white;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
#list-view .item:hover .img{
  transform: scale(1.2);
  opacity: 0.4;
}

#current-scene-title{
  width: 100% !important;
  height: 50px;
  background: #F4D523;
  position: absolute;
  left: 0;
  right: 0;
  top: 50px;
  z-index: 999999;
  pointer-events: all;
  cursor: pointer;
}
#current-scene-title .arrow{
  content: "";
  position: absolute;
  right: 15px;
  display: block;
  width: 60px;
  background: url(../arrow-down.svg) no-repeat right center;
  background-size: 15px 15px;
  top: 50%;
  color: black;
  transform: translate(0, -50%);
  color: #363636;
  display: block;
  font-size: 1rem;
  font-weight: 700;
}
#current-scene-title .label{
  position: absolute;
  left: 0%;
  display: block;
  top: 50%;
  transform: translate(0, -50%);
  text-align: left;
  padding-left: 15px;
}

@media screen and (min-width: 767px){
  #current-scene-title .arrow{
    content: "";
    position: absolute;
    right: 15px;
    display: block;
    width: 33%;
    
    background: url(../arrow-down.svg) no-repeat left 40px center;
    background-size: 20px 20px;
    top: 50%;
    transform: translate(0, -50%);
  }
  #current-scene-title .label{
    position: absolute;
    left: 0%;
    display: block;
    
    top: 50%;
    width: 33%;
    transform: translate(0, -50%);
    text-align: right;
    padding-left: 15px;
  }
}

#current-scene-title .title{
  line-height: 50px;
  color: black;
  font-weight: bold;
  font-size: 1.5rem;
  width: auto;
  text-align: center;
}

#current-scene-dialog{
  position: fixed;
  background: white;
  z-index: 999;
  left: 0;
  right: 0;
  top: 100px;
  bottom: 0;
  width: unset !important;
  pointer-events: all;
  transform: translateY(-100%);
  transition: all .3s ease;
  text-align: center;
  overflow-y: auto;
}
#current-scene-dialog.active{
  
  transform: translateY(0%);
}

#current-scene-dialog>*{
  max-width: 600px;
}

#controls{
  z-index: 9999;
  background: black;
}

.mlBtn{
  background: #33CCCC !important;
  border: none;
  border-radius: 10px;
  text-align: center;
  margin: 15px auto;
  width: calc(100% - 30px);
  display: block;
  padding: 15px 10px;
  color: black;
}

#current-scene-dialog h5{
  color: black;
  margin: 15px auto;
  font-size: 1.2rem;
}
#current-scene-dialog .columns{
  margin: 15px auto;
}

#side-menu-wrapper{
  position: absolute;
  top: 50px;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  transition: background 0.3s ease;
}
#side-menu-wrapper.active{
  /* pointer-events: all; */
  background: rgba(0,0,0,0.2);
}

#side-menu-open{
  position: absolute;
  left: 15px;
  top: 15px;
  pointer-events: all;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.3s ease;
}

#side-menu-wrapper.active #side-menu-open{
  opacity: 0;
}
#side-menu-open div {
  width: 30px;
  height: 4px;
  background-color: white;
  box-shadow: 3px 3px 2px 0px rgba(0,0,0,0.6);
  margin: 6px 0;
}
#side-menu{
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  overflow-y: auto;
  background: rgba(0,0,0,0.7);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  width: 400px;
  max-width: 90%;
  pointer-events: all;
}

#side-menu-wrapper.active #side-menu{
  transform: translateX(0);
}

#side-menu .close{
  width: 30px;
  height: 30px;
  background: url(../arrow-down-white.svg) center center no-repeat;
  background-size: contain;
  position: absolute;
  right: 15px;
  top: 15px;
  transform: rotate(90deg);
  cursor: pointer;
}

#side-menu .content{
  margin-top: 50px;
  padding: 15px;

}

#side-menu .scene-thumbnail{
  display: none !important;
}

#side-menu span{
  display: block;
  font-size: 1rem;
  line-height: 1.5rem;
  padding-bottom: 0.7rem;
  padding-top: 0.7rem;
  margin-right: 80px;
  user-select: none;
}

#side-menu .scene{
  cursor: pointer;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.2);

}

#side-menu .scene.focus{
  color: #F4D523;
}

#side-menu .floor-btn{
  display: block;
  position: absolute;
  right: 40px;
  width: 40px;
  height: 40px;
  top: 50%;
  transform: translateY(-50%);
  background: url('../assets/floorplan-btn.png') no-repeat center center;
  background-size: 30px 30px;
}
#side-menu .info-btn{
  display: block;
  position: absolute;
  right: 00px;
  width: 40px;
  height: 40px;
  top: 50%;
  transform: translateY(-50%);
  background: url('../assets/info-btn.png') no-repeat center center;
  background-size: 30px 30px;
}

@media screen and (max-width: 768.1px){
  .fancybox-navigation .fancybox-button--arrow_right, .fancybox-navigation .fancybox-button--arrow_left{
    padding: 2px !important;
    width: 40px !important;
    height: 40px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
  }

}


.fancybox-thumbs {
  top: auto !important;
  width: auto !important;
  bottom: 0 !important;
  left: 0 !important;
  right : 0 !important;
  height: 95px !important;
  padding: 10px !important;
  box-sizing: border-box !important;
  background: rgba(0, 0, 0, 0.3) !important;
}

.fancybox-show-thumbs .fancybox-inner {
  right: 0 !important;
  bottom: 95px !important;
}
.fancybox-thumbs__list a:before{
  border-color: #F4D523 !important;
}