/* common */
/* default btn */
.header .btn-lobby,
.main .content .btn,
.lobby .contents .lobby_btn_wrap .btn,
.search_company-item .btn_wrap .btn,
.modal .btn {
  display: inline-block;
  padding: 12px 24px;
  background: #4a1480;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(1%, #9327ff),
    to(#4a1480)
  );
  background: linear-gradient(to right, #9327ff 1%, #4a1480 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='$btn_color1', endColorstr='$btn_color2', GradientType=1);
  border-radius: 52px;
  color: #fff;
  -webkit-box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.3);
  font-size: 0;
  vertical-align: middle;
  outline: 0;
}

.header .btn-lobby > span,
.main .content .btn > span,
.lobby .contents .lobby_btn_wrap .btn > span,
.search_company-item .btn_wrap .btn > span,
.modal .btn > span {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.9px;
  line-height: 1.7;
}

.header .btn-lobby > span.has_ico,
.main .content .btn > span.has_ico,
.lobby .contents .lobby_btn_wrap .btn > span.has_ico,
.search_company-item .btn_wrap .btn > span.has_ico,
.modal .btn > span.has_ico {
  position: relative;
  padding-right: 14px;
}

.header .btn-lobby > span.has_ico:before,
.main .content .btn > span.has_ico:before,
.lobby .contents .lobby_btn_wrap .btn > span.has_ico:before,
.search_company-item .btn_wrap .btn > span.has_ico:before,
.modal .btn > span.has_ico:before {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 7px;
  height: 12px;
  background: url(../img/arrow-right.png) no-repeat 0 50%;
  background-size: auto 12px;
  content: "";
}

@media screen and (max-width: 1023px) {
  .header .btn-lobby,
  .main .content .btn,
  .lobby .contents .lobby_btn_wrap .btn,
  .search_company-item .btn_wrap .btn,
  .modal .btn {
    padding: 6px 14px;
  }

  .header .btn-lobby > span,
  .main .content .btn > span,
  .lobby .contents .lobby_btn_wrap .btn > span,
  .search_company-item .btn_wrap .btn > span,
  .modal .btn > span {
    font-size: 14px;
  }
}

@media screen and (max-width: 1023px) and (orientation: landscape) {
  .header .btn-lobby,
  .main .content .btn,
  .lobby .contents .lobby_btn_wrap .btn,
  .search_company-item .btn_wrap .btn,
  .modal .btn {
    padding: 6px 14px;
  }

  .header .btn-lobby > span,
  .main .content .btn > span,
  .lobby .contents .lobby_btn_wrap .btn > span,
  .search_company-item .btn_wrap .btn > span,
  .modal .btn > span {
    font-size: 14px;
  }
}

.btn_wrap .search_btn {
  position: fixed;
  left: 16px;
  bottom: 20px;
  padding: 12px 24px;
  background: #000;
  border-radius: 52px;
  color: #fff;
  -webkit-box-shadow: 0 1px 10px 0 rgba(255, 255, 255, 0.3);
  box-shadow: 0 1px 10px 0 rgba(255, 255, 255, 0.3);
  outline: 0;
}

.btn_wrap .search_btn > span {
  position: relative;
  padding-left: 28px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.9px;
  line-height: 1.5;
}

.btn_wrap .search_btn > span:before {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 19px;
  height: 19px;
  background: url(../img/ico_gnb_search.png) no-repeat 50% 50%;
  background-size: auto 19px;
  content: "";
}

@media screen and (max-height: 1080px) {
  .btn_wrap .search_btn {
    padding: 7px 14px;
  }

  .btn_wrap .search_btn > span {
    padding-left: 20px;
    font-size: 14px;
  }

  .btn_wrap .search_btn > span:before {
    width: 14px;
    height: 14px;
    background-size: auto 14px;
  }
}

@media screen and (max-width: 1600px) {
  .btn_wrap .search_btn {
    padding: 6px 14px;
  }

  .btn_wrap .search_btn > span {
    padding-left: 20px;
    font-size: 14px;
  }

  .btn_wrap .search_btn > span:before {
    width: 14px;
    height: 14px;
    background-size: auto 14px;
  }
}

@media screen and (max-width: 1023px) and (orientation: landscape) {
  .btn_wrap .search_btn {
    padding: 6px 14px;
  }

  .btn_wrap .search_btn > span {
    padding-left: 20px;
    font-size: 14px;
  }

  .btn_wrap .search_btn > span:before {
    width: 14px;
    height: 14px;
    background-size: auto 14px;
  }
}

@media screen and (max-width: 690px) {
  .btn_wrap .search_btn {
    left: 10px;
    bottom: 10px;
  }
}

/* base */
::-webkit-scrollbar {
  height: 10px;
  background: transparent;
}

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

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

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

html body,
html button,
html input,
html select,
html table,
html textarea {
  color: #515151;
}

html,
html body {
  width: 100%;
  height: 100%;
  overflow-y: hidden;
}

body.fixed {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

@media screen and (max-width: 1023px) {
  html,
  html body {
    height: 100%;
  }
}

#app {
  width: 100%;
  height: 100%;
}

.scroll_auto,
.scroll_auto body {
  overflow-y: visible !important;
}

/* start modal style css */
.start-modal {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 100;
}

.start-modal .start-bg {
  height: 100%;
}

.start-modal .start-bg .modal-contents {
  position: fixed;
  left: 7vw;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.modal-contents .brand-logo {
  width: 27vw;
  display: flex;
  align-items: center;
}

.modal-contents .brand-logo img {
  width: 100%;
}

.modal-contents .main-title {
  margin: 1.5vmax 0 3vmax;
}

.modal-contents .main-title p {
  font-size: 1vw;
  color: #fff;
  font-weight: 500;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.9);
}

.modal-contents .main-title p:nth-child(1) {
  margin-bottom: 10px;
}

.wrap_skip-btn {
  display: none;
  position: fixed;
  left: 50%;
  bottom: 6%;
  transform: translateX(-50%);
  z-index: 20;
  color: #fff;
  text-align: center;
}

.wrap_skip-btn.active {
  display: block;
  z-index: 1000;
}

.skip-btn {
  display: flex;
  align-items: center;
}

.skip-btn button {
  height: 2.3vw;
  width: 4vw;
  min-height: 44px;
  min-width: 80px;
  background: #ff0201;
  border-radius: 30px;
  opacity: 0.8;
  transition: all 0.4s;
  -webkit-box-shadow: 0px 0px 15px 1px rgba(0, 0, 0, 6%);
  box-shadow: 0px 0px 15px 1px rgba(0, 0, 0, 6%);
  color: #fff;
  font-size: 0.8vw;
}

.skip-btn button:hover {
  opacity: 1;
}

@media screen and (max-width: 1023px) and (orientation: portrait) {
  .modal-contents .brand-logo {
    width: 50vw;
  }

  .modal-contents .main-title p {
    font-size: 2vw;
  }
}

@media screen and (max-height: 768px) {
  .modal-contents .main-title p {
    font-size: 14px;
  }

  .skip-btn button span {
    font-size: 16px;
  }
}

