@charset "utf-8";

/* Basic Elements */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap');

html,
body {
    width: 100%;
    height: 100%;
    font-family: 'Noto Sans KR', sans-serif;
    zoom: 0.9;
/* 	scroll-behavior: smooth; */
}

/* UTIL */
.clear-both:after {
    content: '';
    display: block;
    clear: both;
}
.align_left {
    float: left;
}
.align_right {
    float: right;
}
.text-align_left {
    text-align: left;
}
.text-align_center {
	text-align: center;
}
.text-align_right {
    text-align: right;
}
.view_table {
    display: table;
    width: 100%;
}
.view_table-cell {
    display: table-cell;
    vertical-align: middle;
}
.view_flex {
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    margin-left: -20px;
}
.view_flex-item {
    margin-left: 20px;
}
.justify_content {
    justify-content: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
}
.global-holder {
    position: relative;
    margin: 0 auto;
    max-width: 1180px;
    box-sizing: border-box;
}
.bold {
    font-weight: 700;
}
.font_hidden {
    overflow: hidden;
    text-indent: -2000%;
}


/* UI Button*/
.btn {
    display: inline-block;
    padding: 10px 15px;
    line-height: 26px;
    height: 48px;
    font-size: 16px;
    text-align: center;
    background-color: #fff;
    border: 1px solid #ddd;
    box-sizing: border-box;
    border-radius: 8px;
}
.btn.type_round {
    padding: 10px 10px;
    border-radius: 25px;
}
.btn.color_black {
    color: #fff;
    border-color: #222;
    background-color: #222;
}
.btn.color_green {
    color: #fff;
    border-color: #6CD4D5;
    background-color: #6CD4D5;
}
.btn.color_gray {
    color: #444;
    border-color: #d8d8d8;
    background-color: #d8d8d8;
}
.btn:hover {
    color: #6CD4D5;
    border-color: #111;
    background-color: #111;
}
.btn.size_large {
    padding: 15px;
    height: 60px;
    line-height: 26px;
    font-size: 20px;
    border-radius: 8px
}
.btn.size_large.type_round {
    padding: 15px;
    border-radius: 30px
}
.btn:disabled {
    opacity: .3;
    cursor: not-allowed !important;
}
.btn:disabled:hover {
    color: #000;
    background-color: #fff;
    border: 1px solid #ddd;
}
.btn.color_black:disabled:hover {
    color: #fff;
    border-color: #222;
    background-color: #222;
}
.btn.color_green:disabled:hover {
    color: #fff;
    border-color: #6CD4D5;
    background-color: #6CD4D5;
}
.btn.color_gray:disabled:hover {
    color: #444;
    border-color: #d8d8d8;
    background-color: #d8d8d8;
}

/* UI Form */
.form-holder {
    margin: 0 auto;
}
.form-row {
    margin-top: 50px;
}
.form-row:first-child {
    margin-top: 0;
}
.form-row .ui-holder {
    min-width: 280px;
}

/* UI Input */
.ui-holder {
    position: relative;
    box-sizing: border-box;
}
.ui-holder.has_btn {
    display: flex;
}
.ui-holder.has_btn .btn {
    margin-left: 5px;
    padding: 5px;
    max-width: 110px;
    min-width: 80px;
    height: 48px;
}
.ui-label {
    display: block;
    margin-bottom: 15px;
    line-height: 18px;
    font-size: 16px;
}
.tbox,
.sbox {
    padding: 10px 15px;
    width: 100%;
    line-height: 38px;
    height: 48px;
    font-size: 14px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-sizing: border-box;
}
.tbox.status_success {
    border-color: #4DB98F;
}
.tbox.status_fail {
    border-color: #F24646;
}
.ui-holder .message {
    display: block;
    margin-top: 8px;
    line-height: 20px;
    font-size: 12px;
    color: #777;
}
.ui-holder .status_success + .message {
    color: #4DB98F;
}
.ui-holder .status_fail + .message {
    color: #F24646;
}
.ui-file,
.cbox-holder .cbox {
    position: absolute;
    top: 0;
    left: 0;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    border: none;
    opacity: 0 !important;
    filter: alpha(opacity=0);
}
.btn-file-upload {
    line-height: 36px;
}


