@import url('reset.css');
@import url('font.css');
@import url('tab.css');

*{box-sizing: border-box !important;}
:root{
    --primary-color:#446CEB;
    --primary-color-hover:rgb(4, 104, 150);
}
.hide{display: none !important;}

/* 공통 버튼 CSS */
.bold{
    font-weight: 700;
}

.text-align-left{
    text-align: left !important;
}
.text-align-center{
    text-align: center;
}


html,
body {
  font-size: 16px;
  color: var(--title-black);
  font-family: 'Pretendard Variable',sans-serif;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
}

.inner {
  margin: 0 auto;
  max-width: 92%;
  width: 1280px;
}

button {
  padding: 0;
  border: initial;
  background-color: initial;
  cursor:pointer;
}

.d-flex {
  display: flex;
}

.align-center {
  align-items: center;
}

.align-start {
  align-items: start;
}

.align-baseline {
  align-items: baseline;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.hidden {
  overflow: hidden;
}
#sub #wrap{
  padding-top: 100px;
}
#sub #wrap #container{
  padding:57px 0;
  box-sizing: border-box;
}
#sub .sec-header{
  margin-bottom: 43px;
}
#sub .sec-header h2{
  display: block;
  font-size: 32px;
  font-weight: 700;
  color:#020202;
  line-height: 1.2em;
}
#sub .sec-header p{
  margin-top: 11px;
  font-size: 21px;
  line-height: 1.17em;
  color:#757575;
}
header{
  position: fixed;
  left:0;
  right:0;
  top:0;
  z-index: 100;
  transition: background 0.3s, border 0.3s;
  border-bottom: 1px solid #D2D2D2;
}
#main header{
  background:rgba(150, 150, 150, 0.6);
  border-bottom-color: transparent;
}
#main header.fixed,
header.fixed{
  background:#fff;
  border-bottom: 1px solid #D2D2D2;
}
header .inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  height: 100px;
}
header h1{
  width: 138px;
}
header h1 a{
  display: block;
}
header h1 a img{
  display: block;
}
header nav>ul{
  display: flex;
  align-items: center;
  gap:28px;
}
#main header.fixed nav>ul>li>a,
header nav>ul>li>a{
  display: block;
  color:#000;
  font-weight: 500;
  transition: color 0.3s;
  line-height: 100px;
}
header nav>ul>li>a:hover{
  color:var(--primary-color);
}
header nav>ul>li{
  position: relative;
}
#main header nav>ul>li>a{
  color:#fff;
}
header nav>ul>li:hover>a{
  color:var(--primary-color)
}
header nav>ul>li .depth-menu{
  position: absolute;
  left:50%;
  top:100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 10;
  background: var(--primary-color);
  color:#fff;
  padding:20px;
  border-radius: 20px;
  flex-direction: column;
  display: flex;
  gap:15px;
  transform: translate(-50%,-10px);
  transition-property: opacity, visiblity, pointerEvents;
  transition-duration: 0.3s;
  box-shadow: 0 10px 10px rgba(0,0,0,0.18);
}
header nav>ul>li .depth-menu a{
  display: block;
  text-align: center;
  white-space: nowrap;
  color:#fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.43em;
  transition: color 0.3s;
}
header nav>ul>li .depth-menu a:hover{
  color:#89a4ff
}
header nav>ul>li:hover .depth-menu{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
header .header-right{
  display: flex;
  align-items: center;
  gap:23px;
}
header .header-right .booking-btn{
  display: flex;
  align-items: center;
  gap:6px;
}
#main header.fixed .header-right .booking-btn button,
header .header-right .booking-btn button{
  display: block;
    line-height: 30px;
    text-align: center;
    width: 90px;
    border: 1px solid #000;
    color: #000;
    font-weight: 500;
    font-size: 12px;
    border-radius: 5px;
    transition: background-color 0.2s, color 0.2s, border 0.2s;
}
#main header .header-right .booking-btn button{
  border-color: #fff;
  color:#fff;
}
#main header .header-right .booking-btn button:hover{
  background: var(--primary-color);
  color:#fff;
  border-color: var(--primary-color);
}
header .header-right .booking-btn button:hover{
  background-color: #000;
  color:#fff;
}
header .header-right .btn-mobile{
  display: none;
  text-indent: -9999px;
  border:0;
  cursor: pointer;
  background: transparent url(/assets/images/common/icon_menu_black.svg) no-repeat center center / cover;
  width: 32px;
  aspect-ratio: 32 / 22;
  transition: background 0.3s;
}
#main header .header-right .btn-mobile{
    background: transparent url(/assets/images/common/icon_menu_white.svg) no-repeat center center / cover;
}
#main header.fixed .header-right .btn-mobile{
    background: transparent url(/assets/images/common/icon_menu_black.svg) no-repeat center center / cover;
}
#main header.fixed .header-right .btn-vr,
header .header-right .btn-vr{
  background: var(--primary-color);
  color:#fff;
  font-weight: 500;
  width: 90px;
  line-height: 32px;
  border-radius: 5px;
  font-size: 12px;
  text-align: center;
}
#main .header-right .btn-vr{
  background-color: #fff;
  color:#A4A6AB;
  transition-property: background, color;
  transition-duration: 0.3s;
}
header .header-right .lang{
  display: flex;
  align-items: center;
  gap:6px;
}
#main header.fixed .header-right .lang li a,
header .header-right .lang li a{
  display: block;
  line-height: 30px;
  text-align: center;
  width: 90px;
  border:1px solid var(--primary-color);
  color:var(--primary-color);
  font-weight: 500;
  font-size: 12px;
  border-radius: 5px;
  transition-property: background-color, color, border;
  transition-duration: 0.2s;
}
#main header .header-right .lang li a{
  color:#fff;
  border-color: #fff;
  transition-property: background-color, color, border;
  transition-duration: 0.3s;
}
header .header-right .lang li a:hover{
  border-color: var(--primary-color) !important;
  background-color: var(--primary-color);
  color:#fff !important;
}

