@charset "utf-8";

/* --------------------------------------------------------------------------------------------- */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
address,
code,
em,
img,
strong,
sub,
sup,
b,
u,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
section,
main,
audio,
video {
  margin: 0;
  padding: 0;
}

/*html5추가 시멘틱엘리먼트를 익스하위버전에서 블럭으로 인식되도록함*/
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main {
  display: block;
}

/* button태그에 손모양 커서 */
button {
  cursor: pointer;
  background: none;
  border: none;
}
/* 익스하위버전에서 이미지 선없애기 */
fieldset,
img {
  border: 0;
  vertical-align: top;
}
/* 리스트 기호 빼기 */
ol,
ul {
  list-style: none;
}
/* 태그 기본 기울임꼴 제거 */
address,
em {
  font-style: normal;
}
/* 페이지안에서 가장 많은 링크색 지정 */
a {
  text-decoration: none;
  color: #1c1c1c;
}
/* iframe으로 외부컨텐츠를 연결했을때
외부컨텐츠안쪽내용이 우리페이지에 영향을 주지못하도록 가려줌
*/
iframe {
  overflow: hidden;
  border: 0;
}
/* 칸의 선을 합치기, 칸의 간격없애기, 가로를 늘려줌 */
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}
/* 굵기 빼고 헤딩태그 폰트크기를 body에 선언한 크기와 일치시킴 */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  font-size: 100%;
}
/* 폼요소의 높이가 다를때 요소끼리 세로정렬시킴 */
input,
select,
textarea,
button {
  vertical-align: middle;
  margin: 0;
  padding: 0;
}
/* textarea 리사이즈기능 빼기 */
textarea {
  resize: none;
}
/* 페이지안의 모든 폰트의 줄간격을 1.5로 통일시킴
모바일 크롬, 모바일 사파리 브라우져의 텍스트 자동확대 방지
*/
body {
  line-height: 1.5;
  -webkit-text-size-adjust: none;
}

/* legend,caption,메뉴제목,섹션제목 블라인드 */
legend,
caption,
.blind {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  margin: -1px;
  width: 1px;
  height: 1px;
}

/* float해제 */
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.loading_page{
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
}

.loading_page.off{
  display: none;
}

.display-none {
  display: none !important;
}

#dim {
  position: fixed;
  z-index: 5555;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.8;
}

