@charset "utf-8";

/* header START */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 50px;
  z-index: 998;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
  background: var(--white);
  display: flex;
  padding: 0 20px;
  align-items: center;
}
/* 메뉴 버튼 */
.main_menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 50px;
  padding: 17px 20px;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.main_menu.no_fixed {
  position: absolute;
}
.menu_btn {
  width: 14px;
  height: 12px;
}
.bar {
  display: block;
  height: 2px;
  width: 14px;
  margin-top: 3px;
  background-color: var(--black);
  border-radius: 5px;
  transition: all 0.2s;
}
.bar:first-child {
  margin-top: 0;
}
.arrow_btn{
  display: block;
  font-size:12px;
}
.arrow_btn::after{ 
  content: "";
  display: inline-block;
  width: 8px;
  height: 10px;
  background-image: url('../images/icon/icon_chevron_next.svg'); 
  background-size:8px 10px;
  background-repeat: no-repeat;
  margin-left: 10px; 
  margin-right: 2px;
  }
  .arrow_btn:hover{
    text-decoration: underline;
    text-underline-offset: 5px;
  }
  /* 20250227 지우 내용 추가 */
  .add_option .arrow_btn::after {
    margin-left: 4px;
  }
  /* 20250227 지우 내용 추가 */
/* 활성화 상태 (클릭 후) */
.main_menu.active .bar {
  background-color: var(--white);
}
.main_menu.active .bar:nth-child(1) {
  width: 16px;
  transform: translateY(5px) rotate(45deg); /* 위 막대가 아래로 이동하면서 회전 */
}
.main_menu.active .bar:nth-child(2) {
  opacity: 0; /* 중간 막대는 사라짐 */
}
.main_menu.active .bar:nth-child(3) {
  width: 16px;
  transform: translateY(-5px) rotate(-45deg); /* 아래 막대가 위로 이동하면서 회전 */
}

.header_logo {
  position: absolute;
  font-weight: 600;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.header_logo > img {
  height: 8px;
  width: auto;
}
/* header END */

/* menu-contents START */
.dim {
  display: none;
}
.menu-contents {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1000;
  background: var(--white);
}
.menu_header,
.submenu_header {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: var(--black);
  color: var(--white);
}
.menu_header.show {
  display: block;
  z-index: 1001;
}
.menu_wrap {
  position: absolute;
  top: 50px;
  left: 0;
  width: 100%;
}
.submenu_header {
  display: none;
  top: 0;
  z-index: 1002;
}
.submenu_header.show {
  display: block;
}
.submenu_header .back_btn {
  width: 50px;
  height: 50px;
}
.submenu_header .back_btn > img {
  height: 16px;
  width: auto;
}
.menu_btn_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 20px;
  margin: auto;
}
.login_btn.right {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.login_btn {
  padding: 5px 20px;
  border: 1px solid var(--gray3);
  box-sizing: border-box;
  color: var(--white);
  font-size: 12px;
}

.menu_list li {
  position: relative;
  cursor: pointer;
}
.menu {
  display: block;
  padding: 20px;
  font-size: 12px;
}
.menu:hover {
  background: rgba(0, 0, 0, 0.1);
}
.menu::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 13px;
  height: 13px;
  transform: translateY(-50%);
  background: url(../images/icon/icon_chevron_next.svg) no-repeat center/
    contain;
}
.menu_pop_wrap {
  position: fixed;
  top: 50px;
  left: 0;
  z-index: 1002;
  width: 100%;
  height: 100%;
  padding-bottom: 50px;
  overflow-y: auto;
  background: var(--white);
}