/* UI Selectric */
.selectric {
    border-radius: 8px;
    background-color: #fff;
}
.selectric .label {
    line-height: 46px;
    height: 46px;
}
.selectric-items,
.selectric-items .selectric-scroll {
    border-radius: 8px;
}
.selectric-items {
    background-color: #fff;
}
.selectric .label,
.selectric-items ul,
.selectric-items li {
    font-size: 14px;
}
.selectric .button {
    height: 46px;
    color: transparent;
    text-align: center;
    background: url('/images/icon-select-down.png') no-repeat center center transparent;
    background-size: 32px auto;
}
.selectric .button:after {
    display: none;
}
.selectric-items li.selected {
    background-color: #111;
    color: #6CD4D5;
}
.selectric-items li:hover {
    background-color: #f9f9f9;
    color: #222;
}
input[disabled],
select[disabled],
.selectric-disabled .selectric {
    border-color: #efefef;
    background: #f9f9f9;
    color: #c9c9c9;
    cursor: not-allowed !important;
}
.ui-holder textarea {
    min-height: 80px;
    line-height: 28px;
}
.ui-holder.km-holder .tbox{
    padding-right: 40px;
    position: relative;
}
.ui-holder.km-holder span {
    position: absolute;
    right: 10px;
    height: 48px;
    line-height: 48px;
    font-size: 14px;
    font-weight: bold;
}
/* Table */
.ui-table {
    position: relative;
}
.ui-table table {
    width: 100%;
    border-bottom: 1px solid #111;
}
.ui-table th,
.ui-table td {
    line-height: 18px;
    font-size: 14px;
    text-align: center;
}
.ui-table th {
    padding: 20px 10px;
    font-weight: 700;
    color: #fff;
    background-color: #111;
}
.ui-table td {
    padding: 25px 20px;
    background-color: #fff;
    border-top: 1px solid #eee;
}

/* UI Checkbox */
.cbox-holder {
    position: relative;
    display: inline-block;
    padding-left: 28px;
    width: auto;
    line-height: 18px;
    cursor: pointer;
    box-sizing: border-box;
}
.cbox-card {
    padding: 15px;
    background-color: #fff;
    border-radius: 8px;
    box-sizing: border-box;
}
.cbox-holder .cbox-label {
    display: block;
    line-height: 18px;
    font-size: 14px;
    cursor: pointer;
}
.cbox-holder .cbox-label:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 18px;
    height: 18px;
    background: no-repeat 0px 0px;
    background-size: 18px auto;
    z-index: 0;
}
.cbox-holder .cbox-label:before {
    background-image: url('/images/ui-cbox.png');
}
.cbox-holder .cbox:checked + .cbox-label:before {
    background-image: url('/images/ui-cbox-black-checked.png')
}
.cbox-card .cbox-holder .cbox + .cbox-label {
    color: #999;
}
.cbox-card .cbox-holder .cbox:checked + .cbox-label {
    color: #000;
}
.cbox-holder .cbox:disabled + .cbox-label,
.cbox-holder .cbox:checked:disabled + .cbox-label {
    color: #ddd;
    cursor: not-allowed !important;
}
.cbox-holder .cbox:disabled + .cbox-label:before,
.cbox-holder .cbox:checked:disabled + .cbox-label:before {
    opacity: .3
}

/* Tab Toggle */
.tab-toggle-btn-holder {
    box-shadow: 0px 0px 2px 1px rgb(0 0 0 / 7%);
    border-radius: 8px;
    overflow: hidden;
}
.tab-toggle-btn-holder .view_flex,
.tab-toggle-btn-holder .view_flex-item {
    margin-left: 0;
}
.tab-toggle-btn {
    width: 50%;
    box-sizing: border-box;
}
.tab-toggle-radio {
    position: absolute;
    top: 0;
    left: 0;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    border: none;
    opacity: 0 !important;
    filter: alpha(opacity=0);
}
.tab-toggle-label {
    width: 100%;
    height: 56px;
    line-height: 18px;
    font-size: 16px;
    text-align: center;
    background-color: #fff;
    transition: all 0.1s ease-in-out;
}
.tab-toggle-label:hover {
    background-color: #fafafa;
}
.tab-toggle-radio:checked + .tab-toggle-label {
    font-weight: 700;
    color: #6CD4D5;
    background-color: #000;
}
.tab-toggle-label:active {
    color: #6CD4D5;
    background-color: #000;
}