/* nav */
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 500;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.header .header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 4.5rem 0 4.5rem;
}

.header .header-wrap > div {
  z-index: 2000;
  display: flex;
  align-items: center;
}

.header .header-wrap > .left .site_logo {
  display: block;
}

.site_logo h1 {
  height: 35px;
}

.site_logo h1 img {
  height: 100%;
}

@media screen and (max-width: 1023px) {
  .header .header-wrap {
    padding: 10px 1.8rem;
  }
}
@media screen and (max-width: 690px) {
  .site_logo h1 {
    height: 20px;
  }
}

.sound-box {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.sound-icon {
  position: relative;
  height: 50px;
  width: 50px;
}

.sound-icon img {
  width: 100%;
}

/* 우상단 버튼 크기 공통 */
@media screen and (max-width: 1023px) {
  .sound-icon,
  .btn_menu {
    height: 45px !important;
    width: 45px !important;
  }

  .header .header-wrap .quick_nav a {
    font-size: 16px;
  }
}

@media screen and (max-width: 690px) {
  .header .header-wrap .quick_nav {
    display: none;
  }

  .sound-icon,
  .btn_menu {
    height: 35px !important;
    width: 35px !important;
  }
}

.header .gnb-icon .icon {
  margin: 8px auto;
  width: 90%;
  height: 2px;
  background: #fff;
  transition: all 0.4s;
}

.header .btn-lobby {
  position: absolute;
  top: 50%;
  left: 16px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  padding: 8px 24px;
  background: #da9528;
  -webkit-box-shadow: none;
  box-shadow: none;
}

@media screen and (max-width: 1023px) {
  .header .btn-lobby {
    left: auto;
    right: 10px;
    padding: 6px 24px;
  }
}

/* pc nav */
.gnb.is_pc {
  text-align: center;
}

.gnb.is_pc .gnb-btn {
  display: none;
}

.gnb.is_pc .gnb-wrap {
  position: absolute;
  top: 0;
  right: -50%;
  width: 30%;
  height: 100vh;
  transition: all 0.4s;
  z-index: -1;
}

.gnb.is_pc .gnb-list {
  padding: 6rem 2rem;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.gnb.is_pc .gnb-item {
  text-align: right;
  padding: 20px 0;
}

.gnb.is_pc .gnb-item:not(:first-child) {
  margin-left: 26px;
}

.gnb.is_pc .gnb-item a,
.gnb.is_pc .gnb-item button {
  display: block;
  position: relative;
  font-size: 16px;
  line-height: 34px;
  padding: 0;
  font-weight: 700;
  color: #fff;
  -webkit-transition: color 0.4s ease-in-out;
  transition: color 0.4s ease-in-out;
}

.gnb.is_pc .gnb-item a:before,
.gnb.is_pc .gnb-item button:before {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 0;
  height: 3px;
  background: #009eb4;
  content: "";
  -webkit-transition: width 0.4s ease-in-out;
  transition: width 0.4s ease-in-out;
}

.gnb.is_pc .gnb-item .gnb-title {
  font-size: 2.5rem;
}

.gnb.is_pc .gnb-item .menu_btn-open {
  color: #0063c3;
}

.gnb.is_pc .is_selected.gnb-item a,
.gnb.is_pc .is_selected.gnb-item button {
  color: #009eb4;
}

@media screen and (max-width: 1600px) {
  .gnb.is_pc .gnb-item:not(:first-child) {
    margin-left: 22px;
  }
}

@media screen and (max-width: 1200px) {
  .gnb.is_pc .gnb-item:not(:first-child) {
    margin-left: 14px;
  }

  .gnb.is_pc .gnb-item a,
  .gnb.is_pc .gnb-item button {
    font-size: 14px;
  }
}

.gnb-wrap .gnb-sub-list {
  display: none;
}

/* res nav */
.gnb.is_res .gnb-wrap {
  position: absolute;
  top: 50px;
  left: 0;
  width: 100%;
}

.gnb.is_res .gnb-btn {
  position: absolute;
  z-index: 10;
  background: url(../img/ico_menu.png) no-repeat 0 50%;
  background-size: 18px;
  opacity: 0.7;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  outline: 0;
}

.gnb.is_res .gnb-list {
  display: none;
  width: 100%;
  padding: 6px 0 8px;
  background: #263d4b;
  -webkit-box-shadow: 0px 3px 27px rgba(0, 0, 0, 0.45);
  box-shadow: 0px 3px 27px rgba(0, 0, 0, 0.45);
}

.gnb.is_res .gnb-item a,
.gnb.is_res .gnb-item button {
  display: block;
  padding: 6px 17px;
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: -0.7px;
  color: #fff;
}

.gnb.is_res .gnb-title {
  display: block;
  position: relative;
}

.breadcrumbs {
  display: inline-block;
  padding-left: 30px;
  vertical-align: middle;
  opacity: 0.7;
}

.breadcrumbs_item {
  font-size: 16px;
  color: #fff;
}

.breadcrumbs_item strong {
  padding-left: 0;
}

@media screen and (max-width: 999px) {
  .breadcrumbs_item span:not(.is_now) {
    display: none;
  }
}

.global .global-list {
  width: 100%;
  height: 100%;
}

.global-item {
  display: inline-block;
  width: 100%;
  height: 100%;
  margin-left: 12px;
  border-radius: 24px;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
  vertical-align: middle;
}

.global-item:first-child {
  margin-left: 0;
}

.global .global-link {
  width: 120px;
  height: 24px;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.global .global-link .btn_link {
  background-size: contain;
}

.global-btn,
.global .btn_help_pop,
.global .btn_link {
  display: block;
  width: 100%;
  height: 100%;
  background: no-repeat 50% 50%;
  background-size: 24px;
  outline: 0;
}

.global-btn.ko {
  background-image: url(../img/ico_ko.png);
}

.global-btn.en {
  background-image: url(../img/ico_en.png);
}

.global .btn_help_pop {
  background-image: url(../img/ico_help_pop.png);
}

.global .btn_vtower {
  background-image: url(https://vr.miceview.kr/path/assets/images/immersive-w.png);
}

@media screen and (max-width: 1023px) {
  .global-item {
    margin-left: 6px;
  }

  .global .global-link {
    width: 20px;
    height: 20px;
  }

  .global .btn_vtower {
    background-image: url(https://vr.miceview.kr/path/assets/images/immersive-m.png);
  }
}

@media screen and (max-width: 690px) {
  .global-btn,
  .global .btn_help_pop,
  .global .btn_link {
    background-size: 20px;
  }
}

@media screen and (max-width: 480px) {
  .global .btn_help_pop {
    background-size: 18px;
  }
}

/* page */
.main {
  height: 100%;
  overflow-y: hidden;
  padding-top: 0 !important;
}

.main .content {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.main .content .play_btn {
  position: absolute;
  bottom: 140px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.main .content .btn {
  text-shadow: none;
}

.main .intro_title {
  position: fixed;
  top: 2%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 26%;
  max-width: 500px;
}

@media screen and (max-width: 1023px) {
  .main .intro_title {
    width: 300px;
  }
}

@media screen and (max-width: 1023px) and (orientation: landscape) {
  .main .intro_title {
    width: 240px;
  }
}

@media screen and (max-width: 690px) {
  .main .intro_title {
    width: 240px;
  }
}

.main-title_box {
  position: fixed;
  left: 50%;
  bottom: 6%;
  transform: translateX(-50%);
  z-index: 20;
  color: #fff;
  text-align: center;
}

.main_brand {
  padding-bottom: 1rem;
}

.main_brand img {
  height: 100px;
}

.main-title_box .main_title {
  font-weight: 600;
  font-size: 1.5rem;
  color: #0a0a0a;
  text-align: center;
}

.main-title_box .main_title p {
  padding-bottom: 0.625rem;
}

.main-title_box .main_title p:nth-child(1) {
  font-size: 1.2rem;
  padding-bottom: 2rem;
}

.main-title_box .main_title-eng {
  display: block;
  font-size: 30px;
  font-weight: 400;
}

.main-title_box .main_desc {
  font-size: 18px;
  word-break: keep-all;
}

@media screen and (max-width: 1023px) {
  .main_brand img {
    height: 80px;
  }
}

@media screen and (max-width: 690px) {
  .main_brand img {
    height: 48px;
  }

  .main-title_box .main_title {
    font-size: 1.45rem;
  }

  .main-title_box .main_title p:nth-child(2),
  .main-title_box .main_title p:nth-child(3) {
    display: none;
  }
}

@media screen and (max-width: 400px) {
  .main_brand img {
    height: 48px;
  }
}

.main-title_box .afterPlay {
  margin-top: 1.25rem;
}

.afterPlay {
  display: flex;
  align-items: center;
}

.afterPlay .btn {
  display: inline-block;
  position: relative;
  transition: all 0.3s;
  opacity: 1;
}

.afterPlay .btn:hover {
  opacity: 0.8;
}

.afterPlay .btn span {
  display: block;
  padding: 0 2vw;
  height: 3vw;
  line-height: 3vw;
  background: rgba(255, 2, 1, 0.7);
  border-radius: 3vw;
  font-weight: 400;
  color: #fff;
  font-size: 1vw;
}

@media screen and (max-width: 1023px) {
  .afterPlay .btn span {
    padding: 0 20px;
    height: 40px;
    line-height: 40px;
    border-radius: 40px;
    font-size: 16px;
  }
}

@media screen and (max-width: 690px) {
  .main-title_box .afterPlay {
    margin-top: 10px;
  }

  .main-title_box .afterPlay .btn {
    width: 50px;
    height: 50px;
  }
}

@media screen and (max-height: 888px) {
  .main_brand img {
    height: 5.3rem;
  }

  .main-title_box .main_title {
    font-size: 1.25rem;
  }

  .afterPlay .btn img {
    height: 50%;
  }
}

@media screen and (max-height: 650px) {
  .main_brand img {
    height: 4rem;
  }

  .main-title_box .main_title p {
    padding-bottom: 0.5rem;
  }

  .main-title_box .main_title p:nth-child(1) {
    font-size: 1rem;
    padding-bottom: 1.5rem;
  }

  .main-title_box .main_title {
    font-size: 1rem;
  }
}

.main .btn.beforePlay > span {
  position: relative;
  padding-left: 27px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.9px;
  line-height: 1.5;
}

.main .btn.beforePlay > span:after {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 17px;
  height: 21px;
  background: url(../img/material-play-arrow.png) no-repeat 50% 50%;
  content: "";
}

.main_video {
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover;
  object-fit: cover;
  background: url(../assets/video/intro_thumbnail.jpg) no-repeat 50% 50%;
  background-size: cover;
}

@media screen and (max-width: 1023px) {
  .main {
    height: 100%;
    overflow: overlay;
  }

  .main .content .play_btn {
    bottom: 140px;
    width: 100%;
    text-align: center;
  }
}

@media screen and (max-width: 1023px) and (orientation: landscape) {
  .main .content .play_btn {
    bottom: 10%;
    width: 100%;
    text-align: center;
  }
}

@media screen and (max-width: 690px) {
  .main .content .play_btn {
    bottom: 12%;
    width: 100%;
    text-align: center;
  }
}

.lobby {
  width: 100%;
  height: 100%;
  background: #000;
  overflow: auto;
  overflow: overlay;
}

.lobby .contents {
  position: relative;
  margin: 0 auto;
  height: 100%;
  width: 100%;
  text-align: center;
}

@media screen and (max-width: 1023px) {
  .wrap_scroll {
    width: 1280px !important;
  }
}

@media screen and (max-height: 530px) {
  .wrap_scroll {
    width: 960px !important;
  }
}

.lobby .contents .dg_logo {
  position: fixed;
  top: 80px;
  right: 40px;
  z-index: 1;
  height: 60px;
}

.lobby .contents .dg_logo img {
  height: 100%;
}

@media screen and (max-width: 1200px) {
  .lobby .contents .dg_logo {
    height: 45px;
  }
}

@media screen and (max-height: 1080px) {
  .lobby .contents .dg_logo {
    height: 40px;
  }
}

@media screen and (max-width: 1023px) {
  .lobby .contents .dg_logo {
    top: 10px;
    right: 10px;
    height: 40px;
  }
}

@media screen and (max-width: 690px) {
  .lobby .contents .dg_logo {
    height: 30px;
  }
}

.lobby .contents .lobby_logo {
  position: fixed;
  top: 70px;
  left: 20px;
  z-index: 1;
  height: 50px;
}

.lobby .contents .lobby_logo img {
  height: 100%;
}

@media screen and (max-height: 1080px) {
  .lobby .contents .lobby_logo {
    height: 40px;
  }
}

@media screen and (max-width: 1600px) {
  .lobby .contents .lobby_logo {
    top: 10px;
    height: 30px;
  }
}

@media screen and (max-width: 690px) {
  .lobby .contents .lobby_logo {
    height: 38px;
    position: static;
    margin: 50px auto 0;
  }
}

.lobby .contents .lobby_miceview {
  position: fixed;
  bottom: 1%;
  right: 20px;
  z-index: 1;
  height: 40px;
}

.lobby .contents .lobby_miceview img {
  height: 100%;
}

@media screen and (max-height: 1080px) {
  .lobby .contents .lobby_miceview {
    height: 34px;
  }
}

@media screen and (max-width: 1023px) {
  .lobby .contents .lobby_miceview {
    height: 30px;
  }
}

@media screen and (max-width: 690px) {
  .lobby .contents .lobby_miceview {
    right: 10px;
    height: 20px;
  }
}

.main .lobby_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
}

.not_mobile {
  display: block !important;
}

.main .lobby_bg .bg_img {
  background: url(../img/220407_RandingPage.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
}

.main .lobby_bg .bg_img .bg_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  mix-blend-mode: screen;
}

@media screen and (max-width: 1023px) {
  .main .lobby_bg .bg_img.only_res {
    display: inline-block;
  }
}

@media screen and (max-width: 1023px) and (orientation: landscape) {
  .main .lobby_bg .bg_img {
    background-size: 100% 100%;
  }
}

@media screen and (max-width: 1023px) and (orientation: portrait) {
  .main .lobby_bg .bg_img {
    background-size: 115% 100%;
  }
}

.main .lobby_btn_wrap {
  position: relative;
  width: 100%;
  height: 100%;
}

.lobby_btn_wrap .each_lobby {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  position: absolute;
  left: 0;
  top: 0;
}

.lobby_btn_wrap .each_btn {
  display: inline-block;
  width: 70px;
  height: 70px;
  cursor: pointer;
  border-radius: 100%;
  transition: all 0.3s;
  position: relative;
}

.lobby_btn_wrap .each_btn:hover {
  width: 80px;
  height: 80px;
}
.lobby_btn_wrap .each_btn:hover + .info_box {
  opacity: 1;
}

.each_btn.sewoon {
  background: rgba(17, 50, 44, 0.5);
}

.each_btn.hanho {
  background: rgba(0, 39, 106, 0.5);
}

.each_btn.botanik {
  background: rgba(210, 95, 21, 0.5);
}

.each_btn.gravity {
  background: rgba(170, 169, 169, 0.5);
}

.each_btn.hillstate {
  background: rgb(152, 28, 30, 0.5);
}

.lobby_btn_wrap .each_btn .each_btn_logo {
  position: absolute;
  margin-left: 20px;
  width: 200px;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
}

.lobby_btn_wrap .each_btn .each_btn_logo img {
  height: auto;
  width: 100%;
}

.lobby_btn_wrap .each_btn.on {
  background-image: url(../img/btn-close-modal.png);
}

.lobby_btn_wrap .info_box {
  opacity: 0;
  max-width: 17rem;
  padding: 1.66rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.9);
  -webkit-box-shadow: 0px 0px 18px 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 18px 5px rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
}

.lobby_btn_wrap .info_box.active {
  opacity: 1;
}

.lobby_btn_wrap .info_box .info_desc {
  text-align: center;
  letter-spacing: -0.05em;
  word-break: keep-all;
}

.lobby_btn_wrap .info_box .info_desc p:nth-child(1) {
  font-size: 1.1rem;
  color: #111;
  font-weight: 600;
  padding-bottom: 10px;
  letter-spacing: -0.075em;
}

.lobby_btn_wrap .info_box .info_desc p:nth-child(2) {
  font-size: 0.93rem;
  list-style: 1.7;
}

.lobby .contents .lobby_btn_wrap .btn {
  position: absolute;
  z-index: 1;
}

.lobby_btn_wrap .enter-btn {
  display: block;
  position: relative;
  text-align: center;
}

.lobby_btn_wrap .enter-btn a {
  display: inline-block;
  font-size: 0.93rem;
  color: #fff;
  margin-top: 1rem;
  padding: 0.7rem 1.5rem;
  background-color: #302e42;
  border-radius: 6px;
  line-height: 1;
}

@media screen and (max-height: 1024px) {
  .lobby_btn_wrap .info_box {
    padding: 1.3rem 1.3rem 1.7rem;
  }

  .lobby_btn_wrap .each_btn {
    width: 50px;
    height: 50px;
  }

  .lobby_btn_wrap .each_btn .each_btn_logo {
    width: 150px;
  }
}

@media screen and (max-width: 1023px) {
  .lobby_btn_wrap .each_btn {
    width: 50px;
    height: 50px;
  }
}

@media screen and (max-width: 690px) {
  .lobby_btn_wrap .each_btn {
    width: 35px;
    height: 35px;
  }
}

@media screen and (max-height: 530px) {
  .lobby_btn_wrap .each_btn {
    width: 36px;
    height: 36px;
  }
}

.lobby .contents .lobby_btn_wrap .btn:before {
  position: absolute;
  top: -8px;
  left: -8px;
  z-index: -1;
  width: 100%;
  height: 100%;
  border-radius: 52px;
  border: 8px solid #fff;
  opacity: 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  content: "";
}

.lobby .contents .lobby_btn_wrap .btn > span {
  font-size: 18px;
}

.lobby .contents .lobby_btn_wrap .btn:hover:before,
.lobby .contents .lobby_btn_wrap .btn:focus:before {
  opacity: 1;
}

.lobby .contents .lobby_btn_wrap .btn_entry {
  top: 90%;
  left: 47.5%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.lobby .contents .lobby_btn_wrap .btn_hall1 {
  top: 34%;
  left: 38%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.lobby .contents .lobby_btn_wrap .btn_hall2 {
  top: 42%;
  left: 65%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 1600px) {
  .lobby .contents .lobby_btn_wrap .btn {
    padding: 6px 14px;
  }

  .lobby .contents .lobby_btn_wrap .btn > span {
    font-size: 14px;
  }
}

@media screen and (max-width: 1023px) {
  .lobby .contents .lobby_btn_wrap .btn:before {
    display: none;
  }

  .lobby .contents .lobby_btn_wrap .btn > span {
    font-size: 14px;
  }

  .lobby .contents .btn_entry-pc {
    top: 96px;
    left: 36px;
  }
}

@media screen and (max-height: 1080px) {
  .lobby .contents .lobby_btn_wrap .btn {
    padding: 6px 14px;
  }

  .lobby .contents .lobby_btn_wrap .btn > span {
    font-size: 14px;
  }
}

@media screen and (max-width: 690px) {
  .lobby .contents .lobby_btn_wrap .btn {
    position: static;
    width: 80%;
    max-width: 360px;
    padding: 6px 14px;
    -webkit-transform: none;
    transform: none;
  }

  .lobby .contents .lobby_btn_wrap .btn:not(:first-child) {
    margin-top: 10px;
  }

  .lobby .contents .lobby_btn_wrap .btn > span {
    font-size: 15px;
    word-break: keep-all;
  }

  .lobby .contents .lobby_btn_wrap .btn_entry {
    display: inline-block;
  }
}

.vr-player,
.videoplayer,
.total {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  object-fit: cover;
}

.videoplayer {
  display: none;
}

.vr-player .vr-iframe,
.total .vr-iframe {
  width: 100% !important;
  height: 100% !important;
  border: 0px;
}

/* @media screen and (max-width: 1200px) {
  .vr-player.mobile{
    padding-top: 70px;
  }
} */
@media screen and (max-width: 1023px) {
  .vr-player{
    padding-top: 66px;
  }
}
@media screen and (max-width: 690px) {
  .vr-player{
    padding-top: 56px;
  }
}
/* video */
#video-content {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
  background: #000;
}

#video-content video {
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (max-width: 1023px) {
  #video-content video {
    -o-object-fit: contain;
    object-fit: contain;
  }
}

@media screen and (max-width: 1023px) and (orientation: landscape) {
  #video-content video {
    -o-object-fit: contain;
    object-fit: contain;
  }
}

.vjs-picture-in-picture-control {
  display: none !important;
}

.vjs-fullscreen-control {
  display: none !important;
}

.video-controller {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 300;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.video-controller .btn {
  padding: 16px 32px;
  background: 9327ff;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(1%, #9327ff),
    to(#4a1480)
  );
  background: linear-gradient(to right, #9327ff 1%, #4a1480 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='$btn_color1', endColorstr='$btn_color2', GradientType=1);
  border-radius: 50px;
  color: #fff;
  -webkit-box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.3);
}

.video-controller .btn.beforePlay > span {
  position: relative;
  padding-left: 27px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.9px;
  line-height: 1.5;
}

.video-controller .btn.beforePlay > span:after {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 17px;
  height: 21px;
  background: url(../img/material-play-arrow.png) no-repeat 50% 50%;
  content: "";
}

.video-controller .btn.afterPlay {
  display: none;
}

@media screen and (max-width: 690px) {
  .video-controller .btn {
    padding: 12px 24px;
  }

  .video-controller .btn.beforePlay > span {
    font-size: 1.5rem;
  }
}

.video-unplay-background {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 105;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: 100%;
  background-size: cover;
  background-position: 50% 50%;
}

.video-unplay-background:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.15;
  content: "";
}

.video-btns {
  display: none;
  position: absolute;
  top: 20px;
  left: 0;
  z-index: 300;
  width: 100%;
  text-align: center;
}

.video-btns .vdo-btn {
  position: fixed;
  bottom: 42px;
  right: 15px;
  padding: 10px 18px;
  background: #9327ff;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(1%, #9327ff),
    to(#4a1480)
  );
  background: linear-gradient(to right, #9327ff 1%, #4a1480 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='$btn_color1', endColorstr='$btn_color2', GradientType=1);
  border-radius: 30px;
  color: #fff;
  -webkit-box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.3);
}

.video-btns .vdo-btn > span {
  position: relative;
  padding-right: 14px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.9px;
  line-height: 1.5;
}

.video-btns .vdo-btn > span:before {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 7px;
  height: 12px;
  background: url(../img/material-keyboard-arrow-right.png) no-repeat 0 50%;
  background-size: auto 12px;
  content: "";
}

@media screen and (max-width: 1023px) {
  .video-btns .vdo-btn {
    padding: 6px 16px;
    left: auto;
    right: 8px;
    -webkit-transform: none;
    transform: none;
  }

  .video-btns .vdo-btn > span {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 690px) {
  .video-btns .vdo-btn > span {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 1023px) and (orientation: landscape) {
  .video-btns .vdo-btn {
    padding: 6px 16px;
    left: auto;
    right: 8px;
    -webkit-transform: none;
    transform: none;
  }

  .video-btns .vdo-btn > span {
    font-size: 1.4rem;
  }
}

.miceview_logo {
  position: fixed;
  bottom: 3%;
  right: 40px;
  z-index: 1;
  height: 50px;
}

.miceview_logo img {
  height: 100%;
}

@media screen and (max-height: 1080px) {
  .miceview_logo {
    height: 40px;
  }
}

@media screen and (max-width: 1023px) {
  .miceview_logo {
    right: 10px;
    bottom: 1.5%;
  }
}

@media screen and (max-width: 690px) {
  .miceview_logo {
    display: none;
    bottom: 16px;
    height: 20px;
  }
}

/* footer */
.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 0 4vw 3vh;
}

.footer .brand_logo {
  display: flex;
  align-items: center;
  height: 4vh;
  max-height: 50px;
}

.footer .brand_logo div {
  height: 100%;
}

.footer .brand_logo div ~ div {
  margin-left: 1vw;
  height: 90%;
}

.footer .brand_logo div img {
  height: 100%;
}

@media screen and (max-width: 1023px) {
  .footer {
    flex-direction: column;
  }

  .footer .brand_logo {
    justify-content: center;
    margin-bottom: 1vw;
  }
}

@media screen and (max-width: 690px) {
  .footer .brand_logo {
    width: 100vw;
  }
}

@media screen and (max-height: 768px) {
  .footer {
    padding: 3rem;
  }
}

/* chrome_download */
.chrome_download {
  font-size: 0;
}

.chrome_download .msg,
.chrome_download .btn_chrome {
  display: inline-block;
  color: #fff;
  vertical-align: middle;
}

.chrome_download .msg {
  font-size: 17px;
  letter-spacing: -0.025em;
  text-shadow: 1px 1px 4px rgb(0 0 0 / 50%);
}

.chrome_download .btn_chrome {
  margin-left: 10px;
  padding: 4px 8px;
  border: 1px solid #fff;
  border-radius: 5px;
  font-size: 15px;
  letter-spacing: -0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.chrome_download .btn_chrome:hover,
.chrome_download .btn_chrome:focus {
  background: #fff;
  color: #707070;
}

@media screen and (max-width: 1023px) {
  .chrome_download .msg {
    font-size: 14px;
  }
}

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

.mobile-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.3);
  z-index: 20;
  border-radius: 15px;
  padding: 20px 30px;
}

.mobile-modal .mobile-modal-bg {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-modal .mobile-modal-bg .swipe-arrow {
  width: 30%;
}

.mobile-modal .mobile-modal-bg .swipe-icon {
  width: 40%;
  text-align: center;
  animation: swipe-icon 0.6s ease-in-out infinite alternate;
  transform: translateX(0);
}

@keyframes swipe-icon {
  0% {
    transform: translateX(-20px);
    opacity: 1;
  }

  100% {
    transform: translateX(20px);
    opacity: 0.5;
  }
}

.mobile-modal .mobile-modal-bg .swipe-icon img {
  width: 40%;
}

.mobile-modal .swipe-desc {
  font-size: 20px;
  color: #fff;
  text-align: center;
  word-break: keep-all;
}

@media screen and (max-width: 690px) {
  .mobile-modal {
    width: 80%;
  }

  .mobile-modal .swipe-desc {
    font-size: 16px;
  }
}

@media screen and (max-width: 4500px) {
  .mobile-modal .swipe-desc {
    font-size: 14px;
  }
}

/* modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 300;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.8px;
  line-height: 1.87;
  color: #fff;
  word-break: keep-all;
}

.modal.is_hide {
  display: none !important;
}

.hall2 .modal_inner-text > p {
  font-size: 20px;
}

.hall2 .modal_inner-text button {
  font-size: 18px;
  padding: 30px 30px 0 30px;
  opacity: 0.5;
  transition: all 0.4s;
  font-weight: 200;
  color: #fff;
}

.hall2 .modal_inner-text button:hover {
  opacity: 1;
}

.modal_inner-text > p:not(:first-child) {
  margin-top: 14px;
}

.modal .modal_inner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: 810px;
  height: auto;
  text-align: left;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 5px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.modal .modal_inner:not(:first-child) {
  display: none;
}

.modal .modal_inner.modal_inner_help {
  max-width: none;
  height: 100%;
  background: transparent;
}

.modal .modal_inner.modal_inner_help .help_desc {
  line-height: 1.5;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.modal .modal_inner .modal_help-center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 536px;
  padding: 0;
  -webkit-transform: translate(-50%, -60%);
  transform: translate(-50%, -60%);
}

.modal .modal_inner .modal_help-center-desc {
  background: rgba(0, 0, 0, 0.7);
  border-radius: 5px;
  padding: 30px 40px;
  max-height: 50vh;
  overflow: auto;
}

/* 마우스 관람 안내문 style code*/
.modal_inner .modal_inner-desc {
  padding: 20px 0 0 0;
}

.modal_inner .modal_inner-desc .inner_title {
  position: relative;
  width: 100%;
  text-align: center;
}

.modal_inner .modal_inner-desc .inner_title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  border: 2px solid #3496fa;
}

.modal_inner .modal_inner-desc .inner_title .inner_title-text {
  display: inline-block;
  position: relative;
  padding: 5px 20px;
  background: #3496fa;
  border-radius: 25px;
}

.modal_inner .inner_mouse-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
}

.modal_inner .inner_mouse-box .inner_each_mouse {
  width: 25%;
}

.modal_inner .inner_mouse-box .inner_each_mouse .mouse_img {
  width: 80%;
  margin: auto;
}

.modal_inner .inner_mouse-box .inner_each_mouse .mouse_desc {
  text-align: center;
}

.modal_inner .inner_mouse-box .inner_each_mouse .mouse_desc p {
  font-size: 14px;
}

.modal_inner .inner_mouse-box .inner_each_mouse .mouse_desc p:nth-child(1) {
  padding-top: 10px;
}

.modal_inner .inner_mouse-box .inner_each_mouse .mouse_desc p:nth-child(2) {
  font-weight: 200;
}

@media screen and (max-width: 690px) {
  .modal_inner .modal_inner-desc .inner_title .inner_title-text {
    font-size: 13px;
  }

  .modal_inner .inner_mouse-box .inner_each_mouse .mouse_desc span {
    font-size: 13px;
  }
}

/* ---------------------------------------------------------*/

.modal .modal_inner .modal_help-center .tutorial_video {
  outline: 0;
  vertical-align: top;
}

.modal .modal_inner .modal_help-center .modal_help-control-item {
  font-size: 0;
}

.modal
  .modal_inner
  .modal_help-center
  .modal_help-control-item:not(:first-child) {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #5a5a5a;
}

.modal .modal_inner .modal_help-center .modal_help-control-item .item_wrap {
  display: block;
  position: relative;
}

.modal .modal_inner .modal_help-center .modal_help-control-item .img_wrap {
  position: relative;
  display: inline-block;
  width: 68px;
  height: 68px;
  vertical-align: middle;
}

.modal .modal_inner .modal_help-center .modal_help-control-item .img_wrap img {
  position: absolute;
  width: 100%;
  height: 100%;
}

.modal .modal_inner .modal_help-center .modal_help-control-item .img_desc {
  position: absolute;
  top: 50%;
  padding-left: 16px;
  font-size: 16px;
  letter-spacing: -1px;
  vertical-align: middle;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.modal .modal_inner .modal_help-center .modal_help-btn_unit {
  margin-bottom: 16px;
  text-align: center;
  font-size: 0;
}

.modal .modal_inner .modal_help-center .chk_wrap-not_today {
  display: inline-block;
  margin-right: 30px;
  vertical-align: middle;
}

.modal .modal_inner .modal_help-center .inp_chk_wrap.inp_custom .inp_chk {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  border: 0;
  width: 1px;
  height: 1px;
  clip: rect(1px, 1px, 1px, 1px);
}

.modal
  .modal_inner
  .modal_help-center
  .inp_chk_wrap.inp_custom
  .inp_chk
  + label {
  background: transparent;
  color: #fff;
  outline: 0;
}

.modal
  .modal_inner
  .modal_help-center
  .inp_chk_wrap.inp_custom
  .inp_chk
  + label:before {
  width: 18px;
  height: 18px;
  background: url(../img/ico_check_enabled.svg);
  background-size: 18px;
}

.modal
  .modal_inner
  .modal_help-center
  .inp_chk_wrap.inp_custom
  .inp_chk:checked
  + label:before {
  background-image: url(../img/ico_check_activated.svg);
}

.modal .modal_inner .modal_help-center .btn_wrap {
  display: inline-block;
  margin-top: 0;
  vertical-align: middle;
}

.modal .modal_inner .modal_help-center .btn_wrap .btn {
  /* padding: 12px 72px; */
  background: linear-gradient(147deg, #302e42 12%, #0a090d 112%);
  opacity: 1;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.modal .modal_inner .modal_help-center .btn_wrap .btn:hover,
.modal .modal_inner .modal_help-center .btn_wrap .btn:focus {
  opacity: 0.75;
}

.btn.btn_menu {
  margin-left: auto;
  padding: unset;
}

.btn.btn_menu .top {
  transform: translateY(2px) rotate(45deg);
}

.btn.btn_menu .bottom {
  transform: translateY(-5px) rotate(-45deg);
}

@media screen and (max-width: 690px) {
  .btn.btn_menu .top {
    width: 17px;
    transform: translateY(3px) rotate(45deg);
  }

  .btn.btn_menu .bottom {
    width: 17px;
    transform: translateY(-4px) rotate(-45deg);

    margin: 5px auto;
  }
}

/* 221028_jane 추가 ---------------------------------- */
/* 공통 */
.modal .modal_inner .modal_help-innav .arrow_box { position: absolute; top: 0; left: 0; width: 100%; height: 100%;}
.modal .help-innav_textbox .help-innav_title{color: #3496fa!important;}

/* 상단 왼쪽 안내문 */
.modal .modal_inner .modal_help-innav.left {position: absolute; top: 104px; left: 9px;}
.modal .modal_inner .modal_help-innav.left .help-innav-type {display: block; position: relative;}
.modal .modal_inner .modal_help-innav.left .help-innav-type .help-innav_textbox {position: absolute; top: 0; left: 104px; width: 150px; margin-top: 22px;}
.modal .modal_inner .modal_help-innav.left .tour_minimap .help-innav_textbox {margin-top: 20px;}
.modal .modal_inner .modal_help-innav.left .tour_important .help-innav_textbox {margin-top: 22px;}
.modal .modal_inner .modal_help-innav.left .help-innav-type .help-innav_textbox p{font-size: 11px; color: #fff; line-height: 1.4; text-align: left; word-break: break-word; letter-spacing: -0.5px;}
.modal .modal_inner .modal_help-innav.left .help-innav-type .help-innav_textbox p:not(:first-child) {padding-top: 4px;}
.modal .modal_inner .modal_help-innav.left .tour_autoplay .help-innav_textbox{margin-right: 120px;}
.modal .modal_inner .modal_help-innav.left .tour_origin .help-innav_textbox{margin-bottom: 134px; margin-right: 50px;}
.modal .modal_inner .modal_help-innav.left .tour_fullscreen .help-innav_textbox{margin-right: -140px;}
.modal .modal_inner .modal_help-innav.left .help-innav-type:before {display: block; width: 55px; height: 57px; margin: 0 auto; background-repeat: no-repeat; background-position: 50% 50%; background-size: cover; content: "";}

/* 상단 오른쪽 안내문 */
.modal .modal_inner .modal_help-innav.right{position: absolute; top: 8px; right: 8px;}
.modal .modal_inner .modal_help-innav.right .arrow_box::before {content: ''; background: #3496fa; position: absolute; top: 50%; right: 100%; margin-right: 0;}
.modal .modal_inner .modal_help-innav.right .arrow_box::after {content: ""; position: absolute; top: 0; right: 0; border: 2px solid #3496fa; border-top: none; border-left: none;}
.modal .modal_inner .modal_help-innav.right .help-innav-type {display: block; position: relative; height: 50px;}
.modal .modal_inner .modal_help-innav.right .help-innav-type .help-innav_textbox {position: absolute; top: 0; right: 104px; width: 130px; margin-top: 40px;}
.modal .modal_inner .modal_help-innav.right .help-innav-type .help-innav_textbox p{font-size: 11px; color: #fff; line-height: 1.4; text-align: right; word-break: break-word; letter-spacing: -0.5px; padding-top: 4px; word-break: keep-all;}
.modal .modal_inner .modal_help-innav.right .help-innav-type:before {display: block; width: 54px; height: 54px; margin: 0 auto; background-repeat: no-repeat; background-position: 50% 50%; background-size: 40px 40px; content: "";}

/* 좌측 안내문 지시선 공통 */
.modal .modal_inner .modal_help-innav.left .arrow_box::before{
  content: ""; background: #3496fa; position: absolute; top: 50%; transform: translateY(-50%); margin-left: 50px;
}
.modal .modal_inner .modal_help-innav.left .arrow_box::after{
  content: ""; position: absolute; top: 0; left: 0; border: 2px solid #3496fa; border-top: none; border-right: none;
}

/* -------------------------- */
.modal .modal_inner .modal_help-innav.left .tour_minimap .arrow_box::before {width : 46px; height: 2px;}
.modal .modal_inner .modal_help-innav.left .tour_minimap .arrow_box::after {content: none;}
.modal .modal_inner .modal_help-innav.left .tour_important .arrow_box::before {width: 46px; height: 2px;}
.modal .modal_inner .modal_help-innav.left .tour_important .arrow_box::after {content: none;}
.modal .modal_inner .modal_help-innav.left .tour_theme .arrow_box::before {width: 46px; height: 2px;}
.modal .modal_inner .modal_help-innav.left .tour_theme .arrow_box::after {content: none;}
.modal .modal_inner .modal_help-innav.right .tour_chat .arrow_box::before {width: 26px; height: 2px;}
.modal .modal_inner .modal_help-innav.right .tour_chat .arrow_box::after {width: 16px; height: 26px; margin-right: 78px; margin-top: 25px;}

.modal .modal_inner .modal_help-innav.left .help-innav-type.tour_minimap:before {background-image: url(../img/icon_EP/map.png);}
.modal .modal_inner .modal_help-innav.left .help-innav-type.tour_important:before {background-image: url(../img/icon_EP/spot.png);}
.modal .modal_inner .modal_help-innav.left .help-innav-type.tour_theme:before {background-image: url(../img/icon_EP/theme.png);}
.modal .modal_inner .modal_help-innav.right .help-innav-type.tour_chat:before {background-image: url(../img/icon_EP/chat.png);}
.modal .modal_inner .help_mobile_innav{display: none;}

/* 좌측 안내문 중앙 아이콘(주요위치) disabled 처리 */
.modal .modal_inner .modal_help-innav.left .tour_important.hidden:before {content: none;}
.modal .modal_inner .modal_help-innav.left .tour_important.hidden .arrow_box::before {content: none;}
.modal .modal_inner .modal_help-innav.left .tour_important.hidden .arrow_box::after {content: none;}
.modal .modal_inner .modal_help-innav.left .tour_important.hidden .help-innav_textbox {display: none;}

/* 하단 안내문 */
.modal .modal_inner .modal_help-innav.bottom {position: absolute; bottom: 9px; left: 50%; transform: translateX(-50%);}
.modal .modal_inner .modal_help-innav.bottom .help-innav {font-size: 0;}
.modal .modal_inner .modal_help-innav.bottom .help-innav-type {display: inline-block; position: relative; width: 40px;}
.modal .modal_inner .modal_help-innav.bottom .help-innav-type .help-innav_textbox {position: absolute; bottom: 0; right: 0; width: 150px; margin-bottom: 34px;}
.modal .modal_inner .modal_help-innav.bottom .help-innav-type .help-innav_textbox p{font-size: 11px; color: #fff; line-height: 1.4; text-align: left; letter-spacing: -0.5px; padding-top: 4px; word-break: keep-all;}
.modal .modal_inner .modal_help-innav.bottom .tour_autoplay .help-innav_textbox{margin-right: 4px;}
.modal .modal_inner .modal_help-innav.bottom .tour_origin .help-innav_textbox{margin-bottom: 110px; margin-right: -118px;}
.modal .modal_inner .modal_help-innav.bottom .tour_fullscreen .help-innav_textbox{margin-right: -150px;}

.modal .modal_inner .modal_help-innav.bottom .help-innav-type:before {display: block; width: 20px; height: 20px; margin: 0 auto; background-repeat: no-repeat; background-position: 50% 50%; background-size: cover; content: "";}

/* 하단 안내문 지시선 공통 */
.modal .modal_inner .modal_help-innav.bottom .arrow_box::before{
  content: ""; background: #3496fa; position: absolute; bottom: 0%; left: 0;
}
.modal .modal_inner .modal_help-innav.bottom .arrow_box::after{
  content: ""; background: #3496fa; position: absolute; bottom: 0%; left: 50%; margin-bottom: 28px; transform: translateX(-50%);
}

/* -------------------------- */
.modal .modal_inner .modal_help-innav.bottom .tour_autoplay .arrow_box::before {width: 90px; height: 2px; margin-left: -69px; margin-bottom: 91px;}
.modal .modal_inner .modal_help-innav.bottom .tour_autoplay .arrow_box::after {width: 2px; height: 64px;}
.modal .modal_inner .modal_help-innav.bottom .tour_origin .arrow_box::before {content: none;}
.modal .modal_inner .modal_help-innav.bottom .tour_origin .arrow_box::after {width: 2px; height: 80px;}
.modal .modal_inner .modal_help-innav.bottom .tour_fullscreen .arrow_box::before {width: 14px; height: 2px; margin-left: 19px; margin-bottom: 75px;}
.modal .modal_inner .modal_help-innav.bottom .tour_fullscreen .arrow_box::after {width: 2px; height: 48px;}

.modal .modal_inner .modal_help-innav.bottom .help-innav-type.tour_autoplay:before {background-image: url(../img/icon_EP/btn-icon-player-autoplay-df.png);}
.modal .modal_inner .modal_help-innav.bottom .help-innav-type.tour_origin:before {background-image: url(../img/icon_EP/btn-icon-player-origin-df.png);}
.modal .modal_inner .modal_help-innav.bottom .help-innav-type.tour_fullscreen:before {background-image: url(../img/icon_EP/btn-icon-player-fullscreen-df.png);}

@media screen and (max-width: 1023px) {
  /* 좌측 모바일 도구 버튼 안내문*/
  .modal .modal_inner .modal_help-innav.left{top: auto; bottom: 60px; left: 12px;}
  .modal .modal_inner .modal_help-innav.left .help-innav{display: none;}
  .modal .modal_help-innav.left .help_mobile_innav {display: block; width: 40px; height: 40px; background: url(../img/icon_EP/mobile_menu.svg) no-repeat center center; background-size: 100% 100%; margin-left: 8px;}
  .modal .modal_help-innav.left .help_mobile_innav .arrow_box::before {content: ""; width: 12px; height: 2px; background: #3496fa; position: absolute; top: 0; margin-left: 23px; margin-top: -64px;}
  .modal .modal_help-innav.left .help_mobile_innav .arrow_box::after {content: ""; width: 2px; height: 60px; background: #3496fa; position: absolute; bottom: 0%; left: 50%; margin-bottom: 44px; transform: translateX(-50%); border: none; top: auto;}
  .modal .modal_inner .modal_help-innav.bottom {bottom: 10px;}
  .modal .modal_inner .modal_help-innav.bottom .tour_autoplay .arrow_box::before {width: 40px; left: auto; right: 0; margin-right: -18px; margin-bottom: 147px;}
  .modal .modal_inner .modal_help-innav.bottom .tour_autoplay .arrow_box::after {height: 112px; margin-bottom: 36px;}
  .modal .modal_inner .modal_help-innav.bottom .tour_autoplay .help-innav_textbox {margin-right: -178px; margin-bottom: 90px;}
  .modal .modal_inner .modal_help-innav.bottom .tour_origin .arrow_box::after {height: 46px; margin-bottom: 36px;}
  .modal .modal_inner .modal_help-innav.bottom .tour_origin .help-innav_textbox {margin-bottom: 34px; margin-right: -136px;}
  .modal .modal_help-innav.left .help_mobile_innav .help-innav_textbox {position: absolute; bottom: 44px; left: 42px; width: 100px;}
  .modal .modal_help-innav.left .help_mobile_innav .help-innav_textbox p {font-size: 11px; color: #fff; line-height: 1.4; text-align: left; letter-spacing: -0.5px; padding-top: 4px;}
  .modal .modal_inner .modal_help-innav.bottom .help-innav-type{width: 42px;}
  .modal .modal_inner .modal_help-innav.bottom .help-innav-type:before{width: 24px; height: 24px;}
  .modal .modal_inner .modal_help-innav.bottom .tour_fullscreen{display: none;}
}
/* -------------------------------------------------------------------- */

.modal .btn_wrap {
  margin-top: 24px;
  text-align: right;
}

@media screen and (max-width: 1023px) {
  .modal .btn_wrap {
    margin-top: 16px;
  }
}

@media screen and (max-width: 1023px) and (orientation: landscape) {
  .modal {
    font-size: 15px;
  }

  .modal .modal_inner .modal_help-center .modal_help-control-item .img_wrap {
    width: 50px;
    height: 50px;
  }
}

@media screen and (max-width: 690px) {
  .modal .help_desc {
    font-size: 13px;
  }

  .modal_inner-text > p {
    font-size: 13px;
    line-height: 1.4;
  }

  .modal_inner-text > p h2 {
    font-size: 1.8rem;
    line-height: 1.4;
  }

  .modal .modal_inner .modal_help-center {
    width: 90%;
  }

  .modal .modal_inner .modal_help-center-desc {
    padding: 30px 20px;
  }

  .modal
    .modal_inner
    .modal_help-center
    .modal_help-control-item:not(:first-child) {
    margin-top: 8px;
    padding-top: 8px;
  }

  .modal .modal_inner .modal_help-center .modal_help-control-item .img_wrap {
    width: 44px;
    height: 44px;
  }

  .modal .modal_inner .modal_help-center .modal_help-control-item .img_desc {
    padding-left: 8px;
    font-size: 13px;
  }

  .modal .modal_inner .modal_help-center .chk_wrap-not_today {
    margin-right: 20px;
  }

  .modal
    .modal_inner
    .modal_help-center
    .inp_chk_wrap.inp_custom
    .inp_chk
    + label {
    font-size: 13px;
  }

  .modal .modal_inner .modal_help-center .btn_wrap .btn {
    font-size: 14px;
  }
}

@media screen and (max-width: 690px) {
  .modal .modal_inner .modal_help-center{
    transform: translate(-50%, -64%);
  }
}

@media screen and (max-width: 480px) {
  .modal .help_desc {
    font-size: 13px;
  }

  .modal_inner-text > p {
    font-size: 13px;
  }

  .modal .modal_inner .modal_help-center {
    width: 90%;
    top: 46%;
  }

  .modal .modal_inner .modal_help-center-desc {
    max-height: 45vh;
  }

  .modal
    .modal_inner
    .modal_help-center
    .modal_help-control-item:not(:first-child) {
    margin-top: 8px;
    padding-top: 8px;
  }

  .modal .modal_inner .modal_help-center .modal_help-control-item .img_wrap {
    width: 44px;
    height: 44px;
  }

  .modal .modal_inner .modal_help-center .modal_help-control-item .img_desc {
    padding-left: 8px;
    font-size: 13px;
    line-height: 1.5;
  }

  .modal .modal_inner .modal_help-center .btn_wrap .btn {
    font-size: 14px;
  }
}

@media screen and (max-width: 340px) {
  .modal .help_desc {
    font-size: 10px;
  }

  .modal_inner-text > p {
    font-size: 12px;
  }

  .modal
    .modal_inner
    .modal_help-center
    .modal_help-control-item:not(:first-child) {
    margin-top: 4px;
    padding-top: 4px;
  }

  .modal .modal_inner .modal_help-center .modal_help-control-item .img_wrap {
    width: 34px;
    height: 34px;
  }

  .modal .modal_inner .modal_help-center .modal_help-control-item .img_desc {
    font-size: 10px;
  }

  .modal .modal_inner .modal_help-center .modal_help-btn_unit {
    margin-top: 8px;
  }

  .modal .modal_inner .modal_help-center .chk_wrap-not_today {
    margin-right: 10px;
  }

  .modal .modal_inner .modal_help-center .btn_wrap .btn {
    /* padding: 4px 48px; */
    font-size: 11px;
  }
}

.modal_bg {
  position: fixed;
  /* top: 60px; */
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 110;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.5;
}

/* index_type info modal style */
.modal.typeinfo {
  width: 100%;
  height: 100%;

  display: none;
  z-index: 1000;
}

.modal.typeinfo .inner_modal {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #fff;
  position: relative;
}

.modal.typeinfo .inner_modal button {
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  z-index: 10;
  position: absolute;
  -webkit-box-shadow: 1px 1px 8px 1px rgb(20 20 20 / 30%);
  box-shadow: 1px 1px 8px 1px rgb(20 20 20 / 30%);
  background-color: #fff;
  padding: 2px;
}

.modal.typeinfo .inner_modal button .ico_close {
  width: 50%;
  vertical-align: middle;
}

.modal.typeinfo .inner_modal .modal_contents {
  width: 100%;
  height: 100%;
  overflow-y: hidden;
}