.dim_close {
  position: fixed;
  z-index: 5555;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

* {
  border: 0;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  list-style-type: none;
  text-decoration: none;
}
:root {
  --hue: 223;
  --hue2: 13;
  --bg: hsl(var(--hue), 10%, 90%);
  --fg: hsl(var(--hue), 10%, 10%);
  --primary: hsl(var(--hue), 90%, 55%);
  --red: hsl(var(--hue2), 90%, 55%);
  --trans-dur: 0.3s;
  font-size: calc(16px + (20 - 16) * (100vw - 320px) / (1280 - 320));
}
body,
button,
input {
  /* font: 16px "DM Sans", sans-serif; */
}
.nav-menu button {
  font-size: 20px;
}

body {
  /* background-color: var(--bg); */
  /* color: var(--fg); */
  height: 100vh;
  /* transition:
          background-color var(--trans-dur),
          color var(--trans-dur); */
  /* padding: 20px; */
  font-family: "SpoqaHanSansNeo", sans-serif;
  /* padding: 45px 20px 20px 30px; */
  /* background: url(./img/bg.png) 0 0 no-repeat; */
  /* background-size: cover; */
  background-color: rgb(87, 102, 74);
}
button {
  -webkit-appearance: none;
  appearance: none;
}
.vrPage {
  display: block;
}

.vrPage.hide {
  display: none;
}
.nav {
  position: fixed;
  top: 45px;
  left: 30px;
  background-color: hsl(0, 0%, 100%);
  display: flex;
  flex-direction: column;
  /* position: relative; */
  /* height: 100%; */
  height: calc(100% - 65px);
  width: 300px;
  transition: background-color var(--trans-dur),
    width var(--trans-dur) ease-in-out;
  border-radius: 10px;
  box-shadow: 2px 0px 6px #1717171a;
  z-index: 10;
}
.nav-main {
  display: flex;
  justify-content: center;
  /* padding: 10px; */
  width: inherit;
  height: 84%;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: 8px;
  scrollbar-color: transparent transparent;
}
.nav-main::-webkit-scrollbar {
  width: 8px;
}
.nav-main::-webkit-scrollbar-track {
  background: transparent;
}
.nav-main::-webkit-scrollbar-thumb {
  background-color: transparent;
  border-radius: 4px;
}
.nav-main:hover {
  scrollbar-color: hsla(0, 0%, 0%, 0.2) transparent;
}
.nav-main:hover::-webkit-scrollbar-thumb {
  background-color: hsla(0, 0%, 0%, 0.2);
}

.nav-main .nav-item.home_btn {
  display: flex;
}

.nav-menu {
  background-color: transparent;
  /* padding: 10px; */
  padding: 16px 0;
  margin: 0 10px;
  transition: box-shadow var(--trans-dur);
  border-bottom: 2px solid #eaeaea;
}

.nav-menu .nav-item.search_btn {
  display: flex;
}

.nav-menu .nav-item.close_menu_btn {
  display: none;
}

.nav-profile {
  background-color: transparent;
  transition: box-shadow var(--trans-dur);
}
.nav-profile .nav-item {
  /* padding: 12px 0; */
  height: 67px;
}

.nav-profile .nav-item.login {
  display: flex;
}

.nav-heading {
  color: hsl(var(--hue), 10%, 45%);
  display: block;
  line-height: 1;
  text-transform: uppercase;
  transition: color var(--trans-dur);
}
.nav-heading-text {
  display: inline-block;
  transform: translateX(1em);
  transition: transform var(--trans-dur) ease-in-out;
}
.nav-item {
  position: relative;
  display: flex;
  justify-content: center;
}

.nav-items {
  list-style: none;
  margin: 0 0 3em 0;
}
.nav-items:last-child {
  margin-bottom: 0;
}
.nav-item-box {
  background-color: hsla(var(--hue), 90%, 55%, 0);
  border-radius: 15px;
  /* color: hsl(var(--hue),20%,55%); */
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  /* flex-direction: column; */
  /* padding: 15px 8px; */
  padding: 3px;
  /* margin: 10px; */
  text-align: left;
  text-decoration: none;
  transition: background-color var(--trans-dur) ease-in-out,
    color var(--trans-dur), width var(--trans-dur) ease-in-out;
  width: 280px;
  min-width: 58px;
}
/* .nav-item-box:focus,
  .nav-item-box:hover { */
.nav-item-box:focus {
  /* background-color: hsla(var(--hue),90%,55%,0.1); */
  /* background-color: #0069b4;
    color: hsl(34, 51%, 74%); */
}
.nav-item-box:focus {
  outline: transparent;
}
.nav-item-icon,
.nav-item-icon svg {
  display: block;
  /* width: 24px;
    height: 24px; */
}
.nav-main .nav-item-icon {
  width: 100%;
  padding: 5px 2px;
  /* background: red; */
  flex-shrink: 0;
  position: relative;
  text-align: center;
  transition: transform var(--trans-dur) ease-in-out;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
/* .nav-main .nav-item-box:focus .nav-item-icon {
    background-color: #0069b4;
  } */
.nav-main .nav-item.focus .nav-item-box .nav-item-icon {
  background-color: #0069b4;
}

.nav-main .nav-item-icon .menu_text {
  font-size: 10px;
  font-weight: bold;
  color: #0069b4;
  margin-top: 2px;
}

/* .nav-main .nav-item-box:focus .nav-item-icon .menu_text {
    color: #fff;
  } */
.nav-main .nav-item.focus .nav-item-box .nav-item-icon .menu_text {
  color: #fff;
}
/* .nav-item-icon-badge:before {
    background-color: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 0 0.1em hsl(0, 0%, 100%);
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 10px;
    height: 10px;
    transform: scale(0);
    transition: box-shadow var(--trans-dur),
      transform var(--trans-dur) ease-in-out;
  } */
.nav-item-text {
  margin-left: 15px;
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  transition: opacity var(--trans-dur) ease-in-out,
    width var(--trans-dur) ease-in-out;
  font-weight: bold;
}
.nav-item-badge {
  background-color: hsla(var(--hue), 90%, 55%, 0.1);
  border-radius: 15px;
  color: var(--primary);
  font-size: 12px;
  line-height: 1;
  margin-left: 15px;
  padding: 2px 8px;
  transition: background-color var(--trans-dur), color var(--trans-dur);
}
.nav-item-box--red .nav-item-badge {
  background-color: hsla(var(--hue2), 90%, 55%, 0.1);
  color: var(--red);
}
.nav-item-box--red .nav-item-icon-badge:before {
  background-color: var(--red);
}
.nav-logo {
  background-color: var(--primary);
  border-radius: 15px;
  color: hsl(0, 0%, 100%);
  display: flex;
  margin-bottom: 2.5em;
  width: 3em;
  height: 3em;
  transform: translateX(0.75em);
  transition: background-color var(--trans-dur), color var(--trans-dur),
    transform var(--trans-dur) ease-in-out;
}
.nav-logo svg {
  display: block;
  margin: auto;
  width: 2em;
  height: 2em;
}
.nav[data-expanded="false"] {
  /* width: 76px; */
  width: 72px;
}
.nav[data-expanded="false"] .nav-heading-text {
  transform: translateX(calc(2em - 50%));
}
.nav[data-expanded="false"] .nav-item-box {
  /* width: 3em; */
  width: 24px;
}
.nav[data-expanded="false"] .nav-item-icon-badge:before {
  transform: scale(1);
}
.nav[data-expanded="false"] .nav-item-text {
  opacity: 0;
  width: 0;
}
.nav[data-expanded="false"] .nav-logo {
  transform: translateX(0);
}

/* Dark theme */
@media (prefers-color-scheme: dark) {
  :root {
    --bg: hsl(var(--hue), 10%, 20%);
    --fg: hsl(var(--hue), 10%, 90%);
  }
  .nav {
    /* background-color: hsl(var(--hue), 10%, 10%); */
  }
  .nav-main:hover {
    scrollbar-color: hsla(0, 0%, 100%, 0.2) transparent;
  }
  .nav-main:hover::-webkit-scrollbar-thumb {
    background-color: hsla(0, 0%, 100%, 0.2);
  }
  .nav-menu {
    /* box-shadow: 0 1px 0 hsl(var(--hue), 10%, 30%) inset; */
  }
  .nav-heading {
    color: hsl(var(--hue), 10%, 65%);
  }
  .nav-item-box {
    /* background-color: hsla(0, 0%, 100%, 0);
      color: hsl(var(--hue), 20%, 75%); */
  }
  .nav-item-box:focus,
  .nav-item-box:hover {
    /* background-color: hsla(0, 0%, 100%, 0.1);
      color: hsl(0, 0%, 100%); */
  }
  .nav-item-icon-badge:before {
    box-shadow: 0 0 0 0.1em hsl(var(--hue), 10%, 10%);
  }
  .nav-item-badge {
    background-color: hsl(var(--hue), 90%, 55%);
    color: hsl(0, 0%, 100%);
  }
  .nav-item-box--red .nav-item-badge {
    background-color: hsl(var(--hue2), 90%, 55%);
    color: hsl(0, 0%, 100%);
  }
  .nav-logo {
    background-color: hsl(0, 0%, 100%);
    color: var(--primary);
  }
}

/* 툴팁 */
.tooltip {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  background: url(../images/tooltip_bg.png) 0 0 no-repeat rgba(0, 0, 0, 0.76);
  /* background-size: 100% 100%; */
  padding: 70px 50px;
  z-index: 20;
}

.tooltip.on {
  display: block;
  background-color: #3c3c3c;
}

.tooltip > div.tooltip_wrap {
  width: 100%;
  height: 100%;
  /* padding: 70px 50px; */
}

.tooltip > div.tooltip_wrap > div {
  position: absolute;
  opacity: 0;
  transition: all ease-in-out 0.5s;
}

.tooltip > div.tooltip_wrap > div.tooltip_log {
  background: url(../images/tooltip_log.png) 0 0 no-repeat;
  top: 20px;
  left: 1652px;
  width: 238px;
  height: 75px;
}
.tooltip > div.tooltip_wrap > div.tooltip_shortcut {
  background: url(../images/tooltip_shortcut.png) 0 0 no-repeat;
  top: 95px;
  left: 704px;
  width: 389px;
  height: 70px;
}
.tooltip > div.tooltip_wrap > div.tooltip_vr {
  background: url(../images/tooltip_vr.png) 0 0 no-repeat;
  top: 630px;
  left: 236px;
  width: 290px;
  height: 81px;
}
.tooltip > div.tooltip_wrap > div.tooltip_title {
  background: url(../images/tooltip_title.png) 0 0 no-repeat;
  top: 383px;
  left: 1228px;
  width: 357px;
  height: 123px;
}
.tooltip > div.tooltip_wrap > div.tooltip_pin {
  background: url(../images/tooltip_pin.png) 0 0 no-repeat;
  top: 610px;
  left: 1128px;
  width: 327px;
  height: 121px;
}
.tooltip > div.tooltip_wrap > div.tooltip_three {
  background: url(../images/tooltip_three.png) 0 0 no-repeat;
  top: 736px;
  left: 892px;
  width: 319px;
  height: 121px;
}

.tooltip > .check_btns {
  position: fixed;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
}

.tooltip > .check_btns .tooltip_noMore {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 170px;
  height: 35px;
  font-size: 16px;
  color: #fff;
  background: #000;
}

.tooltip > .check_btns .tooltip_noMore #noMore {
  margin-right: 10px;
}

.tooltip > .check_btns .tooltip_noMore .noMore_btn {
  color: #fff;
}

.tooltip > .check_btns .tooltip_close {
  width: 70px;
  height: 35px;
  font-size: 16px;
  color: #fff;
  background: #3aadff;
}

/* vr 툴팁 */
.vr_tooltip {
  position: absolute;
  right: 20px;
  bottom: 23px;
  width: 78px;
  height: 78px;
  background: url(../images/vr_tooltip.png) 0 0 no-repeat;
  cursor: pointer;
}

.vr_guide {
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  background: url(../images/pano_guide.png) center center no-repeat;
  background-size: contain;
  background-color: #000;
  z-index: 100;
}

.vr_guide.on {
  display: block;
}

.vr_tooltip_close {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: url(../images/vr_tooltip_close.png) 0 0 no-repeat;
  cursor: pointer;
}
/* vr 툴팁 */

/* 툴팁 */

.nav-item .hover_detail {
  visibility: hidden;
  position: absolute;
  top: 49%;
  left: 58px;
  white-space: nowrap;
  height: 25px;
  line-height: 0;
  padding: 18px;
  transform: translateY(-50%);
  color: #fff;
  background-color: #0069b4;
  border-radius: 7px;
  box-sizing: border-box;
  text-align: center;
  transition: 0.3s ease-in-out;
  opacity: 0;
}

.nav-item.active .hover_detail {
  visibility: visible;
  opacity: 1;
}

.nav-item .hover_detail::before {
  content: "";
  position: absolute;
  top: 49%;
  left: -5px;
  width: 10px;
  height: 10px;
  background-color: #0069b4;
  transform: translateY(-50%) rotate(45deg);
}

.logo {
  position: fixed;
  top: 45px;
  right: 50px;
  z-index: 9;
}

.nav_content {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 45px;
  left: 40px;
  width: 0;
  height: calc(100% - 65px);
  background-color: rgba(255, 255, 255, 1);
  border-radius: 10px;
  transition: all ease-in-out 0.5s;
  z-index: 9;
}

.nav_content.open {
  width: 294px;
}

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

.cont_wrap > div {
  width: 100%;
  height: 100%;
  display: none;
  padding: 8px 0px 30px 67px;
  overflow: hidden;
}

.cont_wrap > div.show {
  display: block;
}

.cont_tit {
  font-size: 20px;
  height: 56px;
  line-height: 58px;
  border-bottom: 2px solid #eaeaea;
  margin-right: 15px;
  margin-left: 10px;
  white-space: nowrap;
}

.cont_wrap > div > div {
  height: 100%;
  /* overflow-y: scroll; */
}

.cont_wrap > div > div > ul {
  height: 100%;
  overflow-y: scroll;
  padding: 0 0 40px 0;
  white-space: nowrap;
}

.cont_wrap > div > div > ul::-webkit-scrollbar {
  width: 6px;
}
.cont_wrap > div > div > ul::-webkit-scrollbar-track {
  background: #f5f5f4;
}
.cont_wrap > div > div > ul::-webkit-scrollbar-thumb {
  background-color: #cccccc;
  border-radius: 4px;
}

.cont_wrap > div > div > ul > li {
  position: relative;
  height: auto;
  line-height: 57px;
  padding: 0;
  cursor: pointer;
  border-bottom: 1px solid #eaeaea;
  margin-right: 0;
  margin-left: 0;
}
.cont_wrap > div > div > ul > li > a {
  font-size: 18px;
  font-weight: bold;
  color: #707070;
  margin-left: 20px;
}

.cont_wrap > div > div > ul > li.active > a,
.cont_wrap > div > div > ul > li:hover > a {
  color: #171717;
}

.cont_wrap > div > div > ul > li > .arrow {
  display: block;
  position: absolute;
  top: 22px;
  right: 16px;
  width: 19px;
  height: 11px;
  background: url(../images/arrow.png) 0 0 no-repeat;
  transform: rotate(0deg);
}
.cont_wrap > div > div > ul > li.active > .arrow {
  transform: rotate(180deg);
}

.cont_wrap > div > div > ul > li > ul {
  display: none;
  padding: 0 0 10px 30px;
}

.cont_wrap > div > div > ul > li > ul > li {
  position: relative;
  /* display: inline-block; */
  width: 100%;
  height: auto;
  line-height: 30px;
  font-size: 17px;
  word-wrap: break-word;
  white-space: pre-wrap;
  word-break: break-all;
  padding-left: 30px;
  padding-right: 20px;
}

.cont_wrap > div > div > ul > li > ul > li > a:first-child {
  color: #171717;
  pointer-events: none;
}

.cont_wrap > div > div > ul > li > ul > li.active > a:first-child,
.cont_wrap > div > div > ul > li > ul > li:hover > a:first-child {
  color: #0069b4;
}

.cont_wrap > div > div > ul > li > ul > li .vr_mark {
  position: absolute;
  top: 6px;
  left: -14px;
  display: block;
  width: 36px;
  height: 18px;
  line-height: 18px;
  color: #fff;
  text-align: center;
  background-color: #754ecf;
  border-radius: 9px;
  font-size: 14px;
}

.cont_wrap > div > div > ul > li > ul > li .vr_mark:hover {
  opacity: 0.5;
}
/* 
.cont_wrap > div > div > ul > li > ul > li.active::before {
  content: "";
  position: absolute;
  display: block;
  width: 14px;
  height: 2px;
  bottom: 14px;
  right: 4px;
  background-color: #0069b4;
} */

/* VR 관람 */
.imp_cont .search_list_text {
  margin-left: 10px;
}

.showPopup {
  position: fixed;
  display: none;
  top: 108px;
  left: 334px;
  width: 300px;
  height: 370px;
  border-left: 5px solid #754ecf;
  border-radius: 0px 0px 30px 0px;
  background-color: #fff;
  box-shadow: 3px 3px 6px #0000001f;
  padding: 40px 23px;
  z-index: 11;
}

.showPopup.show {
  display: block;
}

.showPopup .popup_goVR {
  position: absolute;
  top: 10px;
  right: 20px;
  width: 73px;
  height: 18px;
  background: url(../images/popup_goVR.png) 0 0 no-repeat;
}

.showPopup .popup h3 {
  font-size: 20px;
  color: #171717;
}

.showPopup .popup p {
  font-size: 17px;
  color: #707070;
  word-break: break-word;
  margin-top: 10px;
}

.search_cont form {
  position: relative;
  font-size: 20px;
  height: 56px;
  line-height: 48px;
  border-bottom: 2px solid #eaeaea;
  margin-right: 15px;
  margin-left: 10px;
}

.search_cont form input {
  width: 178px;
  height: 21px;
  font-size: 17px;
  outline: none;
  font-family: "SpoqaHanSansNeo", sans-serif;
}

.search_cont form input::placeholder {
  color: #cccccc;
  font-size: 17px;
}

.search_cont form input::-webkit-search-decoration,
.search_cont form input::-webkit-search-cancel-button,
.search_cont form input::-webkit-search-results-button,
.search_cont form input::-webkit-search-results-decoration {
  display: none;
}

.search_cont .btnClear {
  position: absolute;
  top: 25px;
  right: 20px;
  width: 20px;
  height: 20px;
  background: url(../images/x.png) 0 0 no-repeat;
}

.search_cont .search_result {
  height: 100%;
  overflow-y: scroll;
  padding: 0 0 40px 0;
  margin-left: 10px;
  white-space: nowrap;
}

.search_cont .search_result::-webkit-scrollbar {
  width: 6px;
}
.search_cont .search_result::-webkit-scrollbar-track {
  background: #f5f5f4;
}
.search_cont .search_result::-webkit-scrollbar-thumb {
  background-color: #cccccc;
  border-radius: 4px;
}

.search_cont .search_result > div {
  display: none;
}

.search_cont .search_result > div.show {
  display: block;
}

.search_cont .search_result > div.no_search.show {
  display: flex;
}
.no_search {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 40px;
  padding-right: 15px;
}

.no_search h3 {
  color: #171717;
  font-size: 17px;
  margin-top: 16px;
  font-weight: 500;
}

.no_search p {
  color: #707070;
  font-size: 14px;
}

.no_search p .blue {
  color: #0069b4;
}

.red {
  color: red;
}

.exist_search {
  padding: 20px 0 0 0;
}

.exist_search .search_list {
  margin-bottom: 30px;
}

.exist_search .search_list .search_list_text {
  display: inline-block;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
}

.exist_search .search_list li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 50px;
  padding-right: 20px;
  word-wrap: break-word;
  white-space: pre-wrap;
  word-break: break-all;
}