/* color palette */
.ui-palette {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin: -30px 0 0 -35px;
}
.ui-palette-item-holder {
    margin: 30px 0 0 35px;
}
.ui-palette-item {
    position: relative;
}
.palette-color {
    position: absolute;
    top: 0;
    left: 0;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    border: none;
    opacity: 0 !important;
    filter: alpha(opacity=0);
}
.color-label {
    display: inline-block;
    position: relative;
    padding-top: 58px;
    min-width: 58px;
    text-align: center;
    font-size: 12px;
    line-height: 14px;
    white-space: nowrap;
}
.color-label:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #f9f9f9;
    transform: translate(-50%, 0);
    background-color: #fff;
}
.black .color-label:after {
    background-color: #000;
}
.gray .color-label:after {
    background-color: #616161;
}
.silver .color-label:after {
    background-color: #E4E4E4;
    border-color: #ddd;
}
.white .color-label:after {
    border-color: #ddd;
}
.pearl .color-label:after {
    background-color: #F8F8E2;
    border-color: #ddd;
}
.galaxy .color-label:after {
    background-color: #A8B1AF;
}
.metalSilver .color-label:after {
    background-color: #D0D7E6;
}
.brown .color-label:after {
    background-color: #645A3A;
}
.gold .color-label:after {
    background-color: #DDBF60;
}
.navy .color-label:after {
    background-color: #3B4A75;
}
.skyblue .color-label:after {
    background-color: #3786D5;
}
.lightGreen .color-label:after {
    background-color: #30464C;
}
.yellowGreen .color-label:after {
    background-color: #8DEB5B;
}
.sapphirine .color-label:after {
    background-color: #4B7C7B;
}
.red .color-label:after {
    background-color: #9B111E;
}
.orange .color-label:after {
    background-color: #EB621E;
}
.violet .color-label:after {
    background-color: #693CB1;
}
.pink .color-label:after {
    background-color: #FFC0CB;
}
.yellow .color-label:after {
    background-color: #E7E600;
}
.ui-palette-item .palette-color:checked + .color-label:after {
    border-color: #6CD4D5;
    background: url('/images/icon-check-green.png') no-repeat center center #111;
    background-size: 17px auto;
}


/* swiper */
.swiper-button-next {
    right: 0;
}
.swiper-button-prev {
    left: 0;
}

/* Body */
.wrap {
    padding-top: 85px;
    background-color: #fff;
}
.content {
    padding: 100px 0 150px;
}

/* Content Header */
.content-title-holder {
    margin-bottom: 40px;
}
.content-title-holder .title {
    line-height: 46px;
    font-size: 34px;
    font-weight: 700;
}
.content-title-holder .subtitle {
    margin-top: 15px;
    line-height: 24px; 
    font-size: 16px;
}

