:root {
  --project-main-color: #FFF987;
  --project-button-color: #FFF987;
}

/* scroll bar */
::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

::-webkit-scrollbar-track {
  background: transparent
}

::-webkit-scrollbar-thumb {
  background: rgba(225, 225, 225, 0.6);
  border-radius: 20px;
}

html,
body {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  color: #fff;
}

body,
button,
input,
select,
table,
textarea,
pre {
  color: #fff;
}

.mbr, .tbr {
  display: none;
}

.default_btn {
  padding: 6px 40px;
  font-size: 20px;
  font-weight: 500;
  color: #000;
  /*border: 1px solid #fff;*/
  border-radius: 20px;
  background-color: var(--project-button-color);
  backdrop-filter: blur(8px);
  transition: background-color .3s;
  /* line-height: 64px; */
}

/* index - txt용*/
.contents {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  max-width: 1440px;
  margin: auto;
  padding: 0 30px;
}

.inner {
  margin: 0 auto;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 120;
  width: 100%;
  height: 50px;
}

.header .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  height: 100%;
  padding: 0 20px;
}

.header.top_z-index {
  z-index: 999;
}

.site_logo {
  width: 40px;
  text-align: center;
}
.site_logo a {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* pc, res common  */
.gnb .gnb-item a {
  position: relative;
  display: block;
  font-size: 18px;
  color: #111;
  -webkit-transition: color .4s ease-in-out;
  transition: color .4s ease-in-out;
  text-align: center;
  font-weight: 700;
}

/* pc nav */
.gnb .gnb-btn {
  display: none;
}

.gnb .gnb-item {
  display: inline-block;
  vertical-align: middle;
  text-align: center;
}

.gnb .gnb-item+.gnb-item {
  margin-left: 40px;
}

.gnb .gnb-item a {
  position: relative;
  line-height: 60px;
}
.gnb .gnb-item a:after{
  content: "";
  position: absolute;
  z-index: 100;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  transition: width .25s;
  background-color: var(--project-main-color)
}

.gnb .gnb-item a:hover, .gnb .gnb-item.is_active a {
  color: var(--project-main-color);
}
.gnb .gnb-item a:hover:after, .gnb .gnb-item.is_active a:after{
  width: 100%;
}

.gnb .gnb-item a img {
  display: none;
}


/* util */
.util{
  display: flex;
  flex-direction: row;
  justify-content: right;
  align-items: center;
}
.util .util_btn {
  width: 28px;
  height: 32px;
  background: url('../../static/images/ico/ic-sound-off.png') no-repeat center center;
  background-size: 100% auto;
}
.util .util_btn.is_unmute {
  background: url('../../static/images/ico/ic-sound-on.png') no-repeat center center;
  background-size: 100% auto;
}
.util .setting_box {
  display: none;
  position: absolute;
  top: 110%;
  right: 10px;
  padding: 10px 8px;
  background-color: rgba(0,0,0,.5);
  border-radius: 10px;
}
.util .setting_box .lang_title {
  padding-bottom: 4px;
}
.util .setting_box.is-show {
  display: block;
}
.util_common_box{
  position: relative;
  display: block;
  margin-bottom: 10px;
}
.select-btn-list{
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  border-radius: 8px;
  background-color: #bbb;
  box-shadow: 0px 8px 20px 0px rgba(17, 17, 17, 0.16);
  overflow: hidden;
}
.select-btn-list button{
  width: 50%;
  justify-content: center;
  padding: 4px 14px;
  border-radius: 8px;
  color: #fff;
  transition: background-color .25s;
}
.ko .select-btn-list.language .lang_ko {
  background-color: #fff;
  color: #000;
}
.en .select-btn-list.language .lang_en {
  background-color: #fff;
  color: #000;
}
/*bgm*/
.select-btn-list.bgm .active {
  background-color: #fff;
  color: #000;
}

/*하단 유틸*/
.util .util_list {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.util_item.guide {
  position: fixed;
  left: 20px;
  bottom: 20px;
}

.util_item.guide button {
  background: url('../../static/images/ico/ic-info_w.svg') no-repeat center center;
  background-size: 100%;
  width: 30px;
  height: 30px;
}

.util_item.nextScene button {
  background: url('../../static/images/ico/ico-player-guide-startScene.png') no-repeat center center;
  background-size: 100%;
  width: 30px;
  height: 30px;
}
.tour_btn_sound {
  width: 24px;
  height: 24px;
  background-image: url(../../static/images/ico/ico_sound_off.svg);
  background-repeat: no-repeat;
}
.tour_btn_sound.is_unmute {
  background-image: url(../../static/images/ico/ico_sound_on.svg);
}

/* modal active */
.header .step2.modal_active a {
  color: var(--project-main-color);
}
.header .step3.modal_active button {
  background: url('../../static/images/ico/ico_bag_active.png') no-repeat center center;
}
.header .step4.modal_active button {
  background: url('../../static/images/ico/ico_sound_off_active.svg') no-repeat center center!important;
}
.popup_11st {
  position: fixed;
  top: 60px;
  left: 14px;
  width: 180px;
  z-index: 200;  
}

.vr-player {
  padding-top: 50px;
  background-color: #000;
}

.guide_modal_btn {
  position: absolute;
  bottom: 10px;
  right: 16px;
  width: 20px;
  height: 20px;
  background: none;
  cursor: pointer;
  z-index: 999;
}

/* modal setting */
.modal_area {
  display: none;
  position: fixed;
  z-index: 998;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal_area.open {
  display: block;
}

.modal_area .modal_box {
  position: relative;
  top: 50%;
  left: 50%;
  padding: 20px;
  max-width: 550px;
  max-height: 90%;
  overflow-y: auto;
  border-radius: 10px;
  transform: translate3d(-50%, -50%, 0);
  z-index: 100;
  color: #111;
}

.modal_title_img {
  position: absolute;
  bottom: 90%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
}

.modal_contents {
  width: 100%;
  height: 100%;
}

.modal_item {
  display: none;
  width: 100%;
  height: 100%;
  text-align: center;
  color: #fff;
}

.modal_item.is_active {
  display: block;
}

.modal_scroll_box {
  overflow: auto;
}

.modal_scroll_box .desc>p+p {
  margin-top: 10px;
}


/* guide_box 공통 css */
.modal_item .guide_box {
  border: 1px solid #eee;
  border-radius: 20px;
  background-color: rgba(0,0,0,.5);
  padding: 10px 20px;
}
.modal_item .guide_box .guide_title {
  position: relative;
  color: #0E0E0E;
  font-weight: 800;
  line-height: 1.3;
  font-size: 22px;
}

.modal_item .guide_box .guide_title::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 2px;
  background-color: var(--project-main-color);
}

.modal_item .guide_box .guide_title.noline::before {
  display: none;
}

.modal_item .guide_box .guide_desc {
  font-size: 14px;
  line-height: 1.7;
}

.modal_item .guide_box .guide_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
}
.modal_item .guide_box .guide_icon{
  align-items: flex-start;
  width: 100%;
}

.modal_item .guide_box .guide_icon.mob {
  display: none;
}

.modal_item .guide_box .icon_title {
  padding-top: 16px;
  font-size: 12px;
  font-weight: 400;
}

.modal_item .guide_box .guide_icon .icon_box .icon_desc {
  word-break: keep-all;
  line-height: 1.56;
  font-size: 14px;
}

.modal_btn_box .btn_wrap {
  display: flex;
  justify-content: center;
  width: 100%;
}

.modal_btn_box .btn_wrap *+* {
  margin-left: 5px;
}

/* 모달 button 공통 css */
.modal_btn_box {
  text-align: center;
  margin-top: 14px;
}

.modal_btn_box .btn_wrap.one {
  flex: 1;
  justify-content: center;
}

.modal_btn_box .btn_wrap.one button {
  width: 100% !important;
}

.today_chk_box .inp_chk_wrap+.btn_wrap {
  width: auto;
}

.today_chk_box .inp_chk_wrap+.btn_wrap .default_btn+.default_btn {
  margin-left: 10px;
}

/* modal check box */
/*.today_chk_box .inp_chk_wrap {*/
/*  position: absolute;*/
/*  right: 0;*/
/*  left: 0;*/
/*  top: 102%;*/
/*  width: 100%;*/
/*  text-align: right;*/
/*}*/

/*.today_chk_box .inp_chk+label {*/
/*  display: inline-block;*/
/*  outline: 0;*/
/*  margin-right: 5px;*/
/*  cursor: pointer;*/
/*  color: #fff;*/
/*}*/

/*.today_chk_box .inp_chk+label {*/
/*  display: flex;*/
/*  justify-content: flex-end;*/
/*  align-items: center;*/
/*}*/

/*.today_chk_box .inp_chk+label span {*/
/*  vertical-align: middle;*/
/*}*/

/*.today_chk_box .inp_chk+label:before {*/
/*  content: '';*/
/*  display: inline-block;*/
/*  margin-right: 10px;*/
/*  width: 16px;*/
/*  height: 16px;*/
/*  border: 2px solid #cccccc;*/
/*  border-radius: 100%;*/
/*  vertical-align: middle;*/
/*}*/

/*.today_chk_box .inp_chk:checked+label:before {*/
/*  background: url(../../static/images/ico/ico-modal-chk.png) no-repeat center / 60% auto var(--project-main-color);*/
/*}*/

.modal_area .modal_box .brand_logo {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -40%);
  padding-bottom: 0;
}