footer{
  background: #F2F5FF;
  padding:54px 0;
}
footer .footer-top{
  display: flex;
  align-items: center;
  gap:33px;
}
footer .footer-logo{
  width: 138px;
}
footer .footer-logo img{
  display: block;
}
footer .footer-menu{
  display: flex;
  align-items: center;
  gap:29px;
}
footer .footer-menu li+li{
  position: relative;
}
footer .footer-menu li+li::before{
  content:'';
  width: 1px;
  height: 14px;
  background-color: #000;
  position: absolute;
  left:-14.5px;
  top:50%;
  transform: translate(-50%,-50%);
}
footer .footer-menu li a{
  display: block;
  font-size: 14px;
}
footer .footer-info{
  margin-top: 11px;
}
footer .footer-info{
  font-size: 14px;
  line-height: 1.58em;
  letter-spacing: -0.02em;
}

#sidebar{
  display: none;
  background-color: #fff;
  position: fixed;
  right:0;
  top:0;
  left:0;
  width: 100vw;
  z-index: 10000;
  height: 100vh;
}
#sidebar .sidebar-header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding:0 4vw;
  height: 80px;
  border-bottom: 1px solid #D2D2D2;
}
#sidebar .sidebar-header .logo{
  width: 178px;
}
#sidebar .sidebar-header .logo img{
  display: block;
}
#sidebar .sidebar-header .btns{
  display: flex;
  align-items: center;
  gap:6px;
}
#sidebar .sidebar-header .btns .btn-vr{
  background: #000;
  color:#fff;
}
#sidebar .sidebar-header .btns a{
  text-align: center;
  line-height: 38px;
  min-width: 108px;
  border:1px solid #000;
  color:#000;
  border-radius: 5px;
  font-size: 18px;
}
#sidebar .sidebar-header .btns li:last-child{
  margin-left: 30px;
}
#sidebar .sidebar-header .btns li .btn-close{
  width: 25px;
  border:0;
  cursor: pointer;
  background-color: transparent;
}
#sidebar .sidebar-header .btns li .btn-close img{
  display: block;
}
#sidebar .sidebar-content{
  overflow: scroll;
  height: calc(100vh - 80px);
  box-sizing: border-box;
  padding:15px 4vw;
}
#sidebar .sidebar-content .booking-btn{
  display: flex;
  align-items: center;
  gap: 20px;
}
#sidebar .sidebar-content .booking-btn button{
  display: flex;
  line-height: 50px;
  text-align: center;
  width: 90px;
  border: 1px solid #000;
  color: #000;
  align-items: center;
  justify-content: center;
  width: calc(50% - 10px);
  font-size: 20px;
  border-radius: 5px;
}
#sidebar .sidebar-content nav>ul{
  display: flex;
  flex-direction: column;
}
#sidebar .sidebar-content nav>ul>li{
  width: 100%;
  border-bottom: 1px solid #D8D8D8;
}
#sidebar .sidebar-content nav>ul>li>a{
  display: block;
  text-align: left;
  padding:21px 0;
  font-size: 32px;
  font-weight: 700;
  color:#000;
  transition: color 0.3s;
}
#sidebar .sidebar-content nav>ul>li>a:hover,
#sidebar .sidebar-content nav>ul>li>button:hover,
#sidebar .sidebar-content nav>ul>li.has-depth .depth-menu a:hover{
  color:var(--primary-color)
}
#sidebar .sidebar-content nav>ul>li.has-depth>button{
  position: relative;
  border:0;
  cursor: pointer;
  background: transparent;
  text-align: left;
  padding:21px 0;
  font-size: 32px;
  font-weight: 700;
  color:#000;
  width: 100%;
  transition: color 0.3s;
}
#sidebar .sidebar-content nav>ul>li.has-depth>button.active{
  color:var(--primary-color);
}
#sidebar .sidebar-content nav>ul>li.has-depth>button::after{
  width: 20px;
  aspect-ratio: 2 / 1;
  content:'';
  position: absolute;
  right:0;
  top:50%;
  background: transparent url(/assets/images/common/icon_chevron_down.svg) no-repeat center center / cover;
  transform: translate(0,-50%);
  transition: transform 0.3s;
}
#sidebar .sidebar-content nav>ul>li.has-depth>button.active::after{
  transform: translate(0,-50%) rotate(180deg);
}
#sidebar .sidebar-content nav>ul>li.has-depth .depth-menu{
  display: none;
  padding:22px 0;
  flex-direction: column;
  border-top: 1px solid #D2D2D2;
}
#sidebar .sidebar-content nav>ul>li.has-depth .depth-menu a{
  display: block;
  font-size: 28px;
  color:#020202;
  line-height: 1.17em;
  transition: color 0.3s;
}
#sidebar .sidebar-content nav>ul>li.has-depth .depth-menu a+a{
  margin-top: 15px;
}