/* section */
.box {
    position: relative;
    margin-top: 20px;
    padding: 60px;
    background-color: #fff; 
    border: 1px solid #eee;
    border-radius: 16px;
}
.section-header {
    margin-bottom: 30px;
}
.section-header .title {
    display: inline-block;
    line-height: 36px;
    font-size: 34px;
    font-weight: 700;
}
.section-header.line {
    padding-bottom: 20px;
	border-bottom: 1px solid #111;
}
.section-header.line .title {
	line-height: 40px;
    font-size: 28px;
    font-weight: 500;
}
.section-header.line .writing-text {
	font-size: 20px;
	line-height: 28px;
	font-weight: 300;
	padding-left: 20px;
}
.content-header + .box {
    margin-top: 60px;
}
.content-section + .content-section {
	margin-top: 60px;
}
.sub-section {
    margin-top: 40px;
}
.sub-section-header {
	margin-bottom: 20px;
}
.sub-section-header .title {
    line-height: 26px;
    font-size: 18px;
    font-weight: 700;
}
.sub-section-body {
    position: relative;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    height: 85px;
    box-shadow: 0px 0px 2px 1px rgb(0 0 0 / 7%);
    z-index: 500;
    background-color: #fff;
    -webkit-transition-duration: 0.4s;
    -webkit-transition-timing-function: ease;
    transition-duration: 0.4s;
    transition-timing-function: ease;
}
.header-global-holder {
    position: relative;
    margin: 0 auto;
    max-width: 1580px;
    height: 100%;
    box-sizing: border-box;
}
/* 210915: 수정: km */
.header-logo-holder {
    position: absolute;
    top: 18px;
    left: 0;
}
.header-logo {
    display: block;
    width: 150px;
    height: 50px;
    background: url('/images/logo-buyers.png') no-repeat left center;
    background-size: auto 100%;
}
/* 210915: 수정 끝: km */
.header-nav-holder {
    height: 100%;
    text-align: center;
}
.header-nav {
    display: inline-block;
    height: 100%;
}
.header-nav-item-holder {
    position: relative;
    height: 100%;
}
.header-nav-item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 30px;
    height: 100%;
    box-sizing: border-box;
    border-bottom: 4px solid transparent;
}
.header-nav-item.selected {
    border-color: #6CD4D5;
}
.header-nav-item-holder:hover {
    background-color: rgba(108,212,213, .2);
}
.header-nav-item span {
    display: inline-block;
    line-height: 36px;
    font-size: 18px;
    font-weight: 700;
    color: #111;
    text-shadow: 0.5px 0.5px 1px #c3c3c3;
}
.header-sub-nav-holder {
    display: none;
    position: absolute;
    bottom: 0;
    left: 0;
    padding-top: 10px;
    transform: translate3d(0px, 100%, 0px);
    z-index: 600;
}
.header-sub-nav-box {
    padding: 5px 0;
    min-width: 160px;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0px 0px 2px 1px rgb(0 0 0 / 7%);
}
.header-sub-nav-item {
    display: block;
    padding: 15px 20px;
    text-align: left;
}
.header-sub-nav-item:hover {
    background-color: #fafafa;
}
.header-sub-nav-item:active {
    background-color: #111;
}
.header-sub-nav-item:active span {
    color: #6CD4D5;
}
.header-sub-nav-item span {
    display: inline-block;
    line-height: 20px;
    font-size: 16px;
    font-weight: 700;
    color: #111;
    white-space: nowrap;
}
.header-option-holder {
    position: absolute;
    top: 25px;
    right: 0;
}
.header-option-item {
    padding: 0 10px;
}
.header-option-item a,
.selectric-select-lang .selectric .label {
    display: block;
    line-height: 36px;
    font-size: 13px;
    font-weight: 500;
    color: #111;
    text-shadow: 0.5px 0.5px 1px #c3c3c3;
}
.selectric-select-lang .selectric {
    background-color: transparent;
    border: 0;
    border-radius: 0;
}
.selectric-select-lang .selectric .label {
    margin-right: 30px;
}
.selectric-select-lang .selectric .button {
    background: transparent;
    width: 26px;
    height: 36px;
}
.selectric-select-lang .selectric .button:after {
    display: block;
    border-top-color: #111;
}
/* 210902: 수정: km */
.header.color-no {
    background-color: transparent;
}
/* 210915: 수정: km */
.header.color-no .header-logo {
    background: url(/images/logo-buyers-white.png) no-repeat left center;
    background-size: auto 100%;
}
/* 210915: 수정 끝: km */
.header.color-no .header-nav-item span,
.header.color-no .header-option-item a,
.header.color-no .selectric-select-lang .selectric .label {
    color: #fff;
}
.header.color-no .header-nav-item-holder:hover {
    background-color: rgba(255,255,255, .2);
}
.header.color-no .selectric-select-lang .selectric .button:after {
    border-top-color: #fff;
}
.header.color-no .header-nav-item.selected {
    border-color: #fff;
}
/* 210902: 수정 끝: km */

