*, ::after, ::before {
  box-sizing: border-box
}

/* body.en .zh{display: none !important;}
body.zh .en{display: none !important;} */

.nowrap {
  white-space: nowrap;
}

.modal_iframe {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 0;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.modal_iframe.active {
  width: 100%;
  height: 100%;
  opacity: 1;
  z-index: 999;
}

.modal_iframe iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.livechat_wrap, .livechat_guide_wrap{
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  display: flex;
  flex-direction: column-reverse;
  text-align: right;
  justify-content: flex-end;
  opacity:0;
  pointer-events: none;
}
.livechat_wrap.active, .livechat_guide_wrap.active{
  display: flex;
  opacity: 1;
  pointer-events: auto;
}

.gotochat-btn {
  /* Size and position */
  display: none;
  align-items: center;
  box-sizing: border-box;
  padding: 10px 30px;
  /* Styles */
  background: rgba(51, 51, 51, 0.6);
  border-color: rgba(51, 51, 51, 0.6);
  border-radius: 20px;
  box-shadow: inset 0px 0px 3px rgba(255, 255, 255, 0.25);
  filter: drop-shadow(0px 0px 16px rgba(0, 0, 0, 0.25));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  /* Font styles */
  color: white;
  text-align: center;
  font-family: 'Montserrat', 'Noto Sans TC', sans-serif;
  text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.3);
  margin-bottom: 20px;
  border: 2px solid #444;
  position: relative;
}

.gotochat-btn:after,
.gotochat-btn:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
}

.gotochat-btn:before {
  top: 100%;
  right: 14px;
  margin-left: -12px;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 12px solid;
  border-top-color: #444;
}

.gotochat-btn.active {
  display: inline-flex;
}

.gotochat-btn img {
  width: auto;
  height: 18px;
  margin-left: 11px;
}

button.livechat-btn, a.livechat-btn {
  display: inline-flex;
  border: 0;
  align-items: center;
  align-self: flex-end;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: rgba(51, 51, 51, 0.6);
  border-radius: 50%;
  box-shadow: inset 0px 0px 3px rgba(255, 255, 255, 0.25);
  filter: drop-shadow(0px 0px 16px rgba(0, 0, 0, 0.25));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  cursor: pointer;
  background-image: url('../img/components/chat-w.svg');
  text-decoration: none;
  background-repeat: no-repeat;
  background-size: 20px 18px;
  background-position: 50% 50%;
}

button.livechat-btn.active {
  background-color: #fff;
  background-image: url('../img/components/chat-p.svg');
}

.livechat-btn img {
  width: auto;
  height: 18px;
}

/* dialog */
.dialog_message {
  position: relative;
  width: 350px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  filter: drop-shadow(0px 0px 16px rgba(0, 0, 0, 0.25));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 8px;
  margin-bottom: 16px;
  display: none;
}
.dialog_message.active{
  display: block;
}

.triangle {
  position: absolute;
  top: 100%;
  right: 20px;
  width: 16px;
  height: 8px;
  background: rgba(255, 255, 255, 0.7);
  clip-path: polygon(16px 0, 0 0, 8px 8px);
  filter: drop-shadow(0px 0px 16px rgba(0, 0, 0, 0.25));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.dialog_message .message {
  text-align: left;
}

.dialog_message #needhelp {
  display: none;
}

.dialog_message .message h3 {
  font-family: 'Montserrat','Noto Sans TC', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #33058D;
  margin: 0 0 12px 0;
}

.dialog_message .message p {
  font-family: 'Barlow', 'Noto Sans TC', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  color: #33058D;
  margin: 0 0 8px 0;
}

.dialog_message .controls ul{
  display: flex;
  flex-direction: row;
  margin: 16px 0 0 0;
  padding: 0 0 0 0;
  list-style: none;
  align-items: center;
}
.dialog_message .controls ul li{
  cursor: pointer;
  list-style: none;
  display: flex;
  padding: 0;
  margin: 0;
}

