:root {
  --project-main-color: rgba(52, 195, 129, 1);
  --project-main-color-hover: rgba(52, 195, 129, 0.7);
  --project-custom-color: rgba(10, 56, 173, 1);
  --project-custom-color-hover: rgba(10, 56, 173, 0.6);
}
/* common */
@font-face {
  font-family: 'NanumSquareNeo-Variable';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_11-01@1.0/NanumSquareNeo-Variable.woff2')
    format('woff2');
}

/* default btn style */
.btn_style {
  background: #34C381;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(1%, #34C381),
    to(#34C381)
  );
  background: linear-gradient(to right, #34C381 1%, #34C381 100%);
  transition: opacity 0.3s;
}
.btn_style:hover {
  opacity: 0.7;
}
.start_btn_style {
  padding: 12px 72px;
  background: linear-gradient(to right, #ced4da 1%, rgb(105, 105, 105) 80%);
  opacity: 1;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
.start_btn_style:hover,
.start_btn_style:focus {
  opacity: 0.75;
}

/* base ------------------------------------------------------------------------------------------------------------ */
/* scroll bar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: #535353;
  border-radius: 20px;
}

html body,
html button,
html input,
html select,
html table,
html textarea {
  color: #515151;
}
html,
html body {
  width: 100%;
  height: 100%;
  overflow-y: hidden;
  margin: 0;
}
body {
  font-family: NanumSquareNeo-Variable;
  font-weight: 300;
}

#app {
  width: 100%;
  height: 100%;
}
.scroll_auto,
.scroll_auto body {
  overflow-y: visible !important;
}

/* nav ------------------------------------------------------------------------------------------------------------ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 500;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: 60px; /* font-size: 0; */
  background-color: #434343;
}
.header.active {
  background: rgba(255, 255, 255, 0.6);
}
.header .header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  height: 100%;
}
.header .header-wrap > div {
  z-index: 2000;
  display: flex;
  align-items: center;
  padding-left: 14px;
}
.header .header-wrap > .right {
  padding-right: 14px;
  padding-left: 0;
}
.header .header-wrap > .right > div:not(:last-child) {
  padding-right: 8px;
}
.header .header-wrap > .left .site_logo {
  display: block;
}
.site_logo h1 {
  height: 20px;
}
.site_logo h1 img {
  height: 100%;
}

/* pc nav */
.gnb.is_pc {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center; /* is_selected */
  width: 100%;
  height: 100%;
}
.gnb.is_pc .gnb-btn {
  display: none;
}
.gnb.is_pc .gnb-wrap {
  height: 100%;
}
.gnb.is_pc .gnb-wrap .gnb-list {
  height: 100%;
}

.gnb.is_pc .gnb-item {
  position: relative;
  display: inline-block;
  width: 200px;
  height: 100%;
  transition: color 0.4s;
}
.gnb.is_pc .gnb-item a span {
  position: relative;
  transition: color 0.4s;
}
.gnb.is_pc .gnb-item a span::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 4px;
  background: #34C381;
  transition: width 0.4s;
}
.gnb.is_pc .gnb-item.is_active a span::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 4px;
  background: #34C381;
  width: 100%;
}
.gnb.is_pc .gnb-item:hover a span::after {
  width: 100%;
}
.gnb.is_pc .gnb-item a {
  display: block;
  position: relative;
  height: 100%;
  align-items: center;
  font-size: 16px; /* line-height: 34px; */
  padding: 0;
  font-weight: 700;
  color: #fff;
  word-break: keep-all;
  -webkit-transition: color 0.4s ease-in-out;
  transition: color 0.4s ease-in-out;
}
.gnb.is_pc .gnb-item a.nav_1depth {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
/* .gnb.is_pc .is_selected.gnb-item a.nav_1depth {color: #34C381;} */
.gnb.is_pc .is_selected.gnb-item a span::after {
  width: 100%;
}
.gnb.is_res .is_selected.gnb-item a.nav_1depth {
  color: #34C381;
}
.gnb.is_pc .is_selected.gnb-item a.nav_1depth:before,
.gnb.is_pc .gnb-item a.nav_1depth:hover:before,
.gnb.is_pc .gnb-item a.nav_1depth:focus:before,
.gnb.is_res .is_selected.gnb-item a.nav_1depth:before,
.gnb.is_res .gnb-item a.nav_1depth:hover:before,
.gnb.is_res .gnb-item a.nav_1depth:focus:before {
  width: 100%;
}
.gnb.is_pc .gnb-item .nav_2depth {
  display: none;
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  background: rgba(67,67,67,.7);
  padding: 10px;
}
.gnb.is_pc .gnb-item .nav_2depth li a,
.gnb.is_res .gnb-item .nav_2depth li a {
  padding: 10px 0;
  color: #fff;
  font-weight: 400;
  opacity: 1;
  transition: color 0.4s;
}
.gnb.is_pc .gnb-item .nav_2depth li a:hover,
.gnb.is_res .gnb-item .nav_2depth li a:hover {
  color: #34C381;
}
.gnb.is_pc .gnb-item .nav_2depth li.is_active a,
.gnb.is_res .gnb-item .nav_2depth li.is_active a {
  color: #34C381;
}
.gnb.is_pc .gnb-item:hover .nav_2depth {
  display: block;
}
.gnb.is_pc .gnb-item .nav_2depth .mobile-open {
  display: none;
}

/* res nav */
.gnb.is_res .gnb-wrap {
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
}
.gnb.is_res .gnb-btn {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  width: 30px;
  height: 24px;
  z-index: 10;
  background: url(../../static/img/icon/ico_menu-w.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%;
  background: rgba(153, 153, 153, 0.7);
}
.gnb.is_res .gnb-list .gnb-item:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.gnb.is_res .gnb-item a {
  display: block;
  padding: 10px 17px;
  font-size: 18px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: -0.7px;
  color: #fff;
}
.gnb.is_res .gnb-title {
  display: block;
  position: relative;
}
.gnb.is_res .gnb-item .nav_2depth {
  display: none;
}
.gnb.is_res .gnb-item .nav_2depth .mobile-open {
  display: block;
}
.gnb.is_res .gnb-item .nav_2depth li a {
  padding: 6px 30px;
}

/* second gnb style */
/* .gnb.is_pc.second_gnb .gnb-item {width: 250px;} */
.gnb.is_pc.second_gnb .gnb-item .nav_2depth {
  width: 150%; left: 50%; transform: translateX(-50%);
}
/* page - intro ----------------------------------------*/
/* Common class */
.main {
  height: 100%;
  overflow-y: hidden;
  padding-top: 0 !important;
}
.main .content {
  position: relative;
  width: 100%;
  height: 100%;
}
.main-title_box {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 20px 30px;
  z-index: 20;
  color: #fff;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}
.main-title_box .main_title {
  height: 200px;
  margin-bottom: 25px;
  font-weight: 500;
}
.main-title_box .main_title-eng {
  display: block;
  font-size: 30px;
  font-weight: 400;
}
.main-title_box .main_title img {
  height: 100%;
}
.main-title_box .main_desc {
  font-size: 18px;
  word-break: keep-all;
}
.main_brand {
  position: fixed;
  top: 24px;
  left: 16px;
  height: 80px;
}
.main_brand img {
  height: 100%;
}

/* default */
.container {
  width: 100%;
  height: 100%;
}

/* index_intro */
.intro_video_wrap {
  position: relative;
  height: 100vh;
}
.intro_video {
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover;
  object-fit: cover;
  background: url(../assets/video/intro_poster.png) no-repeat 50% 50%;
  background-size: cover;
}
.main_video.pc {
  display: block;
}
.main_video.mobile {
  display: none;
}

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

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

.modal-contents .brand-logo p {
  font-size: 50px;
  font-weight: bold;
  color: #fff;
  text-shadow: 1px 1px 3px rgb(0 0 0 / 90%);
  -webkit-text-shadow: 1px 1px 3px rgb(0 0 0 / 90%);
}

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

.modal-contents .main-title p {
  font-size: 18px;
  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;
}

.afterPlay {
  margin-top: 1rem;
}

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

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

.afterPlay .btn > span {
  display: flex !important;
  align-items: center;
  padding: 16px 32px;
  background: var(--project-main-color);
  border-radius: 40px;
  font-weight: 400;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
}

@media screen and (min-width: 1920px) {
  /* intro page */
  .modal-contents .brand-logo p {
    font-size: 2.8vw;
  }
  .modal-contents .main-title p {
    font-size: 1vw;
  }
}
@media screen and (max-width: 1200px) {
  /* gnb */
  .gnb.is_pc .gnb-item {
    width: 170px;
  }
  .gnb.is_pc .gnb-item a {
    font-size: 15px;
  }
  .gnb.is_pc .gnb-item a span {
    font-size: 16px;
  }
  .gnb.is_pc .gnb-item .nav_2depth li a,
  .gnb.is_res .gnb-item .nav_2depth li a {
    font-size: 16px;
  }
}
@media screen and (max-width: 1140px) {
  /* gnb */
  .gnb.is_pc .gnb-item {
    width: 165px;
  }
}

@media screen and (max-width: 1023px) {
  /* header */
  .header {
    height: 50px;
  }
  .header .header-wrap {
    padding: 8px 10px;
  }
  .header .header-wrap {
    justify-content: flex-end;
  }
  .header .header-wrap > .left {
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .header .header-wrap > .right {
    padding-right: 8px;
  }
  /* gnb */
  .gnb.is_pc .gnb-item:not(:first-child) {
    margin-left: 14px;
  }
  .gnb.is_pc .gnb-item a {
    font-size: 14px;
  }
  .gnb.is_res .gnb-wrap {
    top: 50px;
  }
  .gnb.is_res .gnb-item a {
    font-size: 16px;
  }
  /* intro page */
  .modal-contents .main-title p {
    font-size: 16px;
  }
  .afterPlay .btn > span {
    padding: 8px 24px;
    font-size: 20px;
  }
}
@media screen and (max-width: 1024px) and (orientation: landscape) {
  /* intro page */
  .modal-contents .brand-logo p {
    font-size: 5.2vw;
  }
  .modal-contents .main-title p {
    font-size: 2vw;
  }
}
@media screen and (max-width: 690px) {
  /* header */
  .site_logo h1 {
    height: 20px;
  }
  /* gnb */
  .gnb.is_res .gnb-item a {
    font-size: 16px;
  }
  /* intro page */
  .modal-contents .brand-logo p {
    font-size: 36px;
  }
  .modal-contents .main-title p {
    font-size: 14px;
  }
}
@media screen and (max-width: 480px) {
  /* header */
  .header .header-wrap {
    padding: 0;
  }
}
@media screen and (max-width: 320px) {
  /* header */
  .header .header-wrap {
    padding: 8px;
  }
  .header .header-wrap > div {
    padding: 0;
  }
}
@media screen and (max-height: 768px) {
  /* intro page */
  .modal-contents .main-title p {
    font-size: 14px;
  }
  .skip-btn button span {
    font-size: 16px;
  }
}

/* elypecs logo */
.elypecs_logo {
  position: fixed;
  bottom: 3%;
  right: 40px;
  z-index: 1;
  height: 50px;
}
.elypecs_logo img {
  height: 100%;
}

/* chrome_download */
.chrome_download {
  position: fixed;
  bottom: 1%;
  left: 40px;
  z-index: 1;
  margin: 10px auto;
  font-size: 0;
  text-align: right;
}
.chrome_download .msg,
.chrome_download .btn_chrome {
  display: inline-block;
  color: #fff;
  vertical-align: middle;
}
.chrome_download .msg {
  font-size: 16px;
  letter-spacing: -0.8px;
}
.chrome_download .btn_chrome {
  margin-left: 10px;
  padding: 4px 8px;
  border: 1px solid #fff;
  border-radius: 5px;
  font-size: 12px;
  letter-spacing: -0.8px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.chrome_download .btn_chrome:hover,
.chrome_download .btn_chrome:focus {
  background: #fff;
  color: #707070;
}

/* Page - Lobby ---------------------------------------------------------------------------------------------------------- */
.lobby {
  height: 100%;
  background: #000;
  overflow: hidden;
}
.lobby .contents {
  position: relative;
  width: 100%;
  margin: 0 auto;
  height: 100%;
  text-align: center;
}
.lobby .contents .lobby_bg {
  display: inline-block;
  position: relative;
  height: 100%;
  text-align: center;
}
.lobby .contents .lobby_btn_wrap .btn {
  position: absolute;
  z-index: 1;
}
.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_01 {
  top: 34%;
  left: 38%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.lobby .contents .lobby_btn_wrap .btn_02 {
  top: 22%;
  left: 57%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.lobby .contents .lobby_btn_wrap .btn_03 {
  top: 18%;
  left: 28%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.lobby .contents .lobby_btn_wrap .btn_04 {
  top: 34%;
  left: 63%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.lobby .contents .lobby_btn_wrap .btn_05 {
  top: 46%;
  left: 78%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/* page - Hall Common -------------------------------------------------------------------------------------- */
.hall {
  width: 100%;
  height: 100%;
}
.hall .contents {
  position: relative;
  width: 100%;
  height: 100%;
}
.vr-player {
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding-top: 60px;
  background: #000;
}
.vr-player .vr-iframe {
  width: 100% !important;
  height: 100% !important;
  border: 0px;
}

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

.guide_modal_btn > div {
  width: 100%; height: 100%; background: url('../../static/img/icon/btn-icon-player-infoguide-df.svg') no-repeat center center; background-size: 100% 100%;
}

.guide_modal_btn.open > div {
  background: url('../../static/img/icon/btn-icon-player-infoguide-sl.svg') no-repeat center center; background-size: 100% 100%;
}
/* modal ------------------------------------------------------------------------------------------------------------- */

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

.modal_box {
  position: absolute;
  top: 45%;
  left: 50%;
  width: 625px;
  height: 400px;
  border: 2px solid var(--project-main-color);
  border-radius: 10px;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 100;
}

.modal_contents {
  width: 100%;
  height: 100%;
  padding: 18px 5px 25px 5px;
  color: #fff;
}

.modal_item {
  width: 100%;
  height: 100%;
  text-align: center;
}

.modal_scroll_box {
  padding: 0;
  max-height: 340px;
  overflow: auto;
}

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

.btn_modal_close {
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  z-index: 100;
  width: 30px;
  height: 30px;
  cursor: pointer;
  background: transparent url(../../static/img/icon/ico-btn-modal-close.svg)
    no-repeat;
  background-size: cover;
}

.indicatorBox {
  position: absolute;
  display: flex;
  flex-direction: row;
  align-items: center;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.indicatorBox span {
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 100%;
  background-color: rgba(255, 255, 255, 1);
}

.indicatorBox span + span {
  margin-left: 8px;
}

.indicatorBox span.on {
  width: 8px;
  height: 8px;
  border: 2px solid var(--project-main-color);
  background-color: inherit;
}

/* guide_box 공통 css */
.modal_item .guide_box .guide_title {
  position: relative;
  padding: 10px 0 20px;
  color: var(--project-main-color);
  font-weight: 800;
  line-height: 1.3;
  font-size: 20px;
}

.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: wrap;
}

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

.modal_item .guide_box .guide_icon .icon_box .icon_title {
  font-weight: 600;
  color: #fff;
  padding-bottom: 10px;
}

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

.modal_btn_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

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

.modal_btn_box .btn_wrap .btn {
  padding: 10px 20px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 20px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s;
}

/* 모달 button 공통 css */

.modal_btn_box .btn_wrap .custom {
  background-color: var(--project-custom-color);
}

.modal_btn_box .btn_wrap .custom:hover {
  background-color: var(--project-custom-color-hover);
}

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

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

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

/* modal check box */
.modal_btn_box .inp_chk + label {
  display: inline-block;
  outline: 0;
  margin-right: 5px;
  cursor: pointer;
}

.modal_btn_box .inp_chk + label span {
  vertical-align: middle;
}

.modal_btn_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;
}

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

.btn_close {
  color: #fff;
}

/* interaction guide */
.interaction .brand_logo {
  height: 30px;
  padding-bottom: 0;
}

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

.interaction .brand_logo .txt {
  font-size: 35px;
}

.interaction .title {
  margin-bottom: 22px;
  margin-top: 40px;
  font-size: 24px;
  font-weight: 800;
  color: var(--project-main-color);
}

.interaction .desc {
  margin-bottom: 35px;
  line-height: 1.7;
  word-break: keep-all;
}

.interaction .guide_box .guide_icon {
  justify-content: space-between;
  margin: 0 auto;
  width: 390px;
}

.interaction .guide_box .guide_icon .icon_box {
  margin-bottom: 30px;
}

.interaction .guide_box .guide_icon .icon_box .img_icon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 90px;
  margin-bottom: 10px;
}
.interaction .guide_box .guide_icon .img_icon img {
  /* width: 70px; */
  height: 100%;
}

/* modal_guide 공통 css */
/* mobile display none */
.modal_guide .tutorial_item_mob {
  display: none;
}

/* modal_guide - left 공통 css */
.modal_guide.left {
  position: absolute;
  top: 165px;
  left: 10px;
}

.modal_guide.left .tutorial_item {
  display: block;
  position: relative;
  height: 57px;
}

.modal_guide.left .tutorial_item:before {
  display: block;
  width: 56px;
  height: 56px;
  margin: 0 auto;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  content: '';
}

.modal_guide.left .arrow_box::before {
  content: '';
  background: var(--project-main-color);
  position: absolute;
  top: 50%;
  margin-left: 50px;
}

.modal_guide.left .arrow_box::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid var(--project-main-color);
  border-top: none;
  border-right: none;
}

.modal_guide.left .tutorial_item .tutorial_item_text {
  position: absolute;
  top: 0;
  left: 136px;
  width: 140px;
  margin-top: 52px;
}

.modal_guide.left .tutorial_item .tutorial_item_text p {
  font-size: 12px;
  color: #fff;
  line-height: 1.4;
  text-align: left;
  /* word-break: break-word; */
  letter-spacing: -0.5px;
  padding-top: 4px;
  word-break: keep-all;
}

.modal_guide.left .tutorial_item.minimap .tutorial_item_text {
  margin-top: 18px;
}

.modal_guide.left .tutorial_item.spot .tutorial_item_text {
  margin-top: 46px;
}

.modal_guide.left .tutorial_item.autoplay .tutorial_item_text {
  margin-right: 120px;
}

.modal_guide.left .tutorial_item.origin .tutorial_item_text {
  margin-bottom: 134px;
  margin-right: 50px;
}

.modal_guide.left .tutorial_item.fullscreen .tutorial_item_text {
  margin-right: -140px;
}

.modal_guide.left .tutorial_item.minimap .arrow_box::before {
  width: 80px;
  height: 1px;
}

.modal_guide.left .tutorial_item.minimap .arrow_box::after {
  content: none;
}

.modal_guide.left .tutorial_item.spot .arrow_box::before {
  width: 69px;
  height: 1px;
}

.modal_guide.left .tutorial_item.spot .arrow_box::after {
  width: 10px;
  height: 28px;
  margin-left: 118px;
  margin-top: 29px;
}

.modal_guide.left .tutorial_item.theme .arrow_box::before {
  width: 10px;
  height: 1px;
}

.modal_guide.left .tutorial_item.theme .arrow_box::after {
  width: 67px;
  height: 38px;
  margin-left: 60px;
  margin-top: 29px;
}

.modal_guide.left .tutorial_item.spot:before {
  background-image: url('../../static/img/icon/spot.png');
}

.modal_guide.left.top {
  position: absolute;
  top: 20px;
  left: 15px;
}
.modal_guide.left.top .tutorial_item:before {
  display: block;
  width: 122px;
  height: 20px;
  margin: 0 auto;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  content: '';
}
.modal_guide.left.top .tutorial_item.main_logo .arrow_box::before {
  width: 1px;
  height: 34px;
  margin-left: 10px;
}

.modal_guide.left.top .tutorial_item.main_logo .arrow_box::after {
  width: 115px;
  margin-left: 10px;
  margin-top: 62px;
}
.modal_guide.left.top .tutorial_item.main_logo:before {
  background-image: url('../../static/img/logo/logo_xroo.png');
}

/* modal_guide - right 공통 css */
.modal_guide.right {
  position: absolute;
  top: 104px;
  right: 10px;
}

.modal_guide.right .tutorial_item {
  display: block;
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 100%;
}

.modal_guide.right .tutorial_item + .tutorial_item {
  margin-top: 14px;
}

.modal_guide.right .tutorial_item .tutorial_item_text {
  position: absolute;
  top: 0;
  right: 80px;
  width: 130px;
  margin-top: 16px;
}

.modal_guide.right .tutorial_item .tutorial_item_text p {
  font-size: 12px;
  color: #fff;
  line-height: 1.4;
  text-align: right;
  word-break: break-word;
  letter-spacing: -0.5px;
  word-break: keep-all;
}

.modal_guide.right .tutorial_item .tutorial_item_text p + p {
  margin-top: 5px;
}

.modal_guide.right .tutorial_item:before {
  display: block;
  width: 54px;
  height: 54px;
  margin: 0 auto;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  content: '';
}

.modal_guide.right .arrow_box::before {
  content: '';
  background: var(--project-main-color);
  position: absolute;
  top: 50%;
  right: 100%;
  width: 26px;
  height: 1px;
}

.modal_guide.right .tutorial_item.custom:before {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: #e1e1e1;
}

/* modal_guide - right top (chat) 공통 css */
.modal_guide.right.top {
  right: 15px;
  top: 70px;
}

.modal_guide.right .tutorial_item.chat:before {
  background-image: url('../../static/img/icon/ico-help-chat.png');
  background-position: center center;
}

.modal_guide.right_middle {right: 26px; top: 50%; margin-top: 4px;}
.modal_guide.right_middle .tutorial_item.tour:before {background-image: url(../../static/img/icon/btn-icon-arrow-move-next.svg); background-position: center center;}
.modal_guide.right_middle .arrow_box::before {content: ''; background: var(--project-main-color); position: absolute; top: 100%; right: 50%; width: 1px; height: 40px;}
.modal_guide.right_middle .tutorial_item .tutorial_item_text {position: absolute; top: 74px; right: 18px; width: 130px; margin-top: 16px;}

/* modal_guide - bottom 공통 css */
.modal_guide.bottom {
  position: absolute;
  bottom: 9px;
  left: 50%;
  transform: translateX(-50%);
}

.modal_guide.bottom .tutorial_item {
  display: inline-block;
  position: relative;
  width: 36px;
}

.modal_guide.bottom .tutorial_item:before {
  display: block;
  width: 20px;
  height: 20px;
  margin: 0 auto;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  content: '';
}

.modal_guide.bottom .tutorial_item .tutorial_item_text {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 140px;
  margin-bottom: 28px;
}

.modal_guide.bottom .tutorial_item .tutorial_item_text p {
  font-size: 12px;
  color: #fff;
  line-height: 1.4;
  text-align: left;
  letter-spacing: -0.5px;
  padding-top: 4px;
  word-break: keep-all;
}

.modal_guide.bottom .tutorial_item.autoplay .tutorial_item_text {
  margin-right: 36px;
}

.modal_guide.bottom .tutorial_item.origin .tutorial_item_text {
  margin-bottom: 114px;
  margin-right: -118px;
}

.modal_guide.bottom .tutorial_item.fullscreen .tutorial_item_text {
  margin-right: -160px;
}

/* modal_guide - bottom - arrow */
.modal_guide.bottom .arrow_box::before {
  content: '';
  background: var(--project-main-color);
  position: absolute;
  bottom: 0%;
  left: 0;
}

.modal_guide.bottom .arrow_box::after {
  content: '';
  background: var(--project-main-color);
  position: absolute;
  bottom: 0%;
  left: 50%;
  margin-bottom: 26px;
  transform: translateX(-50%);
}

.modal_guide.bottom .tutorial_item.autoplay .arrow_box::before {
  width: 104px;
  height: 1px;
  margin-left: -86px;
  margin-bottom: 91px;
}

.modal_guide.bottom .tutorial_item.autoplay .arrow_box::after {
  width: 1px;
  height: 66px;
}

.modal_guide.bottom .tutorial_item.origin .arrow_box::before {
  content: none;
}

.modal_guide.bottom .tutorial_item.origin .arrow_box::after {
  width: 1px;
  height: 80px;
}

.modal_guide.bottom .tutorial_item.fullscreen .arrow_box::before {
  width: 30px;
  height: 1px;
  margin-left: 17px;
  margin-bottom: 76px;
}

.modal_guide.bottom .tutorial_item.fullscreen .arrow_box::after {
  width: 1px;
  height: 52px;
}

.modal_guide.bottom .tutorial_item.autoplay:before {
  background-image: url('../../static/img/icon/ico-player-autoplay-df.png');
}

.modal_guide.bottom .tutorial_item.origin:before {
  background-image: url('../../static/img/icon/ico-player-origin-df.png');
}

.modal_guide.bottom .tutorial_item.fullscreen:before {
  background-image: url('../../static/img/icon/ico-player-fullscreen-df.png');
}

.modal_guide.bottom_right {left: auto; right: 15px; bottom: 18px;}
.modal_guide.bottom_right .tutorial_item .tutorial_item_text p, .modal_guide.bottom_right .tutorial_item .tutorial_item_text p {text-align: right;}
.modal_guide.bottom_right .arrow_box::before {width: 1px; height: 62px; margin-left: 42px; margin-bottom: 18px;}
.modal_guide.bottom_right .tutorial_item .tutorial_item_text {right: 5px; margin-bottom: 22px;}

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

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

/* Media Query ------------------------------------------------------------------------------------------------------------------- */

@media screen and (max-width: 1600px) {
  /* default btn */
  .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;
  }

  /* nav */
  /* .gnb.is_pc .gnb-item:not(:first-child) {
    margin-left: 22px;
  } */

  /* Page - Lobby */
  .lobby .contents .lobby_logo {
    top: 10px;
    height: 30px;
  }
  .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) {
  /* default btn */
  .common_btn > span {
    font-size: 16px;
  }

  /* base */
  /* scroll bar */
  ::-webkit-scrollbar {
    width: 6px;
  }
  ::-webkit-scrollbar-thumb {
    border-radius: 10px;
  }
  html,
  html body {
    height: 100%;
  }

  /* page - intro */
  .main-title_box .main_title {
    height: 160px;
  }
  .main {
    overflow-y: visible;
    height: 100%;
  }
  .elypecs_logo {
    right: 10px;
    bottom: 1.5%;
  }
  .chrome_download {
    display: none;
  }

  /* Page - Lobby */
  .lobby .contents .lobby_bg {
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%;
  }
  .lobby .contents .lobby_bg .bg_img.only_res {
    display: inline-block;
  }
  .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;
  }
  .vr-player {
    padding-top: 50px;
  }
}

@media screen and (max-aspect-ratio: 1920 / 1016) {
  /* Page - Lobby */
  .lobby .contents .lobby_bg {
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    height: auto;
    width: 100%;
  }
  .lobby .contents .lobby_bg .bg_img {
    height: auto;
    width: 100%;
  }
}

@media screen and (orientation: portrait) {
  /* Page - Lobby */
  .lobby .contents .lobby_bg {
    height: auto;
  }
  .lobby .contents .lobby_bg .bg_img {
    width: 100%;
    height: auto;
  }
}

@media screen and (max-width: 1023px) and (orientation: landscape) {
  /* page - Main */
  .main .intro_title {
    width: 240px;
  }
  .main-title_box .main_title {
    height: 120px;
  }
  .main_brand {
    height: 60px;
  }
  .main .content .play_btn {
    bottom: 10%;
    width: 100%;
    text-align: center;
  }
  .elypecs_logo {
    height: 40px;
  }

  /* Page - Lobby */
  .lobby .contents .lobby_btn_wrap {
    bottom: 64px !important;
    max-height: 70%;
    max-height: calc(100% - 54px - 50px) !important;
  }
}

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

  /* page - Main */
  .main .intro_title {
    width: 240px;
  }
  .main-title_box .main_title {
    height: 120px;
  }
  .main_brand {
    height: 48px;
  }
  /* .main .afterPlay {margin-bottom: 60px;} */
  .main .content .play_btn {
    bottom: 12%;
    width: 100%;
    text-align: center;
  }
  .elypecs_logo {
    display: none;
    bottom: 16px;
    height: 20px;
  }
  .intro_ep_logo {
    width: 100px;
  }

  /* Page - Lobby */
  .lobby .contents {
    z-index: 1;
    background: url(../img/lobby.jpg) no-repeat 50% 50%;
    background-size: auto 100%;
    background-size: cover;
  }
  .lobby .contents .lobby_logo {
    height: 38px;
    position: static;
    margin: 50px auto 0;
  }
  .lobby .contents .lobby_miceview {
    right: 10px;
    height: 20px;
  }
  .lobby .contents .lobby_bg {
    position: static;
    height: 100%;
    -webkit-transform: none;
    transform: none;
  }
  .lobby .contents .lobby_btn_wrap {
    position: absolute;
    bottom: 18vh;
    left: 50%;
    width: 100%;
    max-height: 70%;
    max-height: calc(100% - 100px - 34px);
    overflow: auto;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .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;
  }
}

@media screen and (max-width: 480px) {
  .main_video.pc {
    display: none;
  }
  .main_video.mobile {
    display: block;
  }
  /* default btn */
  .start_btn_style {
    padding: 8px 48px;
    font-size: 14px;
  }

  .intro_ep_logo {
    width: 80px;
  }
}

@media screen and (max-width: 400px) {
  /* page - Main */
  .main-title_box .main_title img {
    height: 120px;
  }
  .main_brand img {
    height: 48px;
  }
}

@media screen and (max-width: 340px) {
  /* default btn */
  .start_btn_style {
    padding: 4px 48px;
    font-size: 11px;
  }
}

@media screen and (max-height: 1080px) {
  /* default btn */
  .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;
  }

  /* Page - Lobby */
  .lobby .contents .lobby_logo {
    height: 40px;
  }
  .lobby .contents .lobby_miceview {
    height: 34px;
  }
  .lobby .contents .lobby_btn_wrap .btn {
    padding: 6px 14px;
  }
  .lobby .contents .lobby_btn_wrap .btn > span {
    font-size: 14px;
  }
}

/* responsive css */

@media screen and (max-width: 1280px) {
  .modal_box {
    top: 50%;
  }

  .modal_guide.left .tutorial_item.theme .arrow_box::before {
    content: none;
  }

  .modal_guide.left .tutorial_item.theme .arrow_box::after {
    width: 22px;
    margin-left: 50%;
    margin-top: 100%;
  }

  .modal_guide.left .tutorial_item.theme .tutorial_item_text {
    top: auto;
    margin-top: 28px;
    left: 58px;
  }
}

@media screen and (max-width: 1280px) and (orientation: landscape) {
  .modal_box {
    top: 45%;
    width: 43vw;
    height: 400px;
  }

  .modal_contents {
    padding: 25px 5px 40px 5px;
  }

  .interaction .title {
    margin: 24px 0;
  }

  /* .modal_scroll_box {
    max-height: 220px;
  } */

  .modal_btn_box {
    margin-top: 10px;
  }
}

@media screen and (max-width: 1280px) and (max-height: 770px) {
  .modal_guide.bottom {
    display: none;
  }
}

@media screen and (max-width: 1023px) {
  /* modal setting */
  .modal_area .modal_btn_box {
    margin-top: 8px;
    flex-direction: column;
  }

  .modal_area .modal_btn_box .btn_box_item {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    width: 100%;
  }

  .modal_area .modal_btn_box .btn_box_item * {
    font-size: 10px;
    line-height: 1.2;
  }

  .modal_btn_box .btn {
    padding: 8px 23px;
  }

  .modal_box {
    width: 340px;
    height: 320px;
    transform: translate3d(-50%, -60%, 0);
    border-radius: 5px;
  }

  .modal_scroll_box {
    max-height: 240px;
  }

  .modal_contents {
    padding: 25px 5px 52px 5px;
  }

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

  .modal_item .guide_box .guide_icon.mob {
    display: flex;
    margin-top: 20px;
    width: 100%;
  }

  .modal_item .guide_box .guide_title {
    padding: 10px 0;
    font-size: 14px;
  }

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

  .modal_guide {
    display: none !important;
  }

  /* interaction guide */
  .interaction .brand_logo {
    height: 22px;
  }

  .interaction .title {
    margin-top: 15px;
    margin-bottom: 20px;
    font-size: 14px;
  }

  .interaction .desc {
    padding: 0 5%;
    margin-bottom: 25px;
  }

  .interaction .desc p {
    font-size: 12px;
  }

  /* interaction guide */
  .interaction .guide_box .guide_icon {
    width: 100%;
  }
  .interaction .guide_box .guide_icon .icon_box {
    padding: 0;
    margin-bottom: 20px;
    width: 31.25%;
  }

  .interaction .guide_box .guide_icon .img_icon img {
    width: 70%;
  }

  .interaction .guide_box .guide_icon .icon_box .icon_title {
    font-size: 10px;
  }

  .interaction .guide_box .guide_icon .icon_box .icon_desc {
    font-size: 10px;
  }
}
/* 1023px end */

@media screen and (max-width: 360px) {
  /* modal setting */
  .modal_box {
    width: 94%;
    /* height: 360px; */
  }
}
/* 360px end */

@media screen and (max-width: 280px) {
  .modal_box {
    width: 92%;
  }

  .modal_scroll_box {
    max-height: 230px;
  }

  .modal_contents {
    padding: 30px 8px 43px 8px;
  }

  /* interaction guide */
  .interaction .guide_box .guide_icon .icon_box {
    margin-bottom: 0px;
    width: 100%;
  }

  .interaction .guide_box .guide_icon .icon_box .img_icon {
    height: auto;
  }

  .interaction .guide_box .guide_icon .icon_box .img_icon img {
    width: 80px;
  }
}
/* 280px end */