/* footer */
.footer {
    padding: 60px 0 100px;
    background-color: #909595;
}
.footer-global-holder {
    position: relative;
    margin: 0 auto;
    max-width: 1580px;
    box-sizing: border-box;
}
.footer-site-map-nav-holder {
    display: flex;
}
.footer-site-map-nav-holder nav {
    flex: 1;
    margin-right: 40px;
    max-width: 270px;
}
.footer-site-map-nav {
    display: block;
    margin-top: 8px;
    line-height: 15px;
    font-size: 13px;
    color: #fff;
}
.footer-site-map-nav.menu {
    margin-bottom: 20px;
    font-weight: 700;
}
.footer-content {
    margin-top: 80px;
}
.footer-nav {
    display: inline-block;
    line-height: 15px;
    font-size: 13px;
    color: #fff;
}
span.footer-nav {
    display: inline-block;
    padding: 0 8px;
    font-size: 11px;
    color: #d8d8d8;
}
.footer-company-info-holder {
    position: relative;
    margin-top: 20px;
}
.footer-company-info {
    max-width: 380px;
}
.footer-company-info h3,
.footer-company-info span,
.copyright {
    line-height: 15px;
    font-size: 11px;
    color: #fff;
}
.footer-company-info span {
    display: inline-block;
    margin-right: 10px;
}
.copyright {
    position: absolute;
    right: 0;
    bottom: 0;
}

/* Car List */
.car-list-item,
.car-list-item span {
    display: block;
}
.thumb-cover {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 200px;
    background-color: #fafafa;
    border-radius: 16px;
}
.img-holder {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    -moz-transform: translate(50%, 50%);
    -o-transform: translate(50%, 50%);
    -ms-transform: translate(50%, 50%);
    -webkit-transform: translate(50%, 50%);
    transform: translate(50%, 50%);
    z-index: 20;
}
.img-holder img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
/*     min-width: 100%; */
    height: 100%;
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    object-fit: scale-down;
}
.car-summary-holder {
    margin-top: 20px;
}
.car-summary-holder .brand,
.car-summary-holder .model,
.car-summary-holder .price {
    line-height: 20px;
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.car-summary-holder .model {
    margin-top: 5px;
}
.car-old-holder {
    margin-top: 10px;
}
.car-old-holder span {
    display: inline-block;
}
.car-summary-holder .old,
.car-summary-holder .mileage {
    line-height: 16px;
    font-size: 12px;
}
.car-summary-holder .mileage {
    position: relative;
    padding-left: 20px;
}
.car-summary-holder .mileage:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 10px;
    margin-top: -6px;
    height: 12px;
    border-left: 1px solid #222;
}
.car-summary-holder .price {
    margin-top: 20px;
    padding-left: 26px;
    font-weight: 700;
    background: url('/images/icon-coin.png') no-repeat left center;
    background-size: 18px auto;
}
.car-list-holder.type_a .car-list-item {
    position: relative;
}
.car-list-holder.type_a .thumb-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 140px;
    height: 140px;
}
.car-list-holder.type_a .car-summary-holder {
    margin: 0;
    padding: 12px 0 5px 155px;
}
.car-list-holder.type_a .car-list-item .img-holder img {
    -moz-transform: translate(-33%, -50%);
    -o-transform: translate(-33%, -50%);
    -ms-transform: translate(-33%, -50%);
    -webkit-transform: translate(-33%, -50%);
    transform: translate(-33%, -50%);
}
.car-list-holder.type_a ul {
    margin-left: -2%;
}
.car-list-holder.type_a li {
    margin: 0 0 2% 2%;
    width: 23%;
}