.dialog_message .controls ul li a{
  display: inline-flex;
  text-decoration: none;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(51, 5, 141, 0.5);
  margin:0 4px;
}
.dialog_message .controls ul li a.active{
  background-color: rgba(51, 5, 141, 1);
}

.dialog_message .controls ul li:first-child a{
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  background-color: #33058D;
}

.dialog_message .controls ul li:last-child a{
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  background-color: #33058D;
  transform: scaleX(-1);
}

.dialog_message .controls ul li img{
  width: auto;height: 12px;
}

.close_dialog{
  position: absolute;
  right: 8px;
  top: 8px;
}
.close_dialog button{
  cursor: pointer;
  border:0;
  margin:0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  outline: none;
  background-color: #33058D;
  line-height: 1;
  display: inline-flex;
  align-items: center;justify-content: center;
}
.close_dialog button img{
  width: 14px;
  height: 14px;
  margin:0;
}


/* menu */
.menu_wrapper {
  position: relative;
  top: 32px;
  left: 32px;
  position: fixed;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 235px;
  height: 48px;
  border-radius: 60px;
  background: rgba(51, 51, 51, 0.6);
  box-shadow: inset 0px 0px 3px rgba(255, 255, 255, 0.25);
  filter: drop-shadow(0px 0px 16px rgba(0, 0, 0, 0.25));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.header .logo {
  position: absolute;
  left: 25px;
  top: 8px;
  cursor: pointer;

  display: flex;
  align-items: center;
}
.header .logo .text{
  color: #fff;
  font-size: 18px;
  font-family: 'Montserrat', 'Noto Sans TC', sans-serif;
  font-weight: 400;
}

.header .logo:after {
  content: '';
  background-image: url('../img/menu/stroke-g.png');
  position: absolute;
  top: 1px;
  left: 105px;
  background-size: contain;
  width: 1px;
  height: 32px;
}
.header .logo img {
  width: 32px;
  height: 32px;
  margin-right: 4px;
}
/* .header .logo img {
  width: 131px;
  height: 32px;
} */

.header .burger-menu {
  cursor: pointer;
  position: absolute;
  top: 8px;
  left: 146px;
  text-decoration: none;
  background-image: url('../img/menu/burger-menu.png');
  background-repeat: no-repeat;
  width: 32px;
  height: 32px;
  background-position: center;
  white-space: nowrap;
  background-size: contain;
}

.header .burger-menu.active {
  background-image: url('../img/menu/menu-active.png');
}

.header .burger-menu.active img {
  opacity: 1
}

/* map menu */
.header .map-menu {
  position: absolute;
  top: 8px;
  right: 18px;
  text-decoration: none;
  background-image: url('../img/menu/map-menu.png');
  background-repeat: no-repeat;
  width: 32px;
  height: 32px;
  background-position: center;
  white-space: nowrap;
  background-size: contain;
  cursor: pointer;
}

.header .map-menu.active {
  background-image: url('../img/menu/map-active.png');
}

/* menu */
.menu {
  padding: 16px;
  position: absolute;
  top: 80px;
  left: 0;
  border-radius: 8px;
  width: 240px;
  background: rgba(51, 51, 51, 0.6);
  box-shadow: inset 0px 0px 3px rgba(255, 255, 255, 0.25);
  filter: drop-shadow(0px 0px 16px rgba(0, 0, 0, 0.25));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  opacity: 0;
  transition: all 0.2s ease-in-out;
  pointer-events: none;
}

.menu.active {
  opacity: 1;
  top: 60px;
  pointer-events: auto;
}

.menu .section {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #fff;
}

.menu .section:last-child {
  margin-bottom: 0;
  border: 0;
  padding-bottom: 0
}

.menu .title {
  margin: 0;
  color: #fff;
  font-family: 'Montserrat', 'Noto Sans TC', sans-serif;
  font-weight: 500;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
}

.menu .title img {
  height: 20px;
  width: auto;
  margin: 0 4px 0 0;
}

.menu .menu_list {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.menu .menu_list .item {
  cursor: pointer;
  list-style: none;
  font-family: 'Barlow','Noto Sans TC', sans-serif;
  padding-left: 5px;
  font-size: 16px;
  margin-bottom: 5px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  padding: 0 5px;
}

.menu .menu_list .item img{margin-right: 10px;}

.menu .menu_list .item:hover {
  color: #e620a0;
}

/* map */
.map {
  position: absolute;
  top: 80px;
  left: 0;
  width: 290px;
  height: 268px;
  background: rgba(51, 51, 51, 0.2);
  box-shadow: inset 0px 0px 3px rgba(255, 255, 255, 0.25);
  filter: drop-shadow(0px 0px 16px rgba(0, 0, 0, 0.25));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 8px;
  opacity: 0;
  transition: all 0.2s ease-in-out;
  pointer-events: none;
  padding: 16px 0;
}

.map img {
  max-width: 100%;
}

.map.active {
  opacity: 1;
  top: 60px;
  pointer-events: auto;
}

.map_container {
  position: relative;
}

.map_container img.example {
  position: absolute;
  top: -17px;
  left: 0;
  width: 100%;
  height: auto;
}

.map_container h3 {
  text-align: center;
  font-size: 18px;
  margin: 0;
  color: #fff;
  font-family: 'Montserrat', 'Noto Sans TC', sans-serif;
  font-weight: 400;
  margin-bottom: 0;
}

.images_wrapper {
  width: 100%;
  position: relative;
  margin-top: -9px;
}

.images_wrapper span {
  position: absolute;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  white-space: nowrap;
  background-size: contain;
  cursor: pointer;
}
.images_wrapper span:after{
  position: absolute;
  font-size: 13px;
  line-height: 1;
  color: #FFFFFF;
  text-shadow: 2px 0 0 rgb(20 0 49), -2px 0 0 rgb(20 0 49), 0 2px 0 rgb(20 0 49), 0 -2px 0 rgb(20 0 49), 1px 1px rgb(20 0 49), -1px -1px 0 rgb(20 0 49), 1px -1px 0 rgb(20 0 49), -1px 1px 0 rgb(20 0 49);
  font-family: 'Barlow','Noto Sans TC', sans-serif;
  z-index: 2;
}

.images_wrapper img.based {
  position: relative;
}

.images_wrapper .gaming {
  right: 68px;
  top: 136px;
  background-image: url('../img/map/spot-gaming.png');
  width: 45px;
  height: 36px;
}

.images_wrapper .gaming:hover, .images_wrapper .gaming.here {
  background-image: url('../img/map/spot-gaming-active.png') !important;
}
.images_wrapper .gaming:hover:after{
  content: '電競裝備';
  top: -10px;
  left: -2px;
}

.images_wrapper .sports {
  left: 39px;
  top: 44px;
  background-image: url('../img/map/spot-Sports.png');
  width: 57px;
  height: 87px;
}

.images_wrapper .sports:hover, .images_wrapper .sports.here {
  background-image: url('../img/map/spot-Sports-active.png') !important;
}
.images_wrapper .sports:hover:after{
  content: '體育組合';
  top: 35px;
  left: -5px;
}

.images_wrapper .entertainment {
  left: 76px;
  top: 20px;
  background-image: url('../img/map/spot-Entertainment.png');
  width: 66px;
  height: 43px;
}

.images_wrapper .entertainment:hover, .images_wrapper .entertainment.here {
  background-image: url('../img/map/spot-Entertainment-active.png') !important;
}

.images_wrapper .entertainment:hover:after{
  content: '最新娛樂推介';
  top: 8px;
  left: 0px;
}

.images_wrapper .VE {
  left: 47px;
  top: 126px;
  background-image: url('../img/map/spot-VE.png');
  width: 60px;
  height: 52px;
}

.images_wrapper .VE:hover, .images_wrapper .VE.here {
  background-image: url('../img/map/spot-VE-active.png') !important;
}

.images_wrapper .VE:hover:after{
  content: '租看人氣之選';
  top: 25px;
  left: -10px;
}

.images_wrapper .clubsim {
  left: 102px;
  top: 157px;
  background-image: url('../img/map/spot-clubsim.png');
  width: 44px;
  height: 35px;
}

.images_wrapper .clubsim:hover, .images_wrapper .clubsim.here {
  background-image: url('../img/map/spot-clubsim-active.png') !important;
}

.images_wrapper .clubsim:hover:after{
  content: 'E+網絡';
  top: 15px;
  left: 0px;
}

.images_wrapper .router {
  left: 148px;
  top: 157px;
  background-image: url('../img/map/spot-router.png');
  width: 26px;
  height: 21px;
}

.images_wrapper .router:hover, .images_wrapper .router.here {
  background-image: url('../img/map/spot-router-active.png') !important;
}

.images_wrapper .router:hover:after{
  content: '居家產品';
  top: 25px;
  left: -20px;
}

.images_wrapper .gadgets {
  right: 48px;
  top: 66px;
  background-image: url('../img/map/spot-gadgets.png');
  width: 34px;
  height: 67px;
}

.images_wrapper .gadgets:hover, .images_wrapper .gadgets.here {
  background-image: url('../img/map/spot-gadgets-active.png') !important;
}

.images_wrapper .gadgets:hover:after{
  content: '手機與平板';
  top: 25px;
  left: -15px;
}

.images_wrapper .earbuds {
  right: 83px;
  top: 34px;
  background-image: url('../img/map/spot-Earbuds.png');
  width: 60px;
  height: 34px;
}

.images_wrapper .earbuds:hover, .images_wrapper .earbuds.here {
  background-image: url('../img/map/spot-Earbuds-active.png') !important;
}

.images_wrapper .earbuds:hover:after{
  content: '耳機';
  top: 10px;
  left: 14px;
}

.images_wrapper .uhere {
  position: absolute;
  width: 59px;
  height: 28px;
  top: 122px;
  left: 97px;
  z-index: 5;
  font-size: 13px;line-height: 1;
  color: #FFFFFF;
  text-shadow: 2px 0 0 rgba(20, 0, 49, 1), -2px 0 0 rgba(20, 0, 49, 1), 0 2px 0 rgba(20, 0, 49, 1), 0 -2px 0 rgba(20, 0, 49, 1), 1px 1px rgba(20, 0, 49, 1), -1px -1px 0 rgba(20, 0, 49, 1), 1px -1px 0 rgba(20, 0, 49, 1), -1px 1px 0 rgba(20, 0, 49, 1);
  font-family: 'Barlow','Noto Sans TC', sans-serif;
  display: inline-flex;
  align-items: center;
  flex-direction: row;
  white-space: normal;
  text-align: center;
}

.images_wrapper .uhere {
  width: 24px;
  height: 24px;
}

.images_wrapper .uhere div{
  display: inline-block;
  white-space: pre;
}

.images_wrapper .uhere.clubsimHere,
.images_wrapper .uhere.routerHere {
  top: 130px;
  left: 133px;
}

.images_wrapper .uhere.gamingHere {
  top: 112px;left: 169px;
}

.images_wrapper .uhere.gadgetsHere {
  top: 84px;
  left: 180px;
}

.images_wrapper .uhere.earbudsHere {
  top: 54px;
  left: 160px;
}

.images_wrapper .uhere.entertainmentHere {
  top: 50px;
  left: 117px;
}

.images_wrapper .uhere.sportsHere {
  top: 92px;
  left: 77px;
}

.images_wrapper .uhere.VEHere {
  top: 119px;
  left: 86px;
}

/* music */
.music_wrapper {
  position: absolute;
  top: 8px;
  left: 251px;
  width: 60px;
  height: 32px;
  border-radius: 60px;
  background: rgba(51, 51, 51, 0.6);
  box-shadow: inset 0px 0px 3px rgb(255 255 255 / 25%);
  filter: drop-shadow(0px 0px 16px rgba(0, 0, 0, 0.25));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  cursor: pointer;
}

.music_wrapper .music_controls {
  width: 28px;
  height: 28px;
  top: 2px;
  position: absolute;
  right: 4px;
}

.music_wrapper .music_bubble {
  pointer-events: none;
  position: absolute;
  left: 4px;
  top: 4px;
  /* VR Glass Dark */
  background: rgba(51, 51, 51, 0.8);
  box-shadow: 2px 0px 2px rgba(0, 0, 0, 0.2);
  border-radius: 32px;
  width: 24px;
  height: 24px;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.music_wrapper.hide_ios{
  display: none;
}

.music_wrapper.active .music_bubble {
  background: #6C2BEE;
  box-shadow: -2px 0px 2px rgba(0, 0, 0, 0.2);
  left: 32px;
}

.music_wrapper .music_icon {
  pointer-events: none;
  position: absolute;
  pointer-events: none;
  right: 9px;
  top: 5px;
  background-repeat: no-repeat;
  background-image: url('../img/popup/button/music-off.svg');
  width: 18px;
  height: 18px;
}

.music_wrapper.active .music_icon {
  background-image: url('../img/popup/button/music-on.svg');
}

.audio {
  z-index: 2;
  position: relative;
}

/* model window */
.modal_details_wrapper {
  position: relative;
  z-index: 10;
}

.modal_wrapper {
  z-index: 10;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 32px;
  opacity: 0;
  display: flex;
  align-items: center;
  pointer-events: none;
}

.modal_wrapper.active {
  opacity: 1;
  pointer-events: auto;
}

.model_container {
  width: 100%;
  height: 100%;
  max-height: 100%;
  max-width: 950px;
  margin: 0 auto;
  border-radius: 16px;
  padding: 16px;
  /* vr glass light */
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.model_container .heading {
  margin: 0 0 16px 0;
}

.model_container .heading h3 {
  padding-right: 16px;
  font-family: 'Montserrat', 'Noto Sans TC', sans-serif;
  color: #33058d;
  font-weight: 500;
  /* text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.5); */
  margin: 0;
  font-size: 24px;
}

.model_container .heading {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: flex-start;
}

.model_container button {
  border: 0;
  margin: 0;
  outline: none;
  cursor: pointer;
}

.model_container .heading .controls {
  align-items: flex-start;
  display: flex;
}

.model_container .heading .controls .cta-btn {
  margin: 0;
  padding: 0 16px;
  display: inline-flex;
  color: #fff;
  font-family: 'Montserrat', 'Noto Sans TC', sans-serif;
  font-size: 14px;
  font-weight: 400;
  background-color: #33058d;
  border-radius: 30px;
  height: 32px;
  align-items: center;
  margin-right: 16px;
  white-space: nowrap;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.model_container .heading .controls .cta-btn:hover {
  background: #572DAA;
}

.model_container .heading .controls .cta-btn img {
  width: 24px;
  height: 24px;
  margin: 0 8px 0 0;
}

.model_container .heading .controls .cta-btn.seedetails_btn {
  display: none;
}

.model_container .heading .controls .close-modal {
  background-color: rgba(0, 0, 0, 0);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #33058D;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.model_container .heading .controls .close-modal img {
  width: 14px;
  height: 14px;
}

.model_container .heading .controls .close-modal:hover {
  background: #572DAA;
}

@supports (-webkit-touch-callout: none) {
  .viewinspace {
    display: none !important;
  }
}

.QR_wapper h4 {
  color: #6c2bee;
  font-family: 'Barlow', 'Noto Sans TC', sans-serif;
  font-size: 14px;
  text-align: left;
  font-weight: 400;
  max-width: 150px;
}

.QR_wapper img {
  max-width: 25%;
  margin: 0 15px;
  height: auto;
  max-width: 110px;
  align-self: center;
}

/* video */
.modal_wrapper.video .model_container {
  max-width: 75%;
  height: auto;
  padding-bottom: 8px;
  margin: 0 auto;
}

.modal_wrapper.video.standard .model_container {
  padding-bottom: 16px;
}

.modal_wrapper .content.video {
  padding: 0;
}

.video_wrapper {
  width: 100%;
  height: 100%;
  background-color: #000;
  border-radius: 8px;
  padding: 8px;
}

.video_wrapper video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.modal_wrapper.video.standard .bottom_controls {
  display: none;
}

.modal_wrapper.video .bottom_controls {
  margin-top: 8px;
  width: 100%;
  text-align: right;
}

.modal_wrapper.video .bottom_controls a {
  width: auto;
  background-color: #33058D;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  font-family: 'Montserrat', 'Noto Sans TC', sans-serif;
  padding: 0 24px;
  display: none;
  align-items: center;
  height: 40px;
  border-radius: 30px;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.modal_wrapper.video .bottom_controls a.active {
  display: inline-flex;
}

.modal_wrapper.video .bottom_controls a:hover {
  background: #572DAA;
}

.modal_wrapper.video .bottom_controls a img {
  width: 24px;
  height: 24px;
  margin: 0 8px;
}

/* Hi Edan */
.Hi_Edan_wrapper {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 10;
  left: 0px;
  top: 0px;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  opacity: 0;
  pointer-events: none;
}

.Hi_Edan_wrapper.active {
  opacity: 1;
  pointer-events: auto;
}

.Hi_Edan_wrapper .content {
  text-align: center;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.Hi_Edan_wrapper .dialog h3 {
  font-size: 20px;
  font-weight: 700;
  color: #33058D;
  font-family: 'Barlow', 'Noto Sans TC', sans-serif;
  margin: 0 0 8px 0;
}

.Hi_Edan_wrapper .dialog {
  position: relative;
  background-color: #fff;
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 24px;
}

.Hi_Edan_wrapper .dialog:after {
  position: absolute;
  content: '';
  top: 100%;
  left: 50%;
  transform: translate(-50%, 0%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #ffffff;
}

.Hi_Edan_wrapper .dialog p {
  font-family: 'Barlow', 'Noto Sans TC', sans-serif;
  font-size: 18px;
  color: #33058D;
  margin: 0;
  white-space: pre-wrap;
}

.welcome_hi {
  width: 88px;
  height: 88px;
  /* border: 4px solid #33058D; */
  border-radius: 50%;
  margin-bottom: 32px;
}

.Hi_Edan_wrapper .content .ok_btn {
  width: auto;
  background-color: #33058D;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  font-family: 'Montserrat', 'Noto Sans TC', sans-serif;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  height: 40px;
  border-radius: 30px;
  border: 0;
  margin: 0 0 24px 0;
  cursor: pointer;
}

.Hi_Edan_wrapper .content .no_btn {
  border: 0;
  background-color: rgba(0, 0, 0, 0);
  font-size: 14px;
  color: #bebcbc;
  text-decoration: underline;
  font-family: 'Barlow', 'Noto Sans TC', sans-serif;
  cursor: pointer;
}

/* nowstudio video */
#studiovideo {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
}

#studiovideo.active {
  opacity: 1;
  pointer-events: auto;
}

/* footer */
footer{
  z-index: 2;
  position: absolute;
  left: 16px;
  bottom: 8px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  filter: drop-shadow(0px 0px 8px rgba(0, 0, 0, 0.5));
}
footer .item{
  display: inline-flex;
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  font-family: 'Barlow', 'Noto Sans TC', sans-serif;
  margin: 0 16px 0 0;
  text-decoration: none;
}
footer a.item,footer button.item{
  background-color: rgba(0, 0, 0, 0);
  margin:0;
  padding: 0;
  border:0;
  display: inline;
  text-decoration: underline;
  margin: 0 8px;
  cursor: pointer;
}

/* dialogflow */
df-messenger{display: none !important;}
df-messenger.active{
  display: block !important;
}

@media screen and (max-width: 1120px) {}

@media (min-width:816px) and (max-width:1120px) {
  .modal_wrapper.video .model_container {
    max-width: 800px;
  }
}

@media screen and (max-width: 816px) {
  .modal_wrapper {
    padding: 16px;
  }

  .model_container {
    padding: 8px;
  }

  .modal_wrapper.video .model_container {
    max-width: 100%;
  }
}
@media screen and (max-width: 550px) {
  .livechat_wrap, .livechat_guide_wrap{right: 10px;bottom: 10px;}
  .menu_wrapper {top:20px;left: 10px;}
}