/* 예약 */
.booking-modal{
  display: none;;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  overflow: hidden;
  position: fixed;
  left:0;
  top:0;
  width: 100vw;
  height: 100vh;
  z-index: 1000;
  background-color: rgba(41, 41, 41, 0.5);
}
.booking-modal .btn-close{
  position: absolute;
  right: 0;
  top: 0;
  width: 40px;
  height: 40px;
  overflow: hidden;
  text-indent: -9999px;
  border:0;
  transform: translate(0,calc(-100% - 10px));
  cursor: pointer;
  background: transparent url(/assets/images/svg/icon_close_white.svg) no-repeat center center / cover;
}
.booking-modal .modal-inner{
  width: 700px;
  max-width: 100%;
  margin:0 auto;
  position: relative;
}
.booking-modal .modal-header{
  background-color: #4D6CE3;
  height: 60px;
  box-sizing: border-box;
  padding:0 30px;
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  color:#fff;
  border-radius: 20px 20px 0 0;
}
.booking-modal .modal-content{
  position: relative;
  background-color: #fafafa;
  border-radius: 0 0 20px 20px;
  overflow: hidden;
}
.booking-modal .modal-content .scroll{
  max-height: calc(1173px - 80px - 153px);
  overflow: auto;
  padding: 27px 30px 30px;
}
@media (max-height:1117px){
  .booking-modal .modal-content .scroll{
    max-height: calc(90vh - 80px - 153px);
  }
}
.booking-modal .modal-content .btm-btn{
  display: flex;
  align-items: stretch;
  gap: 12px;
  justify-content: space-between;
  padding: 0 30px 20px;
  background-color: #fafafa;
}
.booking-modal .modal-content .btm-btn .btn-prev{
  flex-shrink:1;
  width: 149px;
  box-sizing: border-box;
  height: 70px;
  border:2px solid #757575;
  border-radius: 10px;
  font-size: 22px;
  font-weight: 500;
  color:#757575;
  background-color: transparent;
}
.booking-modal .modal-content .btm-btn .btn-payment{
  width: 100%;
  border:0;
  cursor: pointer;
  height: 60px;
  border-radius: 7px;
  font-size: 19px;
  font-weight: 700;
  background-color: #4D6CE3;
  color:#fff;
}
.booking-modal .modal-content .btm-btn .btn-payment:disabled{
  background-color: #E5E5E5;
  color:#B6B6B6;
}
.booking-modal .booking-form .form-box{
  margin-bottom: 22px;
}
.booking-modal .booking-form .form-box .btn-toggle{
  border:2px solid #757575;
  box-sizing: border-box;
  height: 50px;
  padding: 0 20px;
  color:#757575;
  display: flex;
  align-items: center;
  width: 100%;
  font-size: 19px;
  border-radius: 7px;
  position: relative;
}
.booking-modal .booking-form .form-box .btn-toggle::after{
  content:'';
  width: 22px;
  height: 12px;
  position: absolute;
  right:25px;
  top:50%;
  opacity: 0.5;
  transform: translate(0,-50%);
  transition: transform 0.3s, opacity 0.3s;
  background: transparent url(/assets/images/common/icon_chevron_down.svg) no-repeat center center / cover;
}
.booking-modal .booking-form .form-box .btn-toggle.active::after{
  transform: translate(0,-50%) rotate(180deg);
  opacity: 1;
}
.booking-modal .booking-form .form-box .btn-toggle.active{
  border-color: #446CEB;
  color:#000;
}
.booking-modal .booking-form .form-box .box-content{
  display: none;
}
.booking-modal .booking-form .form-box .package-list{
  display: flex;
  flex-direction: column;
  margin-top: 6px;
  box-shadow: 7px 7px 20px rgba(0,0,0,0.2);
  gap:11px;
  padding:18px 0;
  border-radius: 20px;
}
.booking-modal .booking-form .form-box .package-list li{
  position: relative;
}
.booking-modal .booking-form .form-box .package-list li input{
  position: absolute;
  left:0;
  top:0;
  width: 0;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}
.booking-modal .booking-form .form-box .package-list li input+label{
  display: flex;
  cursor: pointer;
  width: 100%;
  background-color: transparent;
  transition: background-color 0.2s, color 0.2s;
  padding: 0 20px;
  box-sizing: border-box;
  color:#757575;
  font-size: 17px;
  font-weight: 500;
  line-height: 35px;
}
.booking-modal .booking-form .form-box .package-list li input:checked+label,
.booking-modal .booking-form .form-box .package-list li input+label:hover{
  background-color: rgba(117,145,255,0.2);
  color:#000;
}
.booking-modal .booking-form .form-box #calendar{
  margin-top: 26px;
}
.booking-modal .booking-form .form-box #calendar,
.booking-modal .booking-form .form-box #calendar>*{
  width: 100%;
}
#calendar .ui-widget.ui-widget-content{
  border:0;
  padding:0;
  background: transparent;
}
#calendar .ui-widget.ui-widget-content .ui-datepicker-header{
  padding:0;
  border:0;
  background-color: transparent;
}
#calendar .ui-datepicker .ui-datepicker-title{
  margin:0;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 23px;
}
#calendar .ui-datepicker .ui-datepicker-prev, 
#calendar .ui-datepicker .ui-datepicker-next{
  width: 20px;
  height: 20px;
  border:0;
  background-color: transparent;
  top:0;
  cursor: pointer;
}
#calendar .ui-datepicker .ui-datepicker-prev .ui-icon, 
#calendar .ui-datepicker .ui-datepicker-next .ui-icon{
  display: none;
}
#calendar .ui-datepicker .ui-datepicker-prev{
  left:168px;
  background: transparent url(/assets/images/common/icon_chevron_left.svg) no-repeat center center / 10px auto;
}
#calendar .ui-datepicker .ui-datepicker-next{
  right:168px;
  background: transparent url(/assets/images/common/icon_chevron_right.svg) no-repeat center center / 10px auto;
}
#calendar .ui-datepicker th{
  text-align: center;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.2em;
  vertical-align: middle;
}
#calendar .ui-datepicker td{
  padding:12px 0;
  text-align: center;
  vertical-align: middle;
}

#calendar .ui-state-default, 
#calendar .ui-widget-content .ui-state-default{
  background-color: transparent;
  border:0;
  color:#b2b2b2;
  font-size: 17px;
  line-height: 1.2em;
  font-weight: 500;
  padding:0;
  display: block;
  text-align: center;
}
#calendar .ui-datepicker td a{
  border:0;
  text-align: center;
  font-size: 20px;
  line-height: 1.2em;
  background-color: transparent;
  font-weight: 500;
  color:#222 !important;
  padding:0;
}
#calendar .ui-datepicker .ui-state-active{
  color:var(--primary-color) !important;
  font-weight: 700;
}
.booking-modal .booking-form .form-box .product-list{
  display: flex;
  flex-direction: column;
  gap:13px;
  margin-top: 40px;
}
.booking-modal .booking-form .form-box .product-list li{
  box-shadow: 7px 7px 20px rgba(0,0,0,0.2);
  background-color: #fff;
  border-radius: 20px;
}
.booking-modal .booking-form .form-box .product-list li input{
  position: absolute;
  left:0;
  top:0;
  width: 0;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}