.exist_search .search_list li > a {
  font-size: 17px;
  color: #707070;
}

.exist_search .search_list li > a.vr_mark {
  position: absolute;
  top: 2px;
  left: 6px;
  display: block;
  width: 36px;
  height: 18px;
  line-height: 18px;
  color: #fff;
  text-align: center;
  background-color: #754ecf;
  border-radius: 9px;
  font-size: 14px;
}

.exist_search .search_list li > a.vr_mark:hover {
  opacity: 0.5;
}

.exist_search .search_list li > a > .blue {
  font-size: 17px;
  color: #0069b4;
}

.swiper {
  width: 100%;
  height: 100%;
  padding-bottom: 18px !important;
  margin-bottom: 8px;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-pagination-bullets {
  bottom: var(--swiper-pagination-bottom, 0px) !important;
}

.swiper-pagination-bullet-active {
  background: #754ecf !important;
}
.swiper-pagination-bullet {
  width: 16px !important;
  height: 4px !important;
  border-radius: 2px !important;
  background: #cccccc;
  opacity: 1;
}

.showPopup .info_cont > div > p {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-size: 14px;
  color: #171717;
  gap: 2px;
}

.showPopup .info_cont > div > p > span {
  display: flex;
  width: 26px;
  height: 26px;
  background-color: #754ecf;
  border-radius: 50%;
  text-align: center;
  align-items: center;
  justify-content: center;
}
/* 채팅방 */
.chatPop {
  position: absolute;
  bottom: 20px;
  left: 92px;
  width: 350px;
  height: 600px;
  background: #fff;
  padding-left: 10px;
  box-shadow: 3px 3px 6px #0000001f;
  z-index: 1;
}

/* 채팅방 */

/* 파노 */

#pano {
  display: block;
}