/* Option box */
.option-box-wrap {
    position: relative;
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
}
.option-box {
    background-color: #fff;
    box-sizing: border-box;
    border: 1px solid #EFEFEF;
    border-radius: 8px;
}
.option-box + .option-box {
    margin-top: 10px;
}
.option-box.show {
    border: 2px solid #111;
    box-shadow: 2px 2px 3px 0px #aaa;
}
.option-title {
    position: relative;
    display: block;
    padding: 14px 20px;
    width: 100%;
    line-height: 20px;
    font-size: 18px;
    font-weight: 700;
    border-bottom: 1px solid #eee;
    box-sizing: border-box;
    text-align: left;
}
.option-title:after {
    content: '';
    display: block;
    position: absolute;
    top: 16px;
    right: 20px;
    width: 17px;
    height: 20px;
    background: url('/images/icon-arrow-down.png') no-repeat center center;
    background-size: 100% auto;
}
.show .option-title:after {
    background: url('/images/icon-arrow-up.png') no-repeat center center;
    background-size: 100% auto;
}
.dropdown-holder.show .option-title:after {
    background: url('/images/icon-arrow-up.png') no-repeat center center;
    background-size: 100% auto;
}
.option-body {
    display: none;
    position: relative;
    padding: 20px;
    box-sizing: border-box;
}
.option-box:last-child .option-title {
    border-bottom: 0;
}
.option-box:last-child .option-body {
    border-bottom: 0;
    border-top: 1px solid #eee;
}
.dropdown-holder.show .option-body {
    display: block;
}
.checkbox-tree-wrap ul li {
    padding-top: 10px;
}
.checkbox-tree-wrap ul li ul,
.checkbox-tree-wrap ul li ul li ul,
.checkbox-tree-wrap ul li ul li ul li ul
.checkbox-tree-wrap ul li ul li ul li ul li ul {
    padding-left: 20px;
}
.checkbox-tree-item {
    position: relative;
    padding-right: 50px;
    box-sizing: border-box;
}
.checkbox-tree-item .cbox-holder {
    display: block;
    width: 100%;
}
.count-number {
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    line-height: 18px;
    font-size: 14px;
    font-weight: 700;
}
.sort-option-minimum .year,
.sort-option-maximum .year {
    flex: 2;
}
.sort-option-maximum {
    margin-top: 10px;
}
.month .selectric-wrapper {
    min-width: 70px;
}
.sort-option-holder .ui-holder:first-child {
    margin-bottom: 10px;
}
.option-body .ui-palette {
    flex-flow: column;
    margin: 0;
}
.option-body .ui-palette-item-holder {
    position: relative;
    margin: 10px 0 0 0;
    padding-right: 50px;
}
.option-body .ui-palette-item-holder:first-child {
    margin-top: 0;
}
.option-body .color-label {
    padding: 0 0 0 40px;
    font-size: 14px;
    line-height: 30px;
}
.option-body .color-label:after {
    left: 0;
    width: 28px;
    height: 28px;
    transform: inherit;
}
.option-body .ui-palette-item .palette-color:checked + .color-label:after {
    background-size: 12px auto;
}
.ui-palette-item-holder .count-number {
    top: 5px;
}


/* Dialog */
.dialog-wrap {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    z-index: 1100;
}
.dialog-bg {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0,0,0, .84);
    z-index: 1000;
}
.dialog-holder {
    position: absolute;
    top: 50%;
    left: 50%;
    padding: 40px 40px 50px;
    width: 580px;
    background-color: #fff;
    box-sizing: border-box;
    border-radius: 16px;
    transform: translate(-50%, -50%);
    z-index: 1100;
}
.size_large .dialog-holder {
    width: 1100px;
}
.size_middle .dialog-holder {
    width: 680px;
}
.dialog-header {
    position: relative;
}
.dialog-header .title {
    line-height: 28px;
    font-size: 16px;
}
.dialog-header .btn-dialog-close {
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    width: 28px;
    height: 28px;
    background: url('/images/icon-cross.png') no-repeat center center #fafafa;
    background-size: 10px auto;
    border-radius: 50%;
}
.dialog-body {
    margin-top: 30px;
}
.dialog-title p {
    line-height: 34px;
    font-size: 28px;
    font-weight: 700;
}
.dialog-btn-holder {
    margin-top: 40px;
    text-align: center;
}
.dialog-btn-holder .btn {
    display: inline-block;
    width: 100%;
    max-width: 280px;
}
.dialog-btn-holder .view_flex .view_flex-item {
    flex: 1;
}


/* 20210916 추가 */
.car-summary-holder .price.usd {
    margin-top: 20px;
    padding-left: 26px;
    font-weight: 700;
    background: url(/images/icon-coin-usd.png) no-repeat left center;
    background-size: 18px auto;
}