.booking-modal .booking-form .form-box .product-list li input+label{
  position: relative;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  border:0;
  border-radius: 20px;
  background-color: #fff;
  padding: 20px 25px 20px 51px;
  gap:13px;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.17em;
  letter-spacing: -0.03em;
}
.booking-modal .booking-form .form-box .product-list li input+label::before{
  content:'';
  width: 20px;
  height: 20px;
  border-radius: 100%;
  border:1px solid #757575;
  position: absolute;
  left:20px;
  top: 18px;
  box-sizing: border-box;
}
.booking-modal .booking-form .form-box .product-list li input+label .name{
  color:#000;
}
.booking-modal .booking-form .form-box .product-list li input+label .name .seats{
  display: inline-block;
  color:#446CEB;
  margin-left: 12px;
}
.booking-modal .booking-form .form-box .product-list li input+label .info{
  color:#757575;
}
.booking-modal .booking-form .form-box .product-list li input:checked+label::before{
  border: 7px solid #446CEB;
  background-color: #fff;
}
.booking-modal .booking-form .form-box .option-box{
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.booking-modal .booking-form .form-box .option-box:first-child{
  margin-top: 13px;
}
.booking-modal .booking-form .form-box .option-box:last-child{
  margin-bottom: 0;
}
.booking-modal .booking-form .form-box .option-box:last-child>span{
  display: block;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.17em;
}
.booking-modal .booking-form .form-box .option-box .option-list{
  padding:20px;
  border-radius: 20px;
  box-shadow: 7px 7px 20px rgba(0,0,0,0.2);
  background-color: #fff;
}
.booking-modal .booking-form .form-box .option-box .option-list ul{
  display: flex;
  flex-direction: column;
  gap:37px;
}
.booking-modal .booking-form .form-box .option-box .option-list ul li{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.booking-modal .booking-form .form-box .option-box .option-list ul li .option-title{
  font-size: 16px;
  line-height: 1.17em;
  font-weight: 500;
}
.booking-modal .booking-form .form-box .option-box .option-list ul li .option-price{
  margin-top: 13px;
  font-size: 19px;
  line-height: 1.17em;
  font-weight: 500;
}
.booking-modal .booking-form .form-box .option-box .option-list ul li .qty{
  display: flex;
  align-items: center;
  justify-content: center;
  gap:5px;
}
.booking-modal .booking-form .form-box .option-box .option-list ul li .qty input{
  border:0;
  width: auto;
  font-size: 19px;
  font-weight: 500;
  padding:0;
  text-align: center;
  width: 50px;
}
.booking-modal .booking-form .form-box .option-box .option-list ul li .qty button{
  border:1px solid rgba(117,117,117,0.5);
  width: 25px;
  height: 25px;
  border-radius: 100%;
  background-color: transparent;
  cursor: pointer;
  transition: background-color 0.2s;
  color:#8f8f8f;
  font-weight: 300;
  font-size: 19px;
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.booking-modal .booking-form .form-box .option-box .option-total{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 20px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.03em;
  border-radius:20px;
  box-shadow: 7px 7px 20px rgba(0,0,0,0.2);
  background-color: #fff;
}
.booking-modal .booking-form>.btm-price{
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fafafa;
  padding: 10px 20px;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color:#446CEB
}

.booking-modal .order-form{
  padding-bottom: 30px !important;
}
.booking-modal .booking-info{
  border-radius: 10px;
  padding: 30px 25px;
  box-sizing: border-box;
  box-shadow: 7px 7px 20px rgba(0,0,0,0.2);
  background-color: #fff;
  position: relative;
}
.booking-modal .booking-info .status{
  position: absolute;
  color:#757575;
  border:1px solid #757575;
  text-align: center;
  top:30px;
  right:25px;
  font-size: 14px;
  line-height: 35px;
  border-radius: 7px;
  padding: 0 20px;
 }

.booking-modal .booking-info .product-name{
  font-size: 22px;
  line-height: 1.2em;
  font-weight: 700;
  margin-bottom: 0.6em;
}
.booking-modal .booking-info table{
  width: 100%;
}
.booking-modal .booking-info table th{
  position: relative;
  text-align: left;
  vertical-align: top;
  font-weight: 500;
  font-size: 17px;
  line-height: 1.17em;
  letter-spacing: -0.03em;
  padding:14px 0;
}
.booking-modal .booking-info table th em{
  color:#ff0000;
  position: absolute;
  left: 110px;
  top:calc(50% + 12.5px);
  transform: translate(0,-50%);
  white-space: nowrap;
}
.booking-modal .booking-info table td{
  text-align: left;
  vertical-align: top;
  font-size: 17px;
  line-height: 1.17em;
  letter-spacing: -0.03em;
  padding:14px 0;
}
.booking-modal .booking-info table tr.price th,
.booking-modal .booking-info table tr.price td{
  padding-bottom: 0;
  padding-top: 25px;
  border-top: 1px solid #b0b0b0;
}
.booking-modal .booking-info table tr.price th em{
  font-size: 16px;
  line-height: 1;
}
.booking-modal .booking-info table tr.price td{
  text-align: right;
  font-weight: 500;
}
.booking-modal .agree{
  margin-top: 15px;
}
.booking-modal .agree .btn-toggle{
  background-color: #fff;
  box-shadow: 7px 7px 20px rgba(0,0,0,0.2);
  box-sizing: border-box;
  height: 60px;
  padding: 0 20px;
  color:#000;
  font-weight: 700;
  display: flex;
  align-items: center;
  width: 100%;
  font-size: 19px;
  border-radius: 10px;
  position: relative;
}
.booking-modal .agree .btn-toggle::after{
  content:'';
  width: 22px;
  height: 12px;
  position: absolute;
  right:25px;
  top:50%;
  opacity: 0.5;
  transform: translate(0,-50%);
  transition: transform 0.3s, opacity 0.3s;
  background: transparent url(/assets/images/common/icon_chevron_down.svg) no-repeat center center / cover;
}
.booking-modal .agree .btn-toggle.active::after{
  transform: translate(0,-50%) rotate(180deg);
  opacity: 1;
}
.booking-modal .agree .agree-cont{
  display: none;
  margin-top: 12px;
  background-color: #fff;
  box-shadow: 7px 7px 20px rgba(0,0,0,0.2);
  border-radius: 10px;
  padding: 20px;
  height: 170px;
  overflow: auto;
  font-size: 15px;
  line-height: 1.45em;
  letter-spacing: -0.03em;
  color:#000;
}
.booking-modal .agree .agree-btn{
  margin-top: 20px;
  position: relative;
}
.booking-modal .agree .agree-btn input{
  position: absolute;
  left:0;
  top:0;
  width: 0;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}
.booking-modal .agree .agree-btn input+label{
  display: flex;
  align-items: center;
  width: 100%;
  border:0;
  gap:12px;
  cursor: pointer;
}
.booking-modal .agree .agree-btn input+label i{
  border:1px solid #757575;
  border-radius: 5px;
  width: 25px;
  height: 25px;
}
.booking-modal .agree .agree-btn input+label p{
  color:#757575;
  font-size: 16px;
  line-height: 1.19em;
}
.booking-modal .agree .agree-btn input:checked+label i{
  background: var(--primary-color) url(/assets/images/common/icon_check_white.svg) no-repeat center center / 18px auto;
}
.booking-modal .agree .agree-btn input:checked+label p{
  color:#000;
}
.booking-modal .user-info{
  margin-top: 35px;
  background-color: #fff;
  box-shadow: 7px 7px 20px rgba(0,0,0,0.2);
  border-radius: 10px;
  padding: 25px;
  box-sizing: border-box;
}
.booking-modal .user-info>strong{
  display: block;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2em;
  margin-bottom: 18px;
}
.booking-modal .user-info .info-row{
  margin-bottom: 12px;
}
.booking-modal .user-info .info-row input{
  border: 1px solid #757575;
  box-sizing: border-box;
  height: 60px;
  padding: 0 20px;
  color: #000;
  display: flex;
  align-items: center;
  width: 100%;
  font-size: 19px;
  border-radius: 10px;
  position: relative;
}
.booking-modal .user-info .info-row input::placeholder{
  color:#757575;
}
.booking-modal .user-info .info-row.auth-phone{
  display: none;
  position: relative;
}
.booking-modal .user-info .info-row.auth-phone .limit{
  position: absolute;
  top:50%;
  right:25px;
  transform: translate(0,-50%);
  font-size: 22px;
  color:var(--primary-color);
  line-height: 1;
  letter-spacing: -0.03em;
  display: none;
}
.booking-modal .user-info .info-row.auth-phone input{
  padding-right: 100px;
}
.booking-modal .user-info .info-btn{
  display: flex;
  align-items: stretch;
  margin-top: 40px;
  gap:14px;
  justify-content: space-between;
}
.booking-modal .user-info .info-btn button{
  border:0;
  cursor: pointer;
  height: 60px;
  font-size: 19px;
  font-weight: 700;
  border-radius: 10px;
}
.booking-modal .user-info .info-btn button.btn-confirm:disabled,
.booking-modal .user-info .info-btn button.btn-send:disabled{
  background-color: #e5e5e5;
  color:#b0b0b0;
}
.booking-modal .user-info .info-btn button.btn-resend{
  flex-shrink: 1;
  border:1px solid #757575;
  font-weight: 500;
  width: 156px;
  color:#757575;
  display: none;
}
.booking-modal .user-info .info-btn button.btn-confirm,
.booking-modal .user-info .info-btn button.btn-send{
  width: 100%;
  background-color: var(--primary-color);
  color:#fff;
}
.booking-modal .user-info .info-btn button.btn-confirm{
  display: none;
}

.booking-modal .check-form .user-info{
  margin-top: 0;
  margin-bottom: 32px;
  top:30px;
  right:25px;
}
.booking-modal .check-form .booking-list{
  display: none;
}

@media all and (max-width:1350px){
  header .header-right{
    gap:6px;
  }
  header nav>ul{
    gap:20px;
  }
@media all and (max-width:1280px){
  header nav>ul{
    gap:20px;
  }
  header nav>ul>li>a{
    font-size: 14px;
  }
  header nav>ul>li .depth-menu a{
    font-size: 14px;
  }
  header .header-right{
    gap:6px;
  }
  header .header-right .booking-btn button,
  header .header-right .btn-vr,
  header .header-right .lang li a{
    width: 70px !important;
    font-size: 12px !important;
  }
  #sub .sec-header{
    margin-bottom: 36px;
  }
  #sub .sec-header h2{
    font-size: 30px;
  }
  #sub .sec-header p{
    font-size: 20px;
  }
}
@media  all and (min-width:1101px) {
  aside{
    display: none;
  }
}
@media all and (max-width:1100px){
  header nav{
    display: none;
  }
  header .header-right .booking-btn,
  header .header-right .btn-vr,
  header .header-right .lang{
    display: none;
  }
  header .header-right .btn-mobile{
    display: block;
  }
  header .inner{
    height: 80px;
  }
  #sub #wrap{
    padding-top: 80px;
  }
  #sub .sec-header h2{
    font-size: 24px;
  }
  #sub .sec-header p{
    font-size: 18px;
  }
}
@media all and (max-width:768px){
  #sub #wrap{
    padding-top:calc((100 / 700) * 100vw);
  }
  #sub #wrap #container{
    padding:calc((60 / 700) * 100vw) 0;
  }
  header .inner{
    height: calc((100 / 700) * 100vw);
  }
  header h1{
    width: calc((178 / 700) * 100vw);
  }
  header .header-right .btn-mobile{
    width: calc((33 / 700) * 100vw);
  }
  footer{
    padding:calc((30 / 700) * 100vw) 0 calc((37 / 700) * 100vw);
  }
  footer .footer-top{
    gap:calc((13 / 700) * 100vw)
  }
  footer .footer-logo{
        width: calc((198 / 700) * 100vw);
  }
  footer .footer-menu li a{
    font-size: calc((16 / 700) * 100vw);
  }
  footer .footer-menu{
    gap:calc((22 / 700) * 100vw)
  }
  footer .footer-menu li+li::before{
    height: calc((14 / 700) * 100vw);
    left:calc((-11 / 700) * 100vw)
  }
  footer .footer-info{
    margin-top: calc((18 / 700) * 100vw);;
    font-size: calc((16 / 700) * 100vw);;
  }
  #sub .sec-header{
    margin-bottom: calc((50 / 700) * 100vw);;
  }
  #sub .sec-header h2{
    font-size: calc((32 / 700) * 100vw);;
  }
  #sub .sec-header p{
  font-size: calc((24 / 700) * 100vw);;
  margin-top: calc((11 / 700) * 100vw);;
  }


  #sidebar .sidebar-header{
    height: calc((100 / 700) * 100vw);
  }
  #sidebar .sidebar-header .logo{
    width: calc((178 / 700) * 100vw);
  }
  #sidebar .sidebar-header .btns{
    gap:calc((6 / 700) * 100vw);
  }
  #sidebar .sidebar-header .btns a{
    line-height: calc((38 / 700) * 100vw);;
    min-width: calc((108 / 700) * 100vw);;
    border-radius: calc((5 / 700) * 100vw);
    font-size: calc((18 / 700) * 100vw);
  }
  #sidebar .sidebar-header .btns li:last-child{
    margin-left: calc((31 / 700) * 100vw);
  }
  #sidebar .sidebar-header .btns li .btn-close{
    width: calc((25 / 700) * 100vw);
  }
  
  #sidebar .sidebar-content{
    overflow: scroll;
    height: calc(100vh - calc((80 / 700) * 100vw));
    box-sizing: border-box;
    padding:calc((15 / 700) * 100vw) 4vw;
  }
  #sidebar .sidebar-content nav>ul>li>a{
    padding:calc((21 / 700) * 100vw) 0;
    font-size: calc((32 / 700) * 100vw);
  }
  #sidebar .sidebar-content nav>ul>li.has-depth>button{
    padding:calc((21 / 700) * 100vw)  0;
    font-size: calc((32 / 700) * 100vw) ;
  }
  #sidebar .sidebar-content nav>ul>li.has-depth>button::after{
    width: calc((20 / 700) * 100vw) ;
  }
  #sidebar .sidebar-content nav>ul>li.has-depth .depth-menu{
    padding:calc((22 / 700) * 100vw)  0;
  }
  #sidebar .sidebar-content nav>ul>li.has-depth .depth-menu a{
    font-size: calc((28 / 700) * 100vw) ;
  }
  #sidebar .sidebar-content nav>ul>li.has-depth .depth-menu a+a{
    margin-top: calc((15 / 700) * 100vw) ;
  }
  #sidebar .sidebar-content .booking-btn{
    gap:10px;
    margin-bottom: 10px;
  }
  #sidebar .sidebar-content .booking-btn button{
    font-size: 14px;
    width: calc(50% - 5px);
    line-height: 32px;
  }


  .booking-modal{
    align-items: flex-end;
  }
  .booking-modal .modal-inner{
    width: 100vw;
    border-radius: calc((40 / 700) * 100vw) calc((40 / 700) * 100vw) 0 0;
  }
  .booking-modal .modal-header{
    height: calc((88 / 700) * 100vw);
    padding:0 calc((44 / 700) * 100vw);
    font-size: calc((40 / 700) * 100vw);
  }
  .booking-modal .modal-content .scroll{
    padding:calc((25 / 700) * 100vw) calc((40 / 700) * 100vw) calc((40 / 700) * 100vw);
    max-height: 70vh;
  }
  .booking-modal .booking-form .form-box{
    margin-bottom: calc((20 / 700) * 100vw);
  }
  .booking-modal .booking-form .form-box .btn-toggle{
    height: calc((80 / 700) * 100vw);
    padding:0 calc((20 / 700) * 100vw);
    border-radius: calc((20 / 700) * 100vw);
    font-size: calc((28 / 700) * 100vw);
  }
  .booking-modal .booking-form .form-box .btn-toggle::after{
    right:calc((20 / 700) * 100vw);
    width: calc((20 / 700) * 100vw);
    height: calc((10 / 700) * 100vw);
  }
  .booking-modal .booking-form .form-box .package-list{
    gap:calc((10 / 700) * 100vw);
    padding:calc((18 / 700) * 100vw) 0;
  }
  .booking-modal .booking-form .form-box .package-list li input+label{
    font-size: calc((24 / 700) * 100vw);
    line-height: calc((51 / 700) * 100vw);
    padding:0 calc((63 / 700) * 100vw);
  }
  .booking-modal .modal-content .btm-btn{
    padding:calc((20 / 700) * 100vw) calc((45 / 700) * 100vw) ;
    gap:calc((10 / 700) * 100vw);
  }
  .booking-modal .modal-content .btm-btn .btn-prev{
    width: calc((128 / 700) * 100vw);
    height: calc((96 / 700) * 100vw);
    font-size: calc((28 / 700) * 100vw);
    border-radius: calc((20 / 700) * 100vw);
    flex: none;
  }
  .booking-modal .modal-content .btm-btn .btn-payment{
    height: calc((95 / 700) * 100vw);
    border-radius: calc((20 / 700) * 100vw);
    font-size: calc((34 / 700) * 100vw);
  }
  .booking-modal .booking-form .form-box #calendar{
    margin-top: calc((52 / 700) * 100vw);
  }
  #calendar .ui-datepicker .ui-datepicker-title{
    font-size: calc((24 / 700) * 100vw);
    margin-bottom: calc((28 / 700) * 100vw);
  }
  #calendar .ui-datepicker .ui-datepicker-prev, 
  #calendar .ui-datepicker .ui-datepicker-next{
    width: calc((20 / 700) * 100vw);
    height: calc((20 / 700) * 100vw);
  }
  #calendar .ui-datepicker .ui-datepicker-prev{
    left:calc((203 / 700) * 100vw);
  }
  #calendar .ui-datepicker .ui-datepicker-next{
    right:calc((203 / 700) * 100vw);
  }
  #calendar .ui-datepicker th{
    font-size: calc((24 / 700) * 100vw);
    line-height: calc((28 / 700) * 100vw);
  }
  #calendar .ui-datepicker td{
    padding:calc((12 / 700) * 100vw) 0;
    font-size: calc((24 / 700) * 100vw);
  }

  #calendar .ui-state-default, 
  #calendar .ui-widget-content .ui-state-default{
    font-size: calc((24 / 700) * 100vw);
    line-height: calc((28 / 700) * 100vw);
  }
  #calendar .ui-datepicker td a{
    font-size: calc((24 / 700) * 100vw);
    line-height: calc((28 / 700) * 100vw);
  }
  .booking-modal .booking-form .form-box .product-list{
    gap:calc((13 / 700) * 100vw);
    margin-top: calc((66 / 700) * 100vw);
  }
  .booking-modal .booking-form .form-box .product-list li{
    box-shadow: calc((7 / 700) * 100vw) calc((7 / 700) * 100vw) calc((20 / 700) * 100vw) rgba(0,0,0,0.2);
    border-radius: calc((20 / 700) * 100vw);
  }
  .booking-modal .booking-form .form-box .product-list li input+label{
    border-radius: calc((20 / 700) * 100vw);
    padding: calc((35 / 700) * 100vw) calc((20 / 700) * 100vw) calc((35 / 700) * 100vw) calc((79 / 700) * 100vw);
    gap:calc((13 / 700) * 100vw);
    font-size: calc((28 / 700) * 100vw);
  }
  .booking-modal .booking-form .form-box .product-list li input+label::before{
    width: calc((40 / 700) * 100vw);
    height: calc((40 / 700) * 100vw);
    left:calc((26 / 700) * 100vw);
    top: calc((31 / 700) * 100vw);
  }
  .booking-modal .booking-form .form-box .product-list li input+label .name .seats{
    margin-left: calc((12 / 700) * 100vw);
  }
  .booking-modal .booking-form .form-box .product-list li input:checked+label::before{
    border: calc((13 / 700) * 100vw) solid var(--primary-color);
  }
  .booking-modal .booking-form .form-box .option-box{
    margin-bottom: calc((57 / 700) * 100vw);
    gap: calc((28 / 700) * 100vw);
  }
  .booking-modal .booking-form .form-box .option-box:first-child{
    margin-top: calc((30 / 700) * 100vw);
  }
  .booking-modal .booking-form .form-box .option-box:last-child>span{
    font-size: calc((28 / 700) * 100vw);
    padding:0 calc((28 / 700) * 100vw);
  }
  .booking-modal .booking-form .form-box .option-box .option-list{
    padding:calc((49 / 700) * 100vw) calc((38 / 700) * 100vw) calc((45 / 700) * 100vw) calc((45 / 700) * 100vw);
    border-radius: calc((20 / 700) * 100vw);
    box-shadow: calc((7 / 700) * 100vw) calc((7 / 700) * 100vw) calc((20 / 700) * 100vw) rgba(0,0,0,0.2);
  }
  .booking-modal .booking-form .form-box .option-box .option-list ul{
    gap:calc((33 / 700) * 100vw);
  }
  .booking-modal .booking-form .form-box .option-box .option-list ul li .option-title{
    font-size: calc((28 / 700) * 100vw);
  }
  .booking-modal .booking-form .form-box .option-box .option-list ul li .option-price{
    margin-top: calc((13 / 700) * 100vw);
    font-size: calc((28 / 700) * 100vw);
  }
  .booking-modal .booking-form .form-box .option-box .option-list ul li .qty{
    gap:0;
  }
  .booking-modal .booking-form .form-box .option-box .option-list ul li .qty input{
    width: calc((62 / 700) * 100vw);
    font-size: calc((28 / 700) * 100vw);
  }
  .booking-modal .booking-form .form-box .option-box .option-list ul li .qty button{
    width: calc((36 / 700) * 100vw);
    height: calc((36 / 700) * 100vw);
    font-size: calc((28 / 700) * 100vw);
  }
  .booking-modal .booking-form .form-box .option-box .option-total{
    padding: calc((31 / 700) * 100vw) calc((45 / 700) * 100vw);
    font-size: calc((28 / 700) * 100vw);
    border-radius: calc((20 / 700) * 100vw);
    box-shadow: calc((7 / 700) * 100vw) calc((7 / 700) * 100vw) calc((20 / 700) * 100vw) rgba(0,0,0,0.2);
  }
  .booking-modal .booking-form>.btm-price{
    margin-top: calc((54 / 700) * 100vw);
    padding: calc((27 / 700) * 100vw) calc((45 / 700) * 100vw);
    font-size: calc((28 / 700) * 100vw);
    color:var(--primary-color);
  }

  .booking-modal .order-form{
    padding-bottom: calc((33 / 700) * 100vw) !important;
  }
  .booking-modal .booking-info{
    border-radius: calc((20 / 700) * 100vw);
    padding: calc((46 / 700) * 100vw) calc((30 / 700) * 100vw) calc((28 / 700) * 100vw) calc((30 / 700) * 100vw);
    box-shadow: calc((7 / 700) * 100vw) calc((7 / 700) * 100vw) calc((20 / 700) * 100vw) rgba(0,0,0,0.2);
  }
  .booking-modal .booking-info .status{
    top:calc((30 / 700) * 100vw);
    right:calc((25 / 700) * 100vw);
    font-size: calc((24 / 700) * 100vw);
    line-height: calc((54 / 700) * 100vw);
    border-radius: calc((10 / 700) * 100vw);
    padding:0 calc((20 / 700) * 100vw);
  }

  .booking-modal .booking-info .product-name{
    font-size: calc((34/ 700) * 100vw);
    line-height: calc((41 / 700) * 100vw);
    font-weight: 700;
    margin-bottom: calc((20 / 700) * 100vw);
  }
  .booking-modal .booking-info table th{
    font-size: calc((28 / 700) * 100vw);
    padding:calc((9.5 / 700) * 100vw) 0;
  }
  .booking-modal .booking-info table tr.price th em{
    left: calc((150 / 700) * 100vw);
    top:calc(50% + calc((12 / 700) * 100vw));
    transform: translate(0,-50%);
    font-size: calc((20 / 700) * 100vw);
  }
  .booking-modal .booking-info table td{
    font-size: calc((28 / 700) * 100vw);
    padding:calc((9.5 / 700) * 100vw) 0;
  }
  .booking-modal .booking-info table tr.price th,
  .booking-modal .booking-info table tr.price td{
    padding-top: calc((24 / 700) * 100vw);
  }
  .booking-modal .agree{
    margin-top: calc((15 / 700) * 100vw);
  }
  .booking-modal .agree .btn-toggle{
    box-shadow: calc((7 / 700) * 100vw) calc((7 / 700) * 100vw) calc((20 / 700) * 100vw) rgba(0,0,0,0.2);
    box-sizing: border-box;
    height: calc((95 / 700) * 100vw);
    padding: 0 calc((49 / 700) * 100vw) ;
    font-size: calc((28 / 700) * 100vw);
    border-radius: calc((20 / 700) * 100vw);
  }
  .booking-modal .agree .btn-toggle::after{
    width: calc((22 / 700) * 100vw);
    height: calc((12 / 700) * 100vw);
    right:calc((25 / 700) * 100vw);
  }
  .booking-modal .agree .agree-cont{
    margin-top: calc((12 / 700) * 100vw);
    box-shadow: calc((7 / 700) * 100vw) calc((7 / 700) * 100vw) calc((20 / 700) * 100vw) rgba(0,0,0,0.2);
    border-radius: calc((20 / 700) * 100vw);
    padding: calc((25 / 700) * 100vw) calc((49 / 700) * 100vw);
    height: calc((200 / 700) * 100vw);
    overflow: auto;
    font-size: calc((24 / 700) * 100vw);
    line-height: calc((28 / 700) * 100vw);
  }
  .booking-modal .agree .agree-btn{
    margin-top: calc((30 / 700) * 100vw);
  }
  .booking-modal .agree .agree-btn input+label{
    gap:calc((16 / 700) * 100vw);
  }
  .booking-modal .agree .agree-btn input+label i{
    border-radius: calc((5 / 700) * 100vw);
    width: calc((40 / 700) * 100vw);
    height: calc((40 / 700) * 100vw);
  }
  .booking-modal .agree .agree-btn input+label p{
    font-size: calc((24 / 700) * 100vw);
    line-height: calc((29 / 700) * 100vw);
  }
  .booking-modal .user-info{
    margin-top: calc((41 / 700) * 100vw);
    box-shadow: calc((7 / 700) * 100vw) calc((7 / 700) * 100vw) calc((20 / 700) * 100vw) rgba(0,0,0,0.2);
    border-radius: calc((20 / 700) * 100vw);
    padding: calc((40 / 700) * 100vw) calc((49 / 700) * 100vw);
  }
  .booking-modal .user-info>strong{
    font-size: calc((34 / 700) * 100vw);
    line-height: calc((41 / 700) * 100vw);
    margin-bottom: calc((19 / 700) * 100vw);
  }
  .booking-modal .user-info .info-row{
    margin-bottom: calc((15 / 700) * 100vw);
  }
  .booking-modal .user-info .info-row input{
      height: calc((95 / 700) * 100vw);
      padding: 0 calc((34 / 700) * 100vw);
      font-size: calc((28 / 700) * 100vw);
      border-radius: calc((20 / 700) * 100vw);
  }
  .booking-modal .user-info .info-row.auth-phone .limit{
    right:calc((34 / 700) * 100vw);
    font-size: calc((28 / 700) * 100vw);
  }
  .booking-modal .user-info .info-row.auth-phone input{
    padding-right: calc((100 / 700) * 100vw);
  }
  .booking-modal .user-info .info-btn{
    margin-top: calc((14 / 700) * 100vw);
    gap:calc((16 / 700) * 100vw);
  }
  .booking-modal .user-info .info-btn button{
    height: calc((96 / 700) * 100vw);
    font-size: calc((28 / 700) * 100vw);
    border-radius: calc((20 / 700) * 100vw);
  }
  .booking-modal .user-info .info-btn button.btn-resend{
    width: calc((142 / 700) * 100vw);
  }
  .booking-modal .check-form .user-info{
    margin-bottom: calc((47 / 700) * 100vw);
    top:calc((30 / 700) * 100vw);
    right:calc((25 / 700) * 100vw);
  }
  .booking-modal .check-form .booking-list{
    display: none;
  }
}