#pano.hide {
  display: none;
}
/* 파노 */

/* 리스트 핫스팟 */
.list_close {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.list_close.on {
  display: block;
}

.list_box {
  min-width: 360px;
  max-height: 590px;
  border-radius: 10px;
  overflow-y: auto;
  background-color: white;
  display: none;
  -ms-overflow-style: none; /* 인터넷 익스플로러 */
  scrollbar-width: none; /* 파이어폭스 */
}

/* .list_box::-webkit-scrollbar {
  display: none;
} */

.list_box.on {
  display: block;
}

.list {
  display: flex;
  justify-content: center;
  align-items: center;
  font: normal normal bold 16px/26px NanumSquareOTF;
  color: black;
  height: 58px;
  box-sizing: border-box;
  border-bottom: 1px solid gainsboro;
}

.list:last-child {
  border-bottom: none;
}

.list_close > img {
  cursor: pointer;
  position: absolute;
  top: -42px;
  left: 360px;
}

/* 모바일 버튼 */
.mobile_menu_btn {
  display: none;
  position: absolute;
  top: 20px;
  left: 20px;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

.mobile_btns {
  display: none;
}

/* 모바일 버튼 */

/* 딤 */
.dim {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000c;
  z-index: 11;
}

.close_dim {
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}
/* 딤 */

/* 메뉴 닫기 */
.menu_close {
  position: absolute;
  top: 13px;
  right: -40px;
  display: block;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}

.menu_close img {
  transition: width 1s ease-in-out, height 1s ease-in-out;
}
.menu_close.hide {
  display: none;
}

/* 메뉴 닫기 */

/* 1920보다 큰 경우 */
@media screen and (min-width: 1921px) {
  .tooltip.on {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    background: url(../images/tooltip_bg_1.png) center no-repeat rgba(0, 0, 0, 0.76);
  }

  .tooltip_wrap {
    position: relative;
    max-width: 2120px;
    max-height: 928px;
    margin-left: 200px;
  }
}
/* 1920보다 큰 경우 */

/* 중간 */
@media screen and (max-width: 1920px) {
  .tooltip.on {
    background: url(../images/tooltip_bg_1.png) 0 0 no-repeat #3c3c3c;
  }
}
/* 중간 */

/* 모바일 버전 */
@media screen and (max-width: 768px) {
  .menu_close {
    display: none;
  }

  .logo {
    top: 20px;
    right: 25px;
  }

  .logo > img {
    width: 158px;
  }

  .nav {
    top: 0;
    left: 0;
    width: 58px !important;
    height: 100%;
    border-radius: 0px 10px 10px 0px;
    z-index: 11;
  }

  .nav_content {
    top: 0;
    left: 0;
    height: 100%;
    border-radius: 0;
    z-index: 10;
    position: relative;
  }

  .nav_content.open {
    position: fixed;
    width: 100%;
  }

  .nav-menu {
    border: 0;
    padding: 10px 0;
  }

  .cont_tit {
    margin-left: 20px;
  }

  .cont_wrap {
    position: relative;
  }

  .cont_wrap > div > div.login_m {
    width: 66px;
  }

  .cont_wrap > div > div > ul {
    padding: 0 10px 40px 20px;
  }

  .nav-menu .nav-item.search_btn {
    display: none;
  }

  .nav-menu .nav-item.close_menu_btn {
    display: flex;
  }

  .nav-main {
    height: calc(100% - 298px);
  }

  .nav-main .nav-item.home_btn {
    display: none;
  }

  .nav-main .nav-item-box {
    padding: 3px 4px !important;
  }

  .nav-profile .nav-item {
    height: 58px;
  }

  .nav-profile .nav-item.live {
    background: #cccccc;
  }
  .nav-profile .nav-item.live.onAir {
    background: #f8e3e3;
  }

  .nav-profile .nav-item.offering {
    background: #e9f8e3;
  }

  .nav-profile .nav-item.vr {
    background: #ebe3f8;
  }

  .nav-profile .nav-item.chat {
    background: #e3f1f8;
  }

  .nav-profile .nav-item.login {
    display: none;
  }

  .nav-profile .nav-item img {
    width: 100%;
  }

  .cont_wrap > div {
    padding: 60px 0px 30px 53px;
  }

  .search_cont form {
    margin-left: 20px;
  }

  .mobile_menu_btn {
    display: block;
  }

  .mobile_btns {
    position: absolute;
    top: 23px;
    right: 15px;
    display: flex !important;
    height: 40px !important;
    justify-content: flex-end;
    align-items: center;
    padding: 0 !important;
    gap: 4px;
  }

  .mobile_btns > div {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    cursor: pointer;
  }

  .showPopup {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .dim.show {
    display: block;
  }

  /* 채팅방 */
  .chatPop {
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100vh;
    min-height: -webkit-fill-available;
    height: 100vh;
    height: -webkit-fill-available;
    height: fill-available;
    padding-left: 0px;
    box-shadow: none;
    z-index: 11;
  }
  /* 채팅방 */

  /* 리스트 핫스팟 */
  .list_box {
    min-width: 160px;
    z-index: 15;
    max-height: 350px;
  }

  .list_box > img {
    top: -28px;
    left: 162px;
  }

  .list_close > img {
    cursor: pointer;
    position: absolute;
    top: -42px;
    left: 160px;
  }
  /* 리스트 핫스팟 */

  /* 모바일 툴팁 */
  .tooltip {
    height: 100vh;
    height: -webkit-fill-available;
    height: fill-available;
    /* background: url(../images/tooltip_bg_m.png) 0 0 no-repeat #3c3c3c !important; */
    padding: 0;
    background: none;
    position: fixed;
    overflow-y: scroll;
    overflow-x: hidden;
  }

  .tooltip > div.tooltip_wrap {
    height: 943px;
    background: url(../images/tooltip_bg_m.png) 0 0 no-repeat #3c3c3c !important;
  }


  .tooltip > div.tooltip_wrap > div.tooltip_log {
    background: url(../images/tooltip_log_m.png) 0 0 no-repeat;
    top: 18px;
    left: 128px;
    width: 250px;
    height: 36px;
  }
  .tooltip > div.tooltip_wrap > div.tooltip_shortcut {
    background: url(../images/tooltip_shortcut_m.png) 0 0 no-repeat;
    width: 141px;
    height: 109px;
    top: 364px;
    left: 170px;
  }
  .tooltip > div.tooltip_wrap > div.tooltip_vr {
    background: url(../images/tooltip_vr_m.png) 0 0 no-repeat;
    width: 150px;
    height: 85px;
    top: 785px;
    left: 122px;
  }
  .tooltip > div.tooltip_wrap > div.tooltip_title {
    background: url(../images/tooltip_title_m.png) 0 0 no-repeat;
    width: 211px;
    height: 81px;
    top: 148px;
    left: 134px;
  }
  .tooltip > div.tooltip_wrap > div.tooltip_pin {
    background: url(../images/tooltip_pin_m.png) 0 0 no-repeat;
    width: 204px;
    height: 76px;
    top: 244px;
    left: 96px;
  }
  .tooltip > div.tooltip_wrap > div.tooltip_three {
    background: url(../images/tooltip_three_m.png) 0 0 no-repeat;
    width: 280px;
    height: 80px;
    top: 80px;
    left: 32px;
  }

  .vr_tooltip {
    width: 58px;
    height: 58px;
    right: 20px;
    bottom: 20px;
    background: url(../images/vr_tooltip_m.png) 0 0 no-repeat;
  }

  .vr_guide {
    width: 100%;
    background: url(../images/pano_guide_m.png) center no-repeat;
    background-color: #3d3d3d;
    background-size: contain;
  }

  .vr_tooltip_close {
    top: 16px;
    width: 38px;
    height: 38px;
    background: url(../images/vr_tooltip_close_m.png) 0 0 no-repeat;
  }

  /* 모바일 툴팁 */

  .menu_close {
    display: none;
  }
}


/* 아이폰 미니 */
@media screen and (max-width: 768px) and (max-height: 635px) {
  .nav-main .nav-item-box {
    padding: 0px 4px !important;
  }
}