/* 모델 메뉴 */
.pop_model_list li {
  border-bottom: 1px solid var(--gray4);
}
.pop_model_list .pop_cont_wrap:hover {
  background: var(--gray4);
}
.pop_model_list .logo {
  padding: 20px;
}
.pop_model_list .logo > img {
  height: 8px;
  width: auto;
}
.pop_cont_wrap {
  display: flex;
}
.pop_model_img {
  width: 25%;
}
.pop_text_wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 70%;
  margin-left: 20px;
  font-size: 12px;
}
.pop_text_wrap .model_name {
  font-size: 13px;
  font-weight: normal;
  font-family: Land Rover Web, Arial, Helvetica, sans-serif;
}
.menu_order .pop_model_list li {
  margin-bottom: 30px;
  border-bottom: 0;
}
/* 견적, 계약 메뉴 공통 사항 */
.menu_order .pop_cont_wrap,
.menu_order_ok .pop_cont_wrap {
  padding: 20px 0;
  border-bottom: 1px solid var(--gray3);
}
/* 견적보기 메뉴 */
.pop_list {
  padding: 0 20px;
  padding-top: 10px;
}
.pop_list li {
  position: relative;
  height: 140px;
}
.menu_order_ok .pop_list li {
  height: auto;
}
.order_info_wrap {
  width: 100%;
  display: flex;
}
.order_info {
  position: relative;
  width: calc(100% - 16px - 140px);
  margin-left: 16px;
}
.car_img {
  position: relative;
  width: 140px;
  height: 96px;
  border-radius: 10px;
  overflow: hidden;
}
.car_img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.car_text {
  font-size: 13px;
}
.car_name {
  padding-right: 30px;
  line-height: 1.5;
  font-family: Land Rover Web, Arial, Helvetica, sans-serif;
}

/* 20250310 지우 내용 추가 */
.menu_pop_wrap .car_name {
  padding-right: 0;
}
/* 20250310 지우 내용 추가 */

.car_date {
  display: block;
  font-size: 11px;
  margin-top: 5px;
  line-height: 1;
}
.order_btn_wrap {
  position: absolute;
  right: 0;
  bottom: -3px;
  text-align: right;
}
.remove_btn_wrap {
  position: absolute;
  top: 15px;
  right: 0;
  z-index: 1003;
  text-align: right;
}
.remove_btn {
  display: inline-block;
  padding: 8px 11px 8px 16px;
}
.remove_btn .bar {
  width: 14px;
  height: 1px;
  margin-top: 0;
  background: var(--black);
}
.remove_btn .bar:first-child {
  width: 14px;
  transform:rotate(45deg);
}
.remove_btn .bar:last-child {
  width: 14px;
  transform: translateY(-1px) rotate(-45deg);
}
.car_text {
  position: relative;
}
.car_text h2 {
  line-height: 1.5;
}
.car_text .car_text_tit, 
.info_tit_wrap {
  display: flex;
  justify-content: space-between;
}
.change_btn_wrap, .cancle_btn_wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 12px;
  color: var(--black);
}
.carInfo_contents .car_text_tit .change_btn_wrap {
  display: none;
}
.info_tit_wrap .change_btn_wrap {
  margin-bottom: 6px;
}
.change_btn_wrap .more_btn_icon,
.cancle_btn_wrap .more_btn_icon{
  display: block;
  width: 8px;
  height: 10px;
  margin-left: 5px;
  margin-right: 0;
  background: url(../images/icon/icon_chevron_next.svg) no-repeat left center / contain;
}
.change_btn_wrap a {
  padding-bottom: 2px;
}
.cancle_btn_wrap {
  margin-top: 10px;
}
.cancle_btn_wrap .cancle_button {
  display: block;
  min-width: auto;
  width: 60px;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 5px;
  background: var(--black);
  color: var(--white);
  font-size: 10.5px;
  font-weight: normal;
  letter-spacing: normal;
  transition: 0.4s;
  text-align: center;
}
.sale_info {
  position: absolute;
  top: 20px;
  right: 30px;
  padding: 5px 15px;
  background: var(--gray2);
  color: var(--white);
  border-radius: 20px;
  font-size: 10.5px;
}
.saleEnd_dim {
  position: absolute;
  top: 0;
  align-self: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
}
.saleEnd_txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white);
}

/* 계약차량 메뉴 */
.menu_order_ok .order_info_wrap {
  flex-wrap: wrap;
}
.order_car_info {
  width: 100%;
  margin-top: 20px;
}
.order_car_info .order_step {
  font-size: 13px;
}
.order_car_info .icon_list {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
}
.order_car_info .step_icon {
  width: 20px;
  opacity: 0.2;
}
.order_car_info .step_icon > img {
  width: 100%;
}
.order_car_info .next_icon {
  height: 14px;
  opacity: 0.2;
}
.order_car_info .next_icon > img {
  height: 100%;
}
.order_car_info .step_icon.on,
.order_car_info .next_icon.on {
  opacity: 1;
}
/* subCont START */
.subCont_wrap {
  display: none;
}
.subCont_wrap.show {
  display: block;
}
.subCont_header {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1003;
  width: 100%;
  height: 50px;
  padding: 0 20px;
  align-items: center;
  line-height: 50px;
  background: var(--white);
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
}
.subCont_header .back_btn,
#header .back_btn {
  width: 50px;
  height: 50px;
}
.subCont_header .back_btn > img,
#header .back_btn > img {
  height: 18px;
  width: auto;
}
.subCont_header .subCont_tit {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
}

