@charset "UTF-8";

@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
@font-face {
    font-family: "Pretendard";
    src: url("https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Thin.woff") format("woff");
    font-weight: 100;
    font-style: normal;
}
@font-face {
    font-family: "Pretendard";
    src: url("https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Light.woff") format("woff");
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: "Pretendard";
    src: url("https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: "Pretendard";
    src: url("https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-SemiBold.woff") format("woff");
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: "Pretendard";
    src: url("https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Bold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
}
:root{
    --font-color-base : #2d2d2d;
    --font-color-red : #e34b4b;
    --margin-top-basic : 20px;
}
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { 
	display:block;
	margin:0;
	padding:0;
}

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
canvas, details,  
summary,
time, mark, audio, video {
	margin:0;
	padding:0;
    box-sizing: border-box;
}
iframe{
    height:0;
}
*{box-sizing: border-box;}
h1, h2, h3, h4, h5, h6{font-weight:normal;}
body {
	font-family: 'Pretendard',sans-serif;
	font-size:14px;
	color:var(--font-color-base);
    font-weight:400;
}
ul li{
	list-style:none;
	padding:0;
}
img {
	border: 0;
	vertical-align: middle;
}
blockquote, q {
	quotes:none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content:'';
	content:none;
}
a{
	color:inherit;
	margin:0;
	padding:0;
	text-decoration: none;
}
table {
	border-collapse:collapse;
	border-spacing:0;
}
input, select, textarea{
	vertical-align:middle;
	font-size:initial;
	-webkit-border-radius: 0;
}
em{font-style:normal;font-weight:bold}

select{
    width: 100%;
    height: 30px;
    color: #767676;
    font-size: 13px;
    border:1px solid #ccc;
    background: #fff;
    border-radius: 5px;
}
b,
strong {
	font-weight: bold;
}
abbr[title], dfn[title] {
	cursor:help;
	border-bottom: none;
	text-decoration: underline;
}
button,
[type="button"],
[type="reset"],
[type="submit"] {
	cursor: pointer;
	padding: 0;
	background:transparent;
	border:none;
    color: var(--font-color-base);
}
input[type="text"],
input[type="password"],
input[type="number"]{
	border:1px solid #ccc;
	min-height:30px;
	padding:0 10px;
    width:100%;
}
input[type="text"]::placeholder {
    font-size: 13px;
  }
input[type="text"]:focus,
input[type="number"]:focus,
input[type=password]:focus,
select:focus{
    outline: none;
    border:1px solid #0e74cd;
}
textarea{
	resize: none;
	border:1px solid #ccc;
	border-radius:3px;
	min-height:78px;
	padding:10px;
    width:100%;
}
legend {
	box-sizing: border-box;
	color: inherit;
	display: table;
	max-width: 100%;
	padding: 0;
	white-space: normal;
}
[type="checkbox"],
[type="radio"]{
	box-sizing: border-box;
	padding: 0;
	-webkit-border-radius: 0;
	border:none;
    margin:0;
    vertical-align: middle;
}
[type="checkbox"]{
    width:18px;
    height:18px;
    border:1px solid #ddd;
    margin-right:6px;
}
::-webkit-input-placeholder {
    font-size:15px;
	color: #888;
}
:-ms-input-placeholder {
	color: #888;
}
::-moz-input-placeholder {
	color: #888;
}

/* 텍스트 정랼  */
.text-center{
    text-align:center;
}
.text-left{
    text-align:left;
}
.text-right{
    text-align:right;
}


/* btn */
.btn{
    display:inline-block;
    height:30px;
    padding:0 10px;
}
.btn-black{
    background: #000;
    color: #fff;
}
.btn-black-outline{
    border:1px solid  #000;
    color: #000;
    background: #fff;
}
.btn-gray{
    background: #efefef;
    color: #000;
}
.btn-primary{
    background: #31b9f2;
    color: #fff;
}
.btn-secondary{
    background: #e34b4b;
    color: #fff;
}
.btn-orange{
    background: #ff8a23;
    color: #fff;
}
.btn-secondary-outline{
    border: 1px solid #e34b4b;
    color: #e34b4b;
    background: #fff;
}
.btn-radius{
    border-radius:20px;
}

.btn-radius-sm{
    border-radius:4px;
}
.btn-big{
    width:100%;
    height:45px;
    font-size:17px;
}
.btn-md{
    width:100%;
    height:35px;
    font-size:17px;
}
.btn-check{
    min-width:80px;
    margin-left:6px;
}
.btn-wrap{
    text-align: center;
}
.btn-wrap .btn-wrap-text{
    margin-bottom: 10px;
    font-size: 15px;
}
.btn-primary-fill{
    background-color: #0066cb;
    color: #ffffff;
}
.btn.btn-sm{
    line-height:1;
    padding:4px 7px;
    height:26px;
    border-radius:5px;
    font-size:var(--font-size-small);
}
/* 검색폼 */
.search-input-wrap{
    display: inline-block;
    position: relative;
}
.search-input-wrap input{
    width:100%;
    padding-right:38px;
   
}
.search-input-wrap .btn-search{
    position: absolute;
    right:0;top:0;bottom:0;
    width:34px;
    text-align: center;
    color: #777;

}
.search-input-wrap .btn-search:before{
    content: "\f52a";
    display: inline-block;
    font-family: bootstrap-icons !important;
    font-style: normal;
    font-weight: 600 !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    vertical-align: -.125em;
    -webkit-font-smoothing: antialiased;
    font-size: 18px;
}


/* top-area */
.top-area-wrap{
    background: #ffe699;
    padding:15px;
    margin-bottom:10px;
}

.calendar-wrap{
    display: flex;
    justify-content: left;
    align-items: center;
    width:100%;
    margin-bottom:10px;
}
.calendar-wrap input{
   width:calc(82% - 30px);
   display: inline-block;
   height:34px;
}
.calendar-wrap .ui-datepicker-trigger{
    display: inline-block;
    margin-left: 6px;
    font-size:0;
    vertical-align: middle;
}
.calendar-wrap .ui-datepicker-trigger:before{
    content: "\f214";
    display: inline-block;
    font-family: bootstrap-icons !important;
    font-style: normal;
    font-weight: 400 !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    vertical-align: -.125em;
    -webkit-font-smoothing: antialiased;
    font-size: 20px;
}
/* datepicker custom */

.top-area-wrap .input-group-wrap{
    display: flex;
    align-items: center;
    width:100%;
    justify-content: center;
    align-items: center;
}
.top-area-wrap .input-group-wrap label,
.top-area-wrap .calendar-label{
    vertical-align: middle;
    display: inline-block;
    font-size: 14px;
    width:18%;
}
.top-area-wrap .input-regist{
    width:82%;
}
.top-area-wrap .input-regist input[type=text]{
    height:34px;
    width:calc(100% - 70px);
}
.top-area-wrap .input-group-wrap input{
    width:70%;
    height:34px;

}
.top-area-wrap .input-group-wrap .btn{
    min-width:60px;
    height:34px;
}

/* datepicker custom */
.ui-datepicker td span, .ui-datepicker td a {
    padding: 8px;
}
.ui-datepicker {
   width:auto;
}

@media screen and (min-width: 600px) {
    .top-area-wrap{
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0 20px;
        margin-bottom:50px;
    }
    .calendar-wrap{
        margin-bottom: 0;
        width:40%;
    }
    .input-group-wrap{
        width:60%;
    }
    .top-area-wrap .calendar-label{
        display: none;
    }
    .top-area-wrap .input-group-wrap label{
        width:80px;
    }
    .top-area-wrap .input-regist{
        width:calc(100% - 80px);
    }
}

/* header */

.header{
    position: relative;
    height:80px;
    border-bottom:1px solid #969696;
}
.logo{
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50% , -50%);
}
.logo img{
    width:150px;
}
.header-left{
    position: absolute;
    left:14px;
    top:50%;
    transform: translateY(-50%);
}
.header-right{
    position: absolute;
    right:14px;
    top:50%;
    transform: translateY(-50%);
}
.btn-sellang{
    color: #484545;
    padding:0 20px;
}
.btn-sellang:after{
    content: "\f282";
    display: inline-block;
    font-family: bootstrap-icons !important;
    font-style: normal;
    font-weight: 600 !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    vertical-align: -.125em;
    -webkit-font-smoothing: antialiased;
    position: absolute;
    top:50%;
    right:0;
    transform: translateY(-50%);
}
.btn-sellang img{
    margin-right:4px;
}
.btn-menu:before{
    content: "\f479";
    display: inline-block;
    font-family: bootstrap-icons !important;
    font-style: normal;
    font-weight: 700 !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    vertical-align: -.125em;
    -webkit-font-smoothing: antialiased;
    color: #000;
    font-size:38px;
}

.header-top{
    position: relative;
    height:40px;
}
.header-top-left{
    position: absolute;
    left:0px;
    top:5px;
}
.sel-lang{
    position: absolute;
    left:14px;
    top:5px;
}

.header-top-right{
    position: absolute;
    right:14px;
    top:12px;
    font-weight: 700;
}
.header-top-right .link-manage{
    color: #ff0000;
}
.header-top-right .user{
    color: #4a4a4a;
    margin:0 5px;
}
.header-top-right .link-logout{
    color: #7f7f7f;
}
.btn-tel{
    border:2px solid #000;
    border-radius:50%;
    padding:6px;
    display: inline-block;
}
.btn-tel:before{
    content: "\f5b4";
    display: inline-block;
    font-family: bootstrap-icons !important;
    font-style: normal;
    font-weight: 400 !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    vertical-align: -.125em;
    -webkit-font-smoothing: antialiased;
    font-size:16px;
}


/* footer */
.footer-top{
    background: #efeeee;
    height:40px;
    position: relative;
}
.footer-top-link{
    display: flex;
    justify-content: left;
    align-items: center;
    height:100%;
    padding:0 14px;
}
.footer-top-link li{
    display:inline-block;
    color: #777;
    font-size:14px;
    position: relative;
    padding:0 16px;
}
.footer-top-link li:first-child{
    padding-left:0;
}
.footer-top-link li + li:before{
    content:'';
    display: inline-block;
    width:1px;
    background: #777;
    height:14px;
    position: absolute;
    left:0;
    top: 50%;
    transform: translateY(-50%);
}
.footer-top-btn{
    position: absolute;
    right:14px;
    top:50%;
    transform: translateY(-50%);
}
.footer-bottom{
    position: relative;
    background: #6d6d6d;
    color: #c1c1c1;
    padding:0 14px;   
}
.footer-box{
    padding:20px 0;
}
.footer-box:last-child{
    border-bottom:0;
}
.footer-box h1{
    color: #fff;
    font-size: 17px;
    margin-bottom: 10px;
}
.footer-box ul li{
    margin-bottom: 3px;
    font-size: 13px;
}


/* leftmenu */
.layout-leftmenu{
    position: absolute;
    left:-100%;
    top:0;
    bottom:0;
    background: #333;
    width:100%;
    z-index:10;
    -webkit-transition: left .3s;
  -moz-transition: left .3s;
  -ms-transition: left .3s;
  -o-transition: left .3s;
  transition: left .3s;
}
.layout-leftmenu.open{
    left:0;
}
.leftmenu-top{
    position: relative;
    padding:40px 20px;
}
.leftmenu-top .btn-menu-close{
    position: absolute;
    right:10px;
    top:35px;
    background: #000;
    color:#fff;
}
.leftmenu-btns{
    border-bottom:2px solid #646464;
    display: flex;
    justify-content: end;
    align-items: center;
}
.leftmenu-btns a, .leftmenu-btns .mo-user{
    width:50%;
    height:40px;
    text-align: center;
    padding:0 30px;
    color: #fff;
    display: inline-block;
    font-size: 15px;
}
.btn-menu-close:before{
    content: "\f659";
    display: inline-block;
    font-family: bootstrap-icons !important;
    font-style: normal;
    font-weight: 700 !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    vertical-align: -.125em;
    -webkit-font-smoothing: antialiased;
    font-size:34px;
}
.leftmenu-logo img{
    width:150px;
    
}
.leftmenu li{
    border-bottom:1px solid #646464;
    padding:0 20px;
    color:#fff;
    
}
.leftmenu >li> a{
    padding:20px 0;
    display: inline-block;
    width: 100%;
    font-size: 16px;
}
.leftmenu >li> a:before{
    content:'-';
    display:inline-block;
    margin-right:6px;
}
.leftmenu li >a:hover{
    color: #ffaf31;
}


/* 메인 상단 검색 */
.top-search-wrap{
    background: #dfdfdf;
    padding:20px 20px 10px;
}
.top-search-text{
    text-align: center;
    padding:10px 0 20px;
}
.top-search-text01{
    font-size: 22px;
    font-weight: 700;
}
.top-search-text02{
    font-size: 14px;
    margin-top:6px;
}
.top-search-input ul{
    display: flex;
    gap:4px;
    
}
.top-search-input ul li{
    
    flex-grow:1;
}
.top-search-input .search-input-wrap{
    margin:6px 0;
    display: block;
}

.top-search-input .search-input-wrap input{
    height:40px;
    padding-right:78px;
}
.top-search-input .search-input-wrap .btn-search{
    background: #007aff;
    color: #fff;
    font-weight: 700;
    border:1px solid #bababa;
    font-size: 16px;
    width:70px;
}
.top-search-input .search-input-wrap .btn-search:before{
    margin-right: 4px;
    font-size: 15px;
}
.main-banner-link{
    display: flex;
    align-items: center;
    flex-grow: 1;
    width:100%;
    border-bottom:1px solid #cadada;
    margin-top: 10px;
}
.main-banner-link button{
    position: relative;
    width:50%;
    text-align: center;
    height:40px;
    font-size:17px;
    font-weight: 700;
    align-items: center;
    vertical-align: middle;
    
}
.main-banner-link button:last-child:before{
    content:'';
    display: inline-block;
    width:1px;
    height:16px;
    background: #828282;
    position: absolute;
    left:0;
    top:50%;
    transform: translateY(-50%);

}
.main-banner-link button .icon-more{
    background: #377ac5;
    color: #fff;
    border-radius:10px;
    display: inline-block;
    font-size: 10px;
    padding:2px 4px;
    font-weight: 500;
    vertical-align:middle;
}





















/* layout */
.layout-contents-all{
    display: block;
    margin-bottom:30px;
}

/* car-list */
.car-list-wrap{
    padding:40px 14px;
}
.listtop-filter{
    padding:20px 10px;
    text-align: right;
}
.listtop-filter .on{
    color:#007aff;
}
.filter-title{
    margin-right:10px;
}
.filter-line {
    display: inline-block;
    width: 1px;
    height: 12px;
    background: #777;
    margin: 0 10px;
    vertical-align: middle;
}
.car-list-type01{
    display:flex;
    flex-wrap:wrap;
    justify-content: left;
    gap:20px 10px;
}
.carbox{
    position: relative;
    display:flex;
    flex-direction:column;
    align-items: center;
    justify-content: space-between;
    width:calc(50% - 5px);
    height:auto;
   
    border:1px solid #dbdbdb;
}
.carbox.is-soldout .soldout{
    display:flex;
    
}
.carbox-top{
    width:100%;
}
.carbox-img{
    position: relative;
    width:100%;
    aspect-ratio: 4 / 3; 
    overflow:hidden;
    border-bottom:1px solid #dbdbdb;
    
}


.carbox-img img{
    width: 100%;
}
.soldout{
    position: absolute;
    left:0;
    top:0;
    right:0;
    bottom:0;
    background:rgba(0,0,0,0.7);
    display: none;
    align-items: center;
}
.soldout p{
    display: block;
    width: 100%;
    color: #fff;
    font-size: 26px;
    text-align: center;
    font-weight: 700;
}

.carbox-area03{
    width:100%;
    padding:10px 10px;
    text-align: center;
}

.carbox-bottom .btn + .btn{
    margin-top:2px;
}

.carbox-name{
    font-size:15px;
    text-align: center;
    font-weight: 600;
}
.carbox-subinfo{
    color: #818181;
    font-size:14px;
    text-align: center;
    padding:10px 0;
}
.carbox-name + .carbox-subinfo{
    margin-top:6px;
}
.carbox-no{
    text-align: left;
    position: absolute;
    top:-26px;
    left:0;
}
.car-list-type01.forsale{
    padding:10px 0;
    gap:50px 10px;
}


/* point color */
.point-color-black{
    color: #000;
}
.point-color-red{
    color: var(--font-color-red);
}



/* pagetitle */
.title-wrap{
    margin-bottom:10px;
    text-align: center;
    margin-top:10px;
    padding:20px 0;
    border-bottom:1px solid #cacaca;
}
.title-wrap.noline{
    border-bottom:0;
}
.pagetitle{
    font-size: 20px;
    font-weight: 700;
}
.subtitle-wrap{
    margin-bottom:10px;
}
.pagetitle2{
    font-size: 16px;
    font-weight: 600;
}
.pagetitle2-text{
    color: #777;
}


/* table -type01 */
.table-type01 {
    display:table;
    width:100%;
    border-top:1px solid #d8d8d8;
}
.table-type01 li{
    display:table-row;
}
.table-type01 li .th{
    display:table-cell;
    width:30%;
    background: #f3f3f3;
    color: #888;
    border-bottom:1px solid #d8d8d8;
    padding:2px 10px;
    vertical-align: middle;
    height:47px;
}

.table-type01 li .td{
    display:table-cell;
    width:70%;
    border-bottom:1px solid #d8d8d8;
    padding:6px 10px;
    height:47px;
    vertical-align: middle;
    font-weight: 700;
}
.table-type01 th{
    background: #f3f3f3;
    color: #888;
    border-bottom:1px solid #d8d8d8;
    padding:2px 10px;
    height:40px;
}
.table-type01 td{
    border-bottom:1px solid #d8d8d8;
    padding:6px 10px;
    height:40px;
    vertical-align: middle;
    font-weight: 700;
}
.table-type01-wrap + .subtitle-wrap{
    margin-top:var(--margin-top-basic);
}
.table-type01-wrap + .btn-wrap{
    margin-top:var(--margin-top-basic);
}
.table-type01 li .th.w-100,
.table-type01 li .td.w-100{
    display:block;
    width:100%;
}
.table-smalltext{
    font-size: 13px;
    color: #aaa;
}
.topper{
    background: #efeeee;
    padding:5px 14px;
    margin-bottom: 10px;
}

/* input */
.input-wrap input{
    width:100%;
}
.input-text{
    font-size:13px;
    margin-top:6px;
}
.input-flex-wrap{
    display:flex;
    align-items: center;
}
.status-text{
    color: #fc4145;
    margin-top: 6px;
    display: inline-block;
    padding:0 10px;
    min-width:90px;
}
.input-flex-wrap.post-number{
    display:block;
}
.address-top{
    display: flex;
    margin-bottom: 4px;
}
.address-bottom input +input{
    margin-top:4px;    
}.radio-group{
    display: inline-block;
    vertical-align: middle;
}
.radio-group li{
    display:inline-block;
    vertical-align: middle;
    
}
.radio-group li + li{
    margin-left: 10px;
}


/*  filter  */
.filter-wrap {
    padding: 10px;
    background-color: #e0e7ed;
    margin-bottom:10px;
}
.filter-type01,
.filter-type02{
    display:flex;
    width: 100%;
    justify-content: space-between;
    gap: 6px 2px;
    
}
.filter-type01 li,
.filter-type02 li{
    flex-basis: 25%;
}
.filter-type01 button{
    background: #fff;
    border:1px solid #ccc;
    height:30px;
    width:100%;
}
.filter-type01 button.active {
    background-color: #41435b;
    color: #ffffff;
}
.filter-search{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top:6px;
    gap: 6px 2px;
}
.filter-search .filter-select-group{
    width:50%;
    display: inline-block;
}

.filter-search .filter-select-group .form_select{
    display:inline-block;
    width:calc(50% - 2px);
}
.filter-search .filter-input-group{
    width:50%;
    display: inline-block;
}

/* type02 - 서치인풋이 아래로 한줄 다 차지할경우 */
.filter-search.type02{
    display: block;
    margin-top: 0;
}
.filter-search.type02 .filter-select-group{
    display: flex;
    justify-content: space-between;
    width:100%;
    gap:0 2px;
}
.filter-search.type02 .filter-input-group {
    display: block;
    width:100%;
    margin-top: 4px;
}

.filter-search.type02 .filter-select-group .form_select:last-child{

}
.filter-search .search-input-wrap{
    width:100%;
}
.filter-type02{
    margin-top:20px;
}
.filter-type02 li button{
    height:24px;
    border-radius:20px;
    background: #fff;
    border:1px solid #ccc;
    width:100%;
}
.filter-type02 li button.active{
    background-color: #41435b;
    color: #ffffff;
}

.filter-type02.type03 .filter-select-group{
    width:100%;
}
.filter-search.type03 .filter-select-group .form_select{
    width:100%;
}




/* pagination */
.pagination-wrap{
    display: flex;
    justify-content: center;
    align-items: center;
    width:var(--width-content);
    padding:40px 0;
}

.pagination {
    margin-left: auto;
    margin-right: auto;
    display:inline-block;
}
.pagination li{
    display:table-cell;
    border-collapse:collapse;
	border-spacing:0;
    vertical-align: middle;
    
}
.pagination li a{
    display:inline-flex;
    justify-content: center;
    align-items: center;
    width:30px;
    height:30px;
    color:#bdbdbd;
    border-top:1px solid #cecece;
    border-right:1px solid #cecece;
    border-bottom: 1px solid #cecece;
    vertical-align: middle;
}
.pagination li a:hover{
    color: #35addf;
}
.pagination li a.active{
    background: #35addf;
    color:  #fff;
}
.pagination li:first-child a{
    border-left:1px solid #cecece;
    border-radius:3px 0 0 3px;
}
.pagination li:last-child a{
    border-radius:0 3px 3px 0;
}
.page_prev01:before{
    content:'';
    display:inline-block;
    background:urL('/images/img/pagination_arr_prev01.png') no-repeat;
    width:9px;
    height:8px;
}
.page_prev02:before{
    content:'';
    display:inline-block;
    background:urL('/images/img/pagination_arr_prev02.png') no-repeat;
    width:5px;
    height:8px;
}
.page_next01:before{
    content:'';
    display:inline-block;
    background:urL('/images/img/pagination_arr_next01.png') no-repeat;
    width:9px;
    height:8px;
}
.page_next02:before{
    content:'';
    display:inline-block;
    background:urL('/images/img/pagination_arr_next02.png') no-repeat;
    width:5px;
    height:8px;
}

.co_car_list + .pagination-wrap{
    margin-top:10px;
}



/* viewpage */
.location-map{
    position: relative;
    padding:4px 14px;
    margin-top:10px;
    font-size: 13px;
}
.location-map .home{
    color: #6b6b6b;
}
.location-right{
    position: absolute;
    right:10px;
    top:50%;
    transform: translateY(-50%);
}
.view-detail .detail-header {
    margin-bottom:10px;
    margin-top:10px;
    position: relative;
}
.detail-header-01{
    padding:12px 14px;
    position: relative;
}
.detail-header-01 .title {
    font-size: 18px;
    font-weight: 700;
    margin-right:80px;
}
.title-subtext{
    margin-top:6px;
    color: #9c9c9c;
}
.detail-header-01 .summary {
    padding-top:6px;
    font-size: 14px;
}
.detail-header .car-info {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 700;
    background-color: #ffffff;
}
.detail-header .car-info [class*=auction-] {
    flex: 1 1 auto;
    position: relative;
    display: inline-block;
    text-align: center;
}
.detail-header .car-info [class*=auction-]:after {
    content: "";
    display: inline-block;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 13px;
    background: #000;
}
.detail-header .car-info [class*=auction-]:last-child:after {
    content: none;
}
.detail-header .car-info .auction-status {
    color: purple;
}
.detail-header .car-info .auction-type {
    color: #2279cb;
}
.detail-header .auction-time {
    display: flex;
    background-color: #f5d5d5;
    padding: 8px 14px;
    flex-direction: column;
}
.detail-header .auction-time > .end,
.detail-header .auction-time .remain {
    flex: 1 1 auto;
    display: inline-block;
}
.detail-header .auction-time .time {
    font-weight: 700;
}
.detail-header .auction-time .remain .time {
    color: #e34b4b;
}
.detail-header .auction-time .remain .time:before{
    content: "\f291";
    display: inline-block;
    font-family: bootstrap-icons !important;
    font-style: normal;
    font-weight: 400 !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    vertical-align: middle;
    -webkit-font-smoothing: antialiased;
    color:#000;
    margin-right: 4px;
}
.detail-header .auction-time .remain{
    margin-top: 4px;
}
.auction-like a{
    display: inline-block;
}

.view-detail .bx-wrapper .bx-controls-direction a {
    z-index: 5;
}
.view-detail .bx-wrapper {
    position: relative;
}    
.view-detail .bx-controls .bx-prev,
.view-detail .bx-controls .bx-next {
    color: #fff;
    font-size: 30px;
    background: rgba(0,0,0,0.6);
    text-align: center;
    vertical-align: middle;
}
.view-detail .bx-controls .bx-prev {
    left: 0;
}
.view-detail .bx-controls .bx-next {
    right: 0;
}
.view-detail .bx-controls .bx-prev i,
.view-detail .bx-controls .bx-next i{
    display: inline-block;
    width:30px;
    height:30px;
    margin-top: 6px;
}
.view-detail .car-image-slide {
    height: 66.6666666667vw;
}
.view-detail .car-image-slide .slide {
    height: 66.6666666667vw;
    background-color: rgba(0,0,0,.8);
}
.view-detail .car-image-slide .slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.car-description{
    margin-top:20px;
}
.car-description .subtitle-wrap{
    padding:14px 14px;
    margin-bottom: 0;
}
.car-description .cont-wrap {
    /* padding: 0px 14px; */
    font-size: 14px;
}
.view-detail .bx-controls .bx-pager {
    display: inline-block;
    position: absolute;
    bottom: 10px;
    left: 10px;
    width: auto;
    background-color: #000;
    color: #fff;
    border-radius: 6px;
    font-size: 12px;
    padding: 6px 8px;
    z-index: 6;
}
.view-detail .btn-wrap {
    padding:10px 0;
}


.car-description .car-info-list > li {
    display: flex;
    margin: 8px 0;
}
.car-description .car-info-list > li .label {
    flex: 0 0 5.3571428571rem;
    color: #7f7f7f;
}
.car-description .car-info-list > li .data {
    flex: 1 1 auto;
    color: #000;
    font-weight: 700;
}
.car-description .cont-wrap.notice {
    background-color: #ffffff;
    min-height: 10.7142857143rem;
}
.car-description .cont-wrap.notice > ul li {
    padding-left: 14px;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 400;
    text-indent: -0.4285714286rem;
}
.view-detail .car-description .cont-wrap .car-description-text {
    font-weight: 700; 
}

.view-cont-explain{
    padding:20px;
    line-height:1.4;
    color: #000;
}



/* tab-type01 */
.tab-type01-wrap{
    margin:0 14px 20px 14px;
}
.tab-type01{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left:1px solid #ccc;
}
.tab-type01 li{
    display:inline-block;
    flex:1;
}
.tab-type01 li a{
    width:100%;
    text-align: center;
    border:1px solid #ccc;
    border-left:0;
    display:flex;
    justify-content: center;
    align-items: center;
    height:34px;
    vertical-align: middle;
}
.tab-type01 li a.active{
    background-color: #41435b;
    color: #ffffff;
}


/*  회사소개 */

.company-info{
    padding:30px 10px 160px;
    text-align: center;
    background:url('/mobile/img/bg_company.png');
    background-repeat: no-repeat;
    background-position: center bottom 0;
    
}
.company-info-text p{
    line-height: 1.5;
}
.company-info-text p + p{
    margin-top:16px;
}
.logo-company img{
    width:120px;
}
.company-info-text01{
    font-weight: 700;
    font-size: 16px;
    margin-bottom:16px;
}
.company-info-text02{
    font-size: 15px;
    margin-bottom:16px;
}
.company-info-text03{
    font-size: 14px;
    margin-bottom:16px;
}
.company-info-text05{
    font-size: 15px;
    margin-bottom:16px;
    font-weight: 700;
}
/* 오시는길 */
.location-top{
    display: table;
    width:100%;
    border-top:1px solid #000;
    border-bottom:1px solid #000;
}
.location-row{
    display: table-row;
    font-size: 15px;
}
.location-th{
    display: table-cell;
    background: #efefef;
    text-align: center;
    height: 48px;
    width:18%;
    border-top:1px solid #d8d8d8;
    vertical-align: middle;
}
.location-td{
    display: table-cell;
    text-align: left;
    height: 48px;
    padding-left:10px;
    border-top:1px solid #d8d8d8;
    vertical-align: middle;
}


.leftmenu-sel-lang{
  
    max-width: 100%;
    list-style: none;
    color: #fff;
    display: flex;
    justify-content: left;
    align-items: center;
    background: #545454;
    height: 40px;
}

.lang li{
    display:inline-block;
    margin-left:6px;
    position: relative;
    padding-right:6px;
    line-height: 18px;
    color: #fff;
}
.lang li:after{
    content:'';
    display: inline-block;
    width:1px;
    background: #666;
    height:12px;
    position: absolute;
    right:0;
    top:25%;
    
}
.lang li:last-child{
    padding-right:0;
}
.lang li:last-child:after{
    display: none;
}
/* flag */
.flag{
    display: inline-block;
    width: 24px;
    height: 20px;
    margin-right: 4px;
    vertical-align: bottom;
    border:1px solid #c6c6c6;
}
.flag.ko {
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iNjAwIiB2aWV3Qm94PSItMzYgLTI0IDcyIDQ4IiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+DQo8cGF0aCBmaWxsPSIjZmZmIiBkPSJtLTM2LTI0aDcydjQ4aC03MnoiLz4NCjxnIHRyYW5zZm9ybT0ibWF0cml4KC41NTQ3IC0uODMyMDUgLjgzMjA1IC41NTQ3IDAgMCkiPg0KPGcgaWQ9ImIyIj4NCjxwYXRoIHN0cm9rZT0iIzAwMCIgaWQ9ImIiIHN0cm9rZS13aWR0aD0iMiIgZD0iTS02LTI1SDZNLTYtMjJINk0tNi0xOUg2Ii8+DQo8dXNlIHk9IjQ0IiB4bGluazpocmVmPSIjYiIvPg0KPC9nPg0KPHBhdGggc3Ryb2tlPSIjZmZmIiBkPSJtMCwxN3YxMCIvPg0KPGNpcmNsZSBmaWxsPSIjYzYwYzMwIiByPSIxMiIvPg0KPHBhdGggZmlsbD0iIzAwMzQ3OCIgZD0iTTAtMTJBNiw2IDAgMCAwIDAsMEE2LDYgMCAwIDEgMCwxMkExMiwxMiAwIDAsMSAwLTEyWiIvPg0KPC9nPg0KPGcgdHJhbnNmb3JtPSJtYXRyaXgoLS41NTQ3IC0uODMyMDUgLjgzMjA1IC0uNTU0NyAwIDApIj4NCjx1c2UgeGxpbms6aHJlZj0iI2IyIi8+DQo8cGF0aCBzdHJva2U9IiNmZmYiIGQ9Im0wLTIzLjV2M20wLDM3LjV2My41bTAsM3YzIi8+DQo8L2c+DQo8L3N2Zz4NCg==');
    background-size: 100% 100%;
    width:30px;
   }
/* united_states */
.flag.en {
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxMjM1IDY1MCIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPg0KPGRlZnM+DQo8ZyBpZD0idW5pb24iPg0KPHVzZSB5PSItLjIxNiIgeGxpbms6aHJlZj0iI3g0Ii8+DQo8dXNlIHhsaW5rOmhyZWY9IiN4NCIvPg0KPHVzZSB5PSIuMjE2IiB4bGluazpocmVmPSIjczYiLz4NCjwvZz4NCjxnIGlkPSJ4NCI+DQo8dXNlIHhsaW5rOmhyZWY9IiNzNiIvPg0KPHVzZSB5PSIuMDU0IiB4bGluazpocmVmPSIjczUiLz4NCjx1c2UgeT0iLjEwOCIgeGxpbms6aHJlZj0iI3M2Ii8+DQo8dXNlIHk9Ii4xNjIiIHhsaW5rOmhyZWY9IiNzNSIvPg0KPC9nPg0KPGcgaWQ9InM1Ij4NCjx1c2UgeD0iLS4yNTIiIHhsaW5rOmhyZWY9IiNzdGFyIi8+DQo8dXNlIHg9Ii0uMTI2IiB4bGluazpocmVmPSIjc3RhciIvPg0KPHVzZSB4bGluazpocmVmPSIjc3RhciIvPg0KPHVzZSB4PSIuMTI2IiB4bGluazpocmVmPSIjc3RhciIvPg0KPHVzZSB4PSIuMjUyIiB4bGluazpocmVmPSIjc3RhciIvPg0KPC9nPg0KPGcgaWQ9InM2Ij4NCjx1c2UgeD0iLS4wNjMiIHhsaW5rOmhyZWY9IiNzNSIvPg0KPHVzZSB4PSIuMzE1IiB4bGluazpocmVmPSIjc3RhciIvPg0KPC9nPg0KPGcgaWQ9InN0YXIiPg0KPHVzZSB4bGluazpocmVmPSIjcHQiIHRyYW5zZm9ybT0ibWF0cml4KC0uODA5MDIgLS41ODc3OSAuNTg3NzkgLS44MDkwMiAwIDApIi8+DQo8dXNlIHhsaW5rOmhyZWY9IiNwdCIgdHJhbnNmb3JtPSJtYXRyaXgoLjMwOTAyIC0uOTUxMDYgLjk1MTA2IC4zMDkwMiAwIDApIi8+DQo8dXNlIHhsaW5rOmhyZWY9IiNwdCIvPg0KPHVzZSB4bGluazpocmVmPSIjcHQiIHRyYW5zZm9ybT0icm90YXRlKDcyKSIvPg0KPHVzZSB4bGluazpocmVmPSIjcHQiIHRyYW5zZm9ybT0icm90YXRlKDE0NCkiLz4NCjwvZz4NCjxwYXRoIGZpbGw9IiNmZmYiIGlkPSJwdCIgZD0iTS0uMTYyNSwwIDAtLjUgLjE2MjUsMHoiIHRyYW5zZm9ybT0ic2NhbGUoLjA2MTYpIi8+DQo8cGF0aCBmaWxsPSIjYmYwYTMwIiBpZD0ic3RyaXBlIiBkPSJtMCwwaDEyMzV2NTBoLTEyMzV6Ii8+DQo8L2RlZnM+DQo8cGF0aCBmaWxsPSIjZmZmIiBkPSJtMCwwaDEyMzV2NjUwaC0xMjM1eiIvPg0KPHVzZSB4bGluazpocmVmPSIjc3RyaXBlIi8+DQo8dXNlIHk9IjEwMCIgeGxpbms6aHJlZj0iI3N0cmlwZSIvPg0KPHVzZSB5PSIyMDAiIHhsaW5rOmhyZWY9IiNzdHJpcGUiLz4NCjx1c2UgeT0iMzAwIiB4bGluazpocmVmPSIjc3RyaXBlIi8+DQo8dXNlIHk9IjQwMCIgeGxpbms6aHJlZj0iI3N0cmlwZSIvPg0KPHVzZSB5PSI1MDAiIHhsaW5rOmhyZWY9IiNzdHJpcGUiLz4NCjx1c2UgeT0iNjAwIiB4bGluazpocmVmPSIjc3RyaXBlIi8+DQo8cGF0aCBmaWxsPSIjMDAyODY4IiBkPSJtMCwwaDQ5NHYzNTBoLTQ5NHoiLz4NCjx1c2UgeGxpbms6aHJlZj0iI3VuaW9uIiB0cmFuc2Zvcm09Im1hdHJpeCg2NTAgMCAwIDY1MCAyNDcgMTc1KSIvPg0KPC9zdmc+DQo=');
    background-size: 100% 100%;
    width:30px;
    height:18px;
}

/* russia */
.flag.ru {
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0NTAgMzAwIj4NCjxwYXRoIGZpbGw9IiNmZmYiIGQ9Im0wLDBoNDUwdjEwMGgtNDUweiIvPg0KPHBhdGggZmlsbD0iIzAwZiIgZD0ibTAsMTAwaDQ1MHYxMDBoLTQ1MHoiLz4NCjxwYXRoIGZpbGw9IiNmMDAiIGQ9Im0wLDIwMGg0NTB2MTAwaC00NTB6Ii8+DQo8L3N2Zz4NCg==');
    background-size: 100% 100%;
    height:18px;
   
}
/* argentina */
.flag.ar {
 background: url('/img/flag_arabic.png');
width:28px;
 background-size: 100% 100%;
}

/* main-visual */
.main-visual{
    height:315px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-size:contain;
    background-position: center bottom;

}


@media screen and (min-width: 768px) {
    .main-visual {
        height:600px;
    }
  }


.main-visual-text01{
    display:inline-block;
    font-size: 24px;
    color: #fff;
    text-align: center;
    line-height:1.3;
    background: rgba(0, 0, 0, .4);
    padding: 12px;
}
.sub-visual-text01{
    font-size: 25px;
    color: #000;
    text-align: center;
    line-height:1.3;
}
.main-visal-text01-1{
    font-size:18px;
    margin-top: 10px;
}
.main-visual-box{
    display: flex;
    align-items: center;
    justify-content: center;
    background:rgba(255,255,255, 0.49);
    margin:55px 14px 0;
    text-align: center;
    padding:20px;
}

.main-visual-box .main-visual-text02{
    color:#061c33;
    font-size: 19px;
    line-height: 24px;
    text-align: left;
}
.main-visual-box02{
    display: flex;
    width: 100%;
    margin: 0px;
    gap: 0;
    justify-content: space-between;
    background: #14440f;
}
.main-visual-box02 .box-01{
    position: relative;
    color: #fff;
    width:50%;
    text-align: center;
    padding:10px 0 10px;
}
.main-visual-box02 .box-01:after{
    content:'';
    display: inline-block;
    width:1px;
    height:100%;
    background: rgba(255,255,255, 0.6);
    position: absolute;
    right:0;
    top:0;
}
.main-visual-box02 .box-01:last-child:after{
    display: none;
}
.main-visual-box02 .icon-more {
    position: absolute;
    right: 1px;
    bottom: 0px;
    font-size: 15px;
    font-weight: 600;
    background: #000;
    border-radius: 0;
    width: 20px;
    height: 20px;
    padding: 0;
    line-height: 20px;
}

.box-01-cont{
    margin-top: 5px;
    font-size: 13px;
    line-height:1.4;
}
.box-01-title{
    font-size: 19px;
    line-height: 28px;
}

.main-links{
    border-bottom:1px solid #cacaca;
    display: flex;
    align-items: center;
}
.main-links .list-title{
    position: relative;
    display:inline-block;
    font-size: 16px;
    width:100%;
    padding:8px 0;
    color:var(--font-color-base);
    font-weight: 700;
    text-align: left;
    padding-left: 20px;
}
.list-title-more{
    position: absolute;
    right:10px;
    top:50%;
    transform: translateY(-50%);
    font-size: 12px;
}


.icon-more{
    display:inline-block;
    background: #04a91f;
    padding:2px 5px;
    color: #fff;
    font-size:10px;
    border-radius:20px;
    vertical-align:middle;
    letter-spacing:-0.04;
}
.main-visual-box02 .icon-more{
    margin-top: 6px;

}


/* 공유하기 */
.detail-header-right{
    position: absolute;
    right:14px;
    top:50%;
    transform: translateY(-50%);
}


.btn-phone:before{
    content:'';
    background: url('/pc/src/img/icon_phone2.png') left top no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    width:30px;
    height:30px;
    opacity: 0.5;
}
.btn-phone.on:before{
    background: url('/pc/src/img/icon_phone_on.png') left top no-repeat;
    background-size: 100% 100%;
    opacity: 1;
    
}
.btn-sms-01{
    
}
.btn-sms-01:before{
    content:'';
    background: url('/pc/src/img/icon_sms_01.png') left top no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    width:30px;
    height:30px;
    opacity: 0.5;
}
.btn-sms-01.on:before{
    background: url('/pc/src/img/icon_sms_on.png') left top no-repeat;
    background-size: 100% 100%;
    opacity: 1;
}
.btn-share{
   
}
.btn-share:before{
    content:'';
    display: inline-block;
    width:30px;
    height:30px;
    background: url('/pc/src/img/icon_share.png') no-repeat;
    background-size:100% 100%;
    opacity:0.7;
}
.btn-share.on:before{
    background: url('/pc/src/img/icon_share_on.png') no-repeat;
    background-size:100% 100%;
    opacity:1;
}
.share-list li{
    display: inline-block;
    margin-left:10px;
}

.pop-share{
    position: absolute;
    right:0;
    top:50px;
    background: #f3f9ff;
    box-shadow: 4px 4px 4px #eee;
    border-radius:10px;
    border:2px solid #217ad2;
    z-index:15;
    padding:20px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: #6b6b6b;
}
.pop-share-close{
    position: absolute;
    right:14px;
    top:14px;
    display: inline-block;
}

.btn-share-close:before{
    content: "\f659";
    display: inline-block;
    font-family: bootstrap-icons !important;
    font-style: normal;
    font-weight: 400 !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    vertical-align: -.125em;
    -webkit-font-smoothing: antialiased;
    font-size: 24px;
    color:#777;
}
.pop-share .inputlist li{
    display: flex;
    align-items: center;
    margin-bottom: 6px;
    font-size: 15px;
    color: #5a5a5a;
}
.pop-share .inputlist li label{
    margin-right:10px;
    width:20%;
    text-align: left;

}
.pop-share-title{
    text-align: center;
    font-size: 18px;
    color: #555;
    margin-bottom:20px;
    font-weight: 700;
}
.pop-share-text{
    margin:10px 0;
    line-height: 1.4;
}
.pop-share .agreebox{
   margin-bottom:14px; 
   font-weight: 700;
}
.pop-share .inputlist li input[type=text]{
    width:80%;
    height:34px;
}
.pop-share .inputlist li textarea{
    width:80%;
}
.inputlist-conttext{
    font-weight: 700;
}
.pop-share .inputlist li .sns-label2{
    width:88%;
}
.btn-sms-send{
    width:100%;
    height:40px;
}
.inputlist{
    padding:10px 0;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    margin-bottom: 20px;
}
.pop-share{
    width:340px;
}
.share-icon-list {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}
.share-icon-list li{
    text-align: center;
    display: inline-block;
    width:20%;
}
.share-icon-list li .icon{
    width:30px;
    height:30px;
}

.share-icon-list li span{
    display:block;
    margin-top: 6px;
}
.share-icon-list li button{
    font-size: 13px;
    color: #616161;
    font-weight: 400;
}
.share-copy-wrap{
    position: relative;
    height: 40px;
}
.share-copy-wrap input{
    width:100%;
    padding-right:50px;
    height:40px;
}
.share-copy-wrap .btn-copy{
    position: absolute;
    right:0;
    bottom:0;
    top:0;
    width:60px;
    text-align: center;
    background: #e1e1e1;
    font-weight: 700;
}

/* 오시는길 */
.map {
    position: relative;
    width: 100%;
    height: 400px;
}
.customoverlay {
    background: #fff;
    color: #333;
    display: inline-block;
    width: auto;
    padding: 2px 10px 4px 10px;
    margin-bottom: 48px;
    border: 1px solid #666;
    border-radius: 6px;
}



/* car-image win-pop */
.pop-gallery-win-bg{
 
}
.pop-gallery-win-top{
    width:100%;
    color:#2279CB;
    padding:10px;
    text-align: center;
    position: relative;
}
.pop-gallery-win-top .close-popup {
    position: absolute;
    right: 15px;
    top: 14px;
    color: #2279CB;
}
.pop-gallery-win-wrap{
    width:100%;
    margin:0 auto;
}

.pop-gallery-win-wrap .car-image{
    margin-bottom: 10px;
    background: #3b3b3b;
}
.pop-gallery-win-wrap .car-image img{
    width:100%;
}
.pop-gallery-win-wrap .car-image .img-wrap.bxslider img{
    width:1000px;
    display: inline-block;
}
.pop-gallery-win-wrap .car-image .img-wrap .slide{
  text-align: center;
  
}
.pop-gallery-win-wrap .img-list-wrap ul{
    display: flex;
    flex-wrap:wrap;
}
.pop-gallery-win-wrap .img-list-wrap ul li{
    display: inline-block;
    width:56px;
    height:42px;
    margin-right:calc(80px / 19);
    margin-bottom: 5px;
}
.pop-gallery-win-wrap .img-list-wrap ul li:nth-child(20n){
    margin-right: 0;
}
.pop-gallery-win-wrap .img-list-wrap ul li img{
    width:100%;

}
.pop-gallery-win-wrap .img-list-wrap .img-list li > img{
	width: 100%;
	height: 100%;
	opacity: 0.7;
	object-fit: cover;
}

.pop-gallery-win-wrap .img-list-wrap .img-list li.active{
	border: 2px solid #00b5ff;
	box-sizing: border-box;
}
.pop-gallery-win-wrap .img-list-wrap .img-list li.active > img{
	opacity: 1;
}

.pop-gallery-win-wrap .bx-wrapper .bx-pager{
    position: absolute;
    left: 20px;
    bottom: 20px;
    width: 60px;
    text-align: center;
    padding: 5px;
    border-radius: 20px;
    background-color: #000;
    color: #fff;
    font-weight: 700;
    font-size: 12px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pop-gallery-win-wrap .bx-wrapper .bx-controls-direction a{
    display: inline-block;
    position: absolute;
    top: 50%;
    margin-top: -26px;
    font-size: 52px;
    font-weight: 600;
    color: #ffffff;
    height: 52px;
    width: 52px;
    text-indent: 0;
    text-align: center;
    line-height: 1;
    z-index: 1;
}


.pop-gallery-win-wrap .popup-header{
    width:100%;
	position: relative;
	padding: 15px;
	text-align: left;
	background-color: #2cade2;
	font-size: 16px;
	color: #ffffff;
	font-family: var(--font-family);
}
.pop-gallery-win-wrap .close-popup{
	position: absolute;
	right: 15px;
	top: 14px;
	color: #ffffff;
}
.btn-copy{
    border-radius: 4px;
  margin-left: 10px;
    
}

.car-image-slide-wrap {
    position: relative;
}
.btn-zoom {
    display: inline-block;
    width: 30px;
    height: 30px;
    position: absolute;
    right: 10px;
    bottom: 10px;
    background-color: #000;
    padding: 6px 7px;
    color: #fff;
    z-index: 10;
    border-radius: 6px;
}
.btn-zoom .bi{
    display: inline-block;
}

.bi-arrows-fullscreen::before{
    font-size: 16px;
}