.modal_box .brand_logo {
  height: 120px;
}

.modal_box .brand_logo img {
  height: 100%;
}

.modal_box .brand_logo .txt {
  font-size: 26px;
}

.modal_box .main_title {
  margin-bottom: 14px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
}

.modal_box .main_title strong {
  color: var(--project-main-color);
}

.modal_box .main_title.custom {
  margin-top: 14px;
}

.modal_box .title {
  font-size: 14px;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--project-main-color);
}

.modal_box .desc {
  line-height: 1.5;
  word-break: keep-all;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 24px;
}
.en .modal_box .flex .title {
  margin-bottom: 0;
}

/* interaction guide */
.interaction .guide_box .guide_icon .icon_box {
  width: calc(100% / 3);
}


/*only this project*/
.modal_cont_box .guide_box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 150px;
  width: 50%;
}
.modal_cont_box .guide_box:first-child {
  margin-right: 10px;
}
.modal_cont_box .guide_box .guide_icon .icon_box {
  width: 100%;
}

.modal_cont_box.flex {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 14px;
}
.modal_cont_box.bottom {
  width: 100%;
  padding-top: 14px;
}
.modal_cont_box.bottom .guide_box {
  width: 100%;
  height: auto;
  padding: 30px 20px;
}
.modal_cont_box.flex .guide_box {
  padding: 20px;
}
.modal_cont_box.bottom .ico-tip {
  /* padding-left: 10px; */
  text-align: left;
}
.modal_cont_box.bottom .ico-tip span {
  display: inline-block;
  padding: 4px 8px;
  font-size: 12px;
  color: #111;
  background-color: var(--project-main-color);
  border-radius: 14px;
}
.modal_cont_box.bottom .guide_text {
  display: flex;
  align-items: center;
  width: 100%;
}
.modal_cont_box.bottom .guide_text:not(:first-child) {
  padding-top: 6px;
}
.modal_cont_box.bottom .guide_text .tip_title {
  width: 60px;
  color: var(--project-main-color);
  font-size: 14px;
}
.modal_cont_box.bottom .guide_text .icon_title {
  padding-top: 0;
}
.modal_cont_box.bottom .guide_text .tip_txt_box {
  position: relative;
  padding-left: 6px;
}
.modal_cont_box.bottom .guide_box.flex {
  display: flex;
  align-items: center;
  flex-direction: row;
  padding: 20px;
}
.guide_box.flex .left-box, .guide_box.flex .right-box {
  width: 50%;
}
.guide_box.flex .right-box {
  padding-left: 10px;
}
.guide_box.flex .guide_text {
  text-align: left;
}
.guide_box.flex .tip_txt_box.flex .icon_title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.margin-center-box {
  max-width: 100%;
  margin: auto;
}
.modal_cont_box.bottom.custom2 {
  padding-top: 0;
}
/* .modal_cont_box.bottom.custom2 .cont-02 {
  width: 100%;
} */
.modal_cont_box.bottom.custom2 .guide_text .tip_txt_box {
  width: 100%;
}
.modal_cont_box.bottom.custom2 .cont-02 {
  margin-top: 10px;
}
.txt_point {
  color: var(--project-main-color);
  font-weight: 600;
}
/* .modal_cont_box.bottom .guide_text .tip_txt_box::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: #fff;
} */
.logo_brand {
  background: url('../../static/images/ico/logo_brand.png') no-repeat center center;
  background-size: 100% 100%;
  width: 64px;
  height: 64px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

/* indicatorBox */
.indicatorBox{
  /* position: absolute; */
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 10px;
  /* bottom: 14px; */
  /* left: 50%; */
  /* transform: translateX(-50%); */
}
.indicatorBox span{
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 100%;
  background-color: #CCCCCC;
}
.indicatorBox span+span{
  margin-left: 8px;
}
.indicatorBox span.on {
  width: 8px;
  height: 8px;
  border: 2px solid var(--project-main-color);
  background-color: #fff;
}

@media screen and (max-width: 1023px) {
  .pbr {
    display: none;
  }

  .tbr {
    display: block;
  }

  .contents {
    max-width: 100%;
    padding: 0 20px;
  }

  .inner {
    max-width: none;
  }

  /* header */

  .header .inner {
    padding: 0 10px;
    height: 50px;
  }

  .site_logo {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    padding: 0;
    /* width: 60px; */
    background-color: transparent;
  }
  .popup_11st {
    position: initial;
    width: 150px;
  }
  .gnb .gnb-list.active {
    display: flex;
  }

  .gnb .gnb-list {
    display: flex;
    justify-content: center;
    padding: 6px 10px;
    width: 100%;
  }

  .gnb .gnb-item a {
    line-height: 30px;
    font-size: 15px;
  }

  .util .util_list {
    justify-content: space-between;
  }
  .change_lang_btn span{
    width: 14px;
    height: 14px;
    font-size: 12px;
    line-height: 14px;
  }
  .change_lang_btn::after{
    width: 24px;
    height: 24px;
  }
  .container.en .change_lang_btn::after{
    left: 34px;
  }

  /* .vr-player */
  /* .vr-player {
    padding-top: 50px;
  } */

}

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

  /* modal setting */
  .modal_area .modal_box {
    top: 50%;
  }

  .modal_area .modal_btn_box {
    margin-top: 20px;
  }

  .modal_btn_box .btn_box_item .default_btn {
    width: 49%;
  }

  .modal_btn_box .btn_box_item *+* {
    margin-left: 1%;
  }

  .modal_btn_box .btn {
    padding: 8px 23px;
  }
  .info_icon_box {
    padding-bottom: 12px;
  }
  .info_icon {
    width: 60px;
    height: 60px;
  }

  /* .modal_box .title {
    margin-bottom: 10px;
  } */

  .modal_box .desc {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .tip_box {
    font-size: 14px;
  }

  /* guide_box 공통 css */
  .modal_item .guide_box .guide_icon.pc {
    display: none;
  }

  .modal_item .guide_box .guide_icon.mob {
    display: flex;
    margin-bottom: 15px;
  }

  .modal_item .guide_box .guide_desc {
    margin: 0 auto 20px;
    font-size: 12px;
  }

  .modal_guide {
    display: none !important;
  }

  /* interaction guide */
  /* .modal_box .title {
    font-size: 22px;
  } */

  /* modal_box guide */
  .modal_box .brand_logo {
    height: 115px;
  }
  /* .modal_item .guide_box .icon_title{
    font-size: 16px;
  } */
  /* .interaction .guide_box .guide_icon .icon_box .icon_img {
    margin: 0 0 15px;
  } */

  /* .interaction .guide_box .guide_icon .icon_box img {
    width: 58px;
  } */

  .modal_area .modal_box.video_info {
    max-width: 95%;
  }

  .modal_area .modal_box.video_info .modal_contents {
    padding: 10vh 0;
  }

}
@media screen and (max-width: 680px) {
  .modal_cont_box.bottom .guide_box.flex {
    flex-direction: column-reverse;
  }
  .guide_box.flex .left-box, .guide_box.flex .right-box {
    width: 100%;
  }
  .guide_box.flex .right-box {
    margin-bottom: 10px;
    padding-left: 0;
  }
  .guide_box.flex .right-box .tip-wrap {
    width: 80%;
    margin: auto;
  }
}

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

  .tbr {
    display: none;
  }

  .mbr {
    display: block;
  }

  .setting_box .btn_box {
    font-size: 3.73vw;
  }
  .select-btn-list button {
    font-size: 3.73vw;
    padding: 1.07vw 3.73vw;
  }

  .popup_11st {
    width: 31.25vw;
  }
  /* 임시 속성 모바일 UI 필요 */
  .gnb .gnb-wrap{
    display: none;
  }

  /* default button style */
  .default_btn {
    font-size: 5vw;
  }

  .contents {
    padding: 0 1vw;
  }

  .gnb .gnb-list {
    justify-content: initial; 
    width: max-content;
    height: 42px;
  }
  
  /* modal */
  /* modal common */
  .modal_area .modal_box {
    max-width: initial;
    padding: 4.17vw;
    width: 95%;
  }

  .modal_area .modal_box .brand_logo {
    height: 29vw;
  }

  .modal_item .guide_box {
    border-radius: 5.33vw;
    padding: 2.13vw 2.67vw;
  }
  .modal_cont_box .guide_box .guide_icon .icon_box img{
    height: 18vw;
  }
  .info_icon {
    width: 12.5vw;
    height: 12.5vw;
  }

  .modal_box .title {
    margin-bottom: 5.33vw;
    font-size: 3.73vw;
    line-height: 1.3;
  }

  .modal_box .desc {
    font-size: 3.8vw;
  }

  .modal_scroll_box .desc>p+p {
    margin-top: 2vw;
  }

  .modal_area .modal_btn_box {
    margin-top: 5.3vw;

  }

  .modal_box .main_title {
    font-size: 5.33vw;
  }
  .tip_box {
    font-size: 3.33vw;
  }

  .modal_cont_box.bottom .guide_text .tip_title {
    width: 16vw;
    font-size: 3.73vw;
  }
  .interaction .guide_box .icon_title {
    padding-top: 4.27vw;
    font-size: 3.33vw;
  }
  .interaction .guide_box .icon_title.CH_TXT{
    font-size: 3.61vw;
  }

  .back_ticket_page {
    left: 14px;
    bottom: 10px;
  }
  .modal_cont_box .guide_box {
    height: 40vw;
  }

  .logo_brand {
    width: 13.33vw;
    height: 13.33vw;
  }
  .modal_cont_box.bottom .guide_box {
    padding: 6.25vw 4.16vw;
  }
  .modal_cont_box.bottom .ico-tip {
    padding-left: 2.08vw;
  }
  .modal_cont_box.bottom .ico-tip span {
    padding: 0.83vw 1.66vw;
  }
  .guide_box.flex .right-box .tip-wrap {
    width: 100%;
    margin: initial;
  }
  .modal_cont_box.flex .guide_box .guide_icon .icon_box img{
    height: 8vw;
  }

  .modal_cont_box.flex .guide_box {
    padding: 5.31vw 2.65vw;
  }

}