.subCont {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1003;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background: var(--white);
}
.subCont_contents {
  margin-top: 50px;
}
.mainCont_left .carInfo_link,
.webCont_left .carInfo_link{
  display: none;
}
.carInfo_link {
  width: 100%;
  overflow-x: auto;
  z-index: 999;
  border-bottom:1px solid var(--gray4);
}
.carInfo_link ul {
  width: auto;
  display: flex;
  flex-wrap: nowrap;
  padding: 0 25px;
  height: 50px;
}
.carInfo_link ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 11px; 
  margin: 0 10px;
  line-height: 47px;
  color:var(--gray2);
  transition: 0.1s;

}
.carInfo_link ul li:first-child a{
  margin-left:2px;
}
.carInfo_link ul li a:hover {
  border-bottom: 3px solid var(--gray3);
  margin-bottom: -3px;
  line-height: 47px;
  color:var(--black);
}

.mainCont .mainCont_left,
.mainCont .webCont_left,
.subCont .webCont_left {   
  position: sticky;
  top:20px; 
  z-index: 3;
  background: var(--white);
}
.mainCont .order_summary{
  position: sticky;
  top:0; 
  z-index: 3;
  background: var(--white);
}
.subCont .subCont_swiper,
.mainCont .subCont_swiper,
.personalCont .subCont_swiper {
  height: 210px;
  z-index: 990;
}
.subCont .subCont_swiper img,
.mainCont .subCont_swiper img,
.personalCont .subCont_swiper img{
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.mainCont .subCont_swiper {
  height: 190px;
}
.subCont .order_btn_wrap {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 2;
}
.subCont .subCont_tit {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
}
.subCont .order_info_wrap {
  position: relative;
}
.subCont .order_info {
  width: 100%;
}
.subCont .car_name,
.mainCont .car_name,
.price_sticky_area .car_name,
.personalCont .car_name {
  font-size: 22px;
}
.subCont .car_text,
.mainCont .car_text,
.personalCont .car_text,
.carInfo {
  padding: 20px 25px 10px;
  margin-top: 0;
}
.subCont .car_date {
  margin-top: 10px;
}
.subCont .carInfo_contents,
.mainCont .carInfo_contents {
  padding: 20px 30px 60px 30px;
}
.subCont .carInfo_contents h3,
.mainCont .carInfo_contents h3,
.personalCont .apply_contents h3,
.subCont .carInfo_contents .car_date {
  display: none;
}
.order_step_wrap {
  padding-bottom: 30px;
}
.carInfo_contents li {
  padding: 20px 0;
  border-bottom: 1px solid var(--gray4);
}

.carInfo_contents .order_car_info .icon_list li {
  padding: 0;
  border-bottom: none;
}

.carInfo_contents .info_tit {
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: bold;
  color: var(--black);
}
.carInfo_contents .info_sub {
  color: var(--gray1);
  display: flex;
  justify-content: space-between;
}
.carInfo_contents .info_sub span:first-child{
  width:70%;
}
.carInfo_contents .info_sub span:last-child {
  width:30%;
  text-align: right;
}
.carInfo_contents .info_price {
  line-height: 2.2;
}
.carInfo_contents .order_dealer_info {
  margin-top: 30px;
  padding: 20px;
  background: var(--gray4);
}
.order_dealer_info .info_tit {
  font-size: 14px;
}
.order_dealer_info .shop_info {
  line-height: 1.8;
  color: var(--gray1);
}
.carInfo_contents .order_notice_text {
  margin-top: 30px;
  padding: 20px;
  border: 1px solid #ddd;
  color: var(--gray2);
}
.order_dealer_info p,
.order_notice_text p {
  font-size: 12px;
}
.cancle_notice_text {
  position: relative;
  margin-top: 20px;
  font-size: 12px;
  padding-left: 10px;
  color: var(--red);
}
.cancle_notice_text p {
  width: 90%;
}
.cancle_notice_text::after {
  content: "*";
  display: block;
  top: 2px;
  left: 0;
  margin: auto;
  text-align: center;
  position: absolute;
  color: var(--red);
}
.order_price,
.price_sticky_area {
  position: sticky;
  bottom: 0;
  z-index: 11;
  justify-content: flex-end;
  align-items: center;
  background: var(--white);
  display: flex;
  width: 100%;
  padding: 16px 20px;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--gray3);
}
.order_price .price,
.price_sticky_area .price {
  width: 55%;
  font-size: 18px;
  font-weight: bold;
}
.order_price .price {
  width: 50%;
}

.order_price .car_text,
.price_sticky_area .car_text {
  display: none;
}
.order_price .price_btn_wrap,
.price_sticky_area .price_btn_wrap{
  gap: 14px;
}
.order_price.vert_price .price_btn_wrap,
.price_sticky_area.vert_price .price_btn_wrap {
  width: 40%;
}
.price_btn_wrap .price_button{
  height:40px;
}
.price_sticky_area .price_txt {
  font-size: 12px;
  font-weight: normal;
}
.subCont_swiper .swiper-container-horizontal > .swiper-pagination-bullets,
.mainCont_swiper .swiper-container-horizontal > .swiper-pagination-bullets {
  width: auto;
}
.price_btn_wrap .arrow_btn{
  width:100%;
  text-align: right;
}
/* subCont EMD */

/* menu-contents END */

/* 메뉴 js동작 css */
.allmenu,
.menu_model,
.menu_order,
.menu_order_ok,
.order_view_contents,
.order_ok_contents,
.option_contents  {
  display: none;
}

.allmenu.on,
.menu_model.on,
.menu_order.on,
.menu_order_ok.on,
.order_view_contents.on,
.order_ok_contents.on,
.option_contents.on {
  display: block;
}

.no_scroll {
  position: fixed;
  width: 100%;
  overflow-y: hidden;
  touch-action: none; /* 터치스크롤 방지 */
  -webkit-overflow-scrolling: touch; /* 터치스크롤 방지 */
}
.subMenu_cont .back_btn {
  position: absolute;
  top: 12.5px;
  left: 20px;
  width: 25px;
  height: 25px;
}
/* 태블릿 이미지 사이즈 */
@media screen and (min-width: 751px) {
  .car_img {
    max-width: 150px;
  }
  .subCont .subCont_swiper,
  .mainCont .subCont_swiper,
  .personalCont .subCont_swiper{
    height: 420px;
  }
  .promotion_contents .tab_cont_img {
    height: 450px;
  }
}
@media screen and (min-width: 1025px) {
  #header{
    height:72px;
    margin: 0 auto;
  }
  .header_logo{
    font-size:18px;
  }
  .header_logo > img {
    height: 10px;
  }
  .dim {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999;
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
  }
  .main_menu {
    left: auto;
    height: 70px;
    padding: 27px 20px;
  }
  .main_menu.pc_no_fixed {
    position: absolute;
  }
  .menu_wrap{
    top:70px;
  }
  .menu_btn {
    width: 20px;
    height: 16px;
  }
  .bar {
    width: 20px;
    margin-top: 5px;
  }
  .main_menu.active .bar:nth-child(1) {
    width: 21px;
    transform: translateY(7px) rotate(45deg); /* 위 막대가 아래로 이동하면서 회전 */
  }
  .main_menu.active .bar:nth-child(2) {
    opacity: 0; /* 중간 막대는 사라짐 */
  }
  .main_menu.active .bar:nth-child(3) {
    width: 21px;
    transform: translateY(-7px) rotate(-45deg); /* 아래 막대가 위로 이동하면서 회전 */
  }
  .menu-contents,
  .submenu_header {
    width: 400px;    
  }
  .menu_header,
  .submenu_header{
    height:70px;
  }
  .menu_pop_wrap {
    top:70px;
    width: 400px;
    overflow-y: hidden;
  }
  .menu_pop_wrap.menu_order_ok {
    padding-bottom: 90px;
    overflow-y: auto;
  }
   .menu_pop_wrap.menu_order_ok::-webkit-scrollbar{
		height: 100%;
		width: 5px;
		border-radius: 10px;
		background: rgba(0, 0, 0, 0.1);
	}
	
	 .menu_pop_wrap.menu_order_ok::-webkit-scrollbar-thumb {
		width: 5px;
		border-radius: 10px;
		background: rgba(0, 0, 0, 0.2);
		cursor: grabbing;
	}

  .subCont {
    top: 0;
    padding-bottom: 0;
  }
  .subCont_header {
    position: relative;
    height:70px;
  }
  .submenu_header .back_btn > img,
  .subCont_header .back_btn > img,
  #header .back_btn > img {
    height: 21px;
  }
  
  .subCont .subCont_contents {
    margin: auto;
  }
  .subCont .webCont_wrap,
  .mainCont .webCont_wrap,
  .mainCont .mainCont_wrap,
  .personalCont .webCont_wrap {
    display: flex;
    width: 100%;
    height: 100%;
  }
  
  .mainCont .mainCont_left,
  .mainCont .webCont_left,
  .subCont .webCont_left {
    display: flex;
    flex-direction: column;
    position: sticky;
    z-index: 10;
    top: 0;
    width: 70%;
    height: 100%;
  }
  .mainCont_left .carInfo_link,
  .webCont_left .carInfo_link{
    display: block;
  }
  .carInfo_mobile{
    display: none;
  }
  .carInfo_link{
    border-bottom: none;
  }
  .carInfo_link ul {
    height:60px;
  }
  .carInfo_link ul li {
    margin:0 15px;
  }
  .carInfo_link ul li a {
    font-size: 12px;
    line-height:57px;
  }
   .carInfo_link ul li a:hover{
    line-height:57px;
   }
  .subCont .subCont_swiper,
  .mainCont .subCont_swiper,
  .personalCont .subCont_swiper {
    height: 690px;
    order: 2;
  }
  .subCont .carInfo_contents h3,
  .mainCont .carInfo_contents h3,
  .personalCont .apply_contents h3,
  .subCont .carInfo_contents .car_date,
  .car_name_sub{
    display: block;
  }
  .car_text_tit {
    position: relative;
  }
  .car_text_tit .car_name_sub  {
    padding-top: 7px;
  }
  .carInfo_contents .car_text_tit .change_btn_wrap {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
  }
  .carInfo_contents .order_dealer_info {
    margin-top: 0;
  }
  .cancle_button {
    top: 0;
    bottom: auto;
  }
  .carInfo_contents ul{
    margin: 30px 0;
  }
  .subCont .carInfo_contents,
  .mainCont .carInfo_contents,
  .personalCont .apply_contents {
    width: 30%;
    padding-top: 30px;
  }
  .carInfo_contents .order_car_info .icon_list {
    padding-bottom: 0;
    margin-bottom: 0;
  }
  .order_price .car_text,
  .price_sticky_area .car_text {
    display: block;
    margin-right: auto;
    margin-top: 0;
    padding: 0;
  }
  .subCont .car_name,
  .mainCont .car_name,
  .price_sticky_area .car_name {
    font-size: 26px;
    line-height: 1;
  }
  .webCont_left .car_text,
  .mainCont_left .car_text  {
    display: none;
  }
  .order_price .car_name_sub,
  .price_sticky_area .car_name_sub {
    display: block;
    padding-top: 7px;
    line-height: 2;
  }
  .order_price .car_date.web_cont {
    display: none;
  }
  .order_price,
  .price_sticky_area {
    gap: 40px;
  }
  .order_price .price,
  .order_price .price_btn_wrap,
  .price_sticky_area .price,
  .price_sticky_area .price_btn_wrap {
    width: auto;
  }

  .order_price.vert_price,
  .price_sticky_area.vert_price {
    align-items: center;
  }
  .order_price.vert_price .price_btn_wrap,
  .price_sticky_area.vert_price .price_btn_wrap {
    width: auto;  
  }

  .subCont .price {
    font-size: 18px;
    font-weight: bold;
  }
    /* 견적보기 */
    .order_view_contents .car_name {
      position: relative;
    }
    .order_view_contents .sale_info {
      position: absolute;
      top: 0;
      right: -76px;
    }
    /* 계약차량 */
    .order_car_info .order_step_wrap {
      margin-top: 20px;
      padding-bottom: 0;
    }

    .price_btn_wrap .price_button,
    .personal .btn_black
    {
      height:50px;
    }
}
