:root {
    /* input style */
    /* --input-padding-x: 16px; */
    /* --input-padding-y: 12px; */

    /* input_title font-size */
    /* --input-title-size: 14px; */

    /* input font-size */
    /* --input-font-size: 16px; */

    /* --input-border-color: #E1E1E1; */

    /* input[checkbox] icon */
    /* --check-default-img:url(); */
    /* --check-active-img:url(); */

    /* input[radio] icon */
    /* --radio-default-img:url(); */
    /* --radio-active-img:url(); */

    /* input icon크기 */
    /* --input-icon-size: 20px; */

    /* 프로젝트 style */
    --main-color: #2E363F;
    --sub-color: #00AEF0;
    --error-color: #FF5757;
    --success-color: #2D67FF;
    --bg-color: #F3F5FA;
}


/* pc */
#base_wrap {
    position: relative;
    width: 100%;
    /* height: 100vh;
    overflow-y: auto; */
}

body.scroll-lock {
    overflow: hidden;
}

.scroll-lock {
    overflow-y: hidden;
}

.inner {
    /* width는 임시값 */
    max-width: 524px;
    padding: 0 12px;
    margin: 0 auto;
}

/* 일시적인 숨김, 일시적인 표시 일때 control class */
.hide {
    display: none !important;
}

/* 웹접근성 hide */
.edk_WAI {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    clip-path: polygon(0 0, 0 0, 0 0, 0 0);
    z-index: -1;
    border: none;
    padding: 0;
    margin: 0;
}

/* 반응형 display control */
.is_mobile {
    display: none;
}

.scroll-no {
    /* 인터넷 익스플로러 스크롤바 삭제 */
    -ms-overflow-style: none;
    /* 파이어폭스 스크롤바 삭제 */
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

/* ( 크롬, 사파리, 오페라, 엣지 ) 스크롤바 삭제 */
.scroll-no::-webkit-scrollbar {
    /* 가로 스크롤바 숨기기 */
    width: 0;
    /* 세로 스크롤바 숨기기 */
    height: 0;
    display: none;
}

/* 텍스트 ... 처리 */
.text_reduce {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* btn */
.btn_default {
    border: 1px solid #BBBBBB;
    background-color: transparent;
    color: #101010;
    border-radius: 4px;
}

.btn_default.border_main {
    border-color: var(--main-color);
    color: var(--main-color);
}

.btn_default.fill_main {
    border-color: var(--main-color);
    background-color: var(--main-color);
    color: #FFF;
}

.btn_default.fill_red {
    border-color: var(--error-color);
    background-color: var(--error-color);
    color: #fff;
}

.btn_default.border_red {
    border-color: var(--error-color);
    color: var(--error-color);
}

.btn_default.border_gray {
    border-color: #BBBBBB;
    color: #101010;
}

.btn_default.full {
    width: 100%;
    text-align: center;
}

.btn_default:disabled {
    color: #9E9E9E;
    border-color: #E1E1E1;
    background-color: #E1E1E1;
}

/* btn group */
.btn_group {
    display: flex;
    gap: 8px 16px;
}

.btn_group.column {
    flex-wrap: wrap;
}

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

.btn_group.right {
    justify-content: flex-end;
}

/* body색 있는 */
.bg_gray {
    background-color: var(--bg-color);
}

/* pc고정 사이드영역 */
#dream_side_cont {
    width: 372px;
    height: 100vh;
    padding: 50px 30px 20px;
    background-color: #0C2236;
    position: fixed;
    top: 0;
    right: calc(51% + 100px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #fff;
}

/* 사이드영역 상단 */
#dream_side_cont .logo_area {
    display: flex;
    width: 169px;
    margin: 0 auto 70px;
}

#dream_side_cont .text_area {
    margin-bottom: 50px;
    font-size: 14px;
    text-align: center;
}

#dream_side_cont .text_area .content_text:not(:last-child) {
    margin-bottom: 20px;
}

#dream_side_cont .side_top_sect .btn_group {
    gap: 6px;
}

#dream_side_cont .btn_app {
    width: 123px;
    display: flex;
}

/* 사이드영역 하단 */
#dream_side_cont .side_bottom_sect {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#dream_side_cont .company_info:not(:last-child) {
    margin-bottom: 3px;
}

#dream_side_cont .info_text {
    font-size: 12px;
}

#dream_side_cont .info_text.mid {
    font-size: 13px;
}

#dream_side_cont .info_text.large {
    font-size: 20px;
    font-weight: 700;
}

#dream_app_cont {
    flex-shrink: 0;
    width: 100%;
    max-width: 524px;
    margin-left: 49%;
    min-height: 100dvh;
}

/* position fixed 사용 시 공통 클래스 */
.fixed_cont {
    position: fixed;
    width: 100%;
    left: 49%;
    max-width: 524px;
    z-index: 9;
}

.fixed_cont.top {
    top: 0;
}

.fixed_cont.bottom {
    bottom: 0;
}


/* 견적 공통 */

.isfilter_cont {
    padding-top: 44px;
}

.common_cont {
    padding: 56px 0 65px;
}

.list_cnt_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.list_cnt_wrap .list_cnt {
    font-size: 12px;
    font-weight: 400;
    color: #222222;
}

.list_cnt_wrap .list_cnt span {
    color: #5E5E5E;
}

.list_cnt_wrap .dttm {
    font-size: 13px;
    font-weight: 400;
    color: #222;
}

.order_item:not(:last-child) {
    margin-bottom: 16px;
}

.order_item {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.order_item.unread {
    background-color: rgba(255, 238, 240, 0.7);
}

.order_item .item_head {
    padding: 12px 16px;
    border-bottom: 1px solid #E1E1E1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.order_item .item_head .title_wrap .icon_wrap {
    display: flex;
    width: 20px;
}

.order_item .item_head .title_wrap .title {
    font-size: 16px;
    font-weight: 700;
    color: #222;
}

.order_item .badge {
    display: flex;
    align-items: center;
    gap: 1px;
    padding: 4px 7px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 400;
    border: 1px solid #fff;
}

.order_item .badge.fill_pup {
    background-color: #472495;
    border-color: #472495;
    color: #fff;
}

.order_item .badge.fill_red {
    background-color: #E53935;
    border-color: #E53935;
    color: #fff;
}

.order_item .badge.fill_gray {
    background-color: #5E5E5E;
    border-color: #5E5E5E;
    color: #fff;
}

.order_item .badge.fill_main {
    background-color: var(--main-color);
    border-color: var(--main-color);
    color: #fff;
}

.order_item .badge.fill_sub {
    background-color: var(--sub-color);
    border-color: var(--sub-color);
    color: #fff;
}

.order_item .badge.border_d_gray {
    background-color: #fff;
    border-color: #5E5E5E;
    color: #5E5E5E;
}

.order_item .badge.border_gray {
    background-color: #fff;
    border-color: #9E9E9E;
    color: #222;
}

.order_item .badge .icon_wrap {
    display: flex;
    width: 14px;
}

.badge.dr_call {
    gap: 3px;
    cursor: pointer;
}

.badge_tool {
    /* position: relative; */
    display: none;
}

.badge_tool.active {
    display: block;
}

.badge_tool .dim {
    position: fixed;
    width: 100dvw;
    height: 100dvh;
    z-index: 1;
}

.badge_tool .tool_body {
    position: absolute;
    top: 60px;
    right: 10px;
    padding: 12px;
    border-radius: 4px;
    background-color: var(--main-color);
    z-index: 1;
}

.badge_tool .tool_body::after {
    content: '';
    display: block;
    width: 0px;
    height: 0;
    border: 7px solid transparent;
    border-bottom-color: var(--main-color);
    position: absolute;
    top: 1px;
    right: 14px;
    transform: translateY(-100%);
}

.badge_tool .title {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 4px;
}

.badge_tool .title .icon_wrap {
    display: flex;
    width: 14px;
    margin-top: -1px;
}

.badge_tool .desc {
    font-size: 12px;
    font-weight: 400;
    color: #fff;
}

.order_item .item_state {
    padding: 8px 16px;
    display: flex;
    justify-content: flex-end;
}

.order_item .item_state .title {
    font-size: 14px;
    font-weight: 700;
}

.order_item .item_state.bg_blue {
    background-color: #D4EBFF;
}

.order_item .item_state.bg_blue .title {
    color: var(--success-color);
}

.order_item .title_wrap {
    display: flex;
    align-items: center;
    gap: 6px;
}



.order_item .item_body {
    padding: 16px;
}

.order_item .item_foot {
    padding: 16px;
}

.order_item .item_foot.bg_red {
    background-color: #FFEEF0;
}

.order_item dl:not(:last-child) {
    margin-bottom: 8px;
}

.order_item dl {
    display: flex;
    align-items: flex-start;
    font-size: 15px;
    font-weight: 400;
    color: #222;
}

.order_item dt {
    width: 85px;
    font-size: inherit;
    color: inherit;
}

.order_item dt span {
    font-size: 14px;
    font-weight: 400;
    color: #5E5E5E;
}

.order_item dt strong {
    font-weight: 600;
}

.order_item dd {
    width: calc(100% - 85px);
    font-size: inherit;
    color: inherit;
    display: flex;
    align-items: center;
}

.order_item dd.right {
    justify-content: flex-end;
}

.order_item dd b {
    font-weight: 600;
}

.order_item dd strong {
    font-weight: 700;
}

.order_item .red {
    color: var(--error-color);
}

.order_item dd .icon_wrap {
    display: flex;
    width: 18px;
}

.order_item dl.disabled,
.order_item dl.disabled dt span {
    color: #9E9E9E;
}

.order_item dt.long {
    width: 120px;
}

.order_item dt.long+dd {
    width: calc(100% - 120px);
}

.order_item dt.middle {
    width: 96px;
}

.order_item dt.middle+dd {
    width: calc(100% - 96px);
}

.order_item dd small {
    font-size: 12px;
}

.order_item dt.title {
    width: 180px;
}

.order_item dt.title strong {
    font-size: 16px;
}

.order_item dt.title+dd {
    width: calc(100% - 140px);
    font-size: 16px;
}

.order_item .badge_wrap {
    display: flex;
    justify-content: space-between;
    gap: 6px;
    margin-bottom: 12px;
}

.order_item .badge_box {
    display: flex;
    gap: 6px;
}

.order_item .item_content:not(:last-child) {
    padding-bottom: 16px;
    border-bottom: 1px solid #EBEBEB;
    margin-bottom: 16px;
}

.order_item .item_content .title {
    font-size: 15px;
    font-weight: 400;
    color: #5E5E5E;
    margin-bottom: 12px;
}

.order_item .item_content .title strong {
    font-weight: 600;
    color: #222;
}

.addr_wrap {
    margin-left: 8px;
    border-left: 1px dashed #BBBBBB;
}

.addr_item:not(:last-child) {
    margin-bottom: 8px;
}

.addr_item {
    padding-left: 14px;
    position: relative;
}

.addr_item .icon_wrap {
    position: absolute;
    transform: translateX(-50%);
    background-color: #fff;
}

.addr_item .icon_wrap.start {
    left: -1px;
    top: 0;
    padding-top: 6px;
}

.addr_item .icon_wrap.end {
    left: 0;
    bottom: 0;
    padding-bottom: 4px;
}

.addr_item .icon_wrap::after {
    content: '';
    display: block;
    width: 7px;
    height: 8px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.addr_item .icon_wrap.start::after {
    background-image: url(/static/common/img/icon_arrow_g.png);
}

.addr_item .icon_wrap.end::after {
    background-image: url(/static/common/img/icon_arrow_g.png);
    transform: rotate(180deg);
}

.addr_item .addr_text {
    font-size: 14px;
    font-weight: 400;
    color: #222;
}

.addr_item .distance {
    padding: 5px 8px;
    border-radius: 50px;
    background-color: #F3F5FA;
    font-size: 12px;
    font-weight: 500;
    color: #5E5E5E;
}

.load_item:not(:last-child) {
    margin-bottom: 8px;
}

.load_item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.load_badge {
    padding: 5px 8px;
    border-radius: 4px;
    background-color: #EBEBEB;
    font-size: 12px;
    font-weight: 400;
    color: #222;
    white-space: nowrap;
}

.default_text {
    font-size: 15px;
    font-weight: 400;
    color: #222;
}

.load_badge+.default_text {
    margin-top: 1px;
}

.alert_wrap {
    padding: 16px;
    border-radius: 4px;
}

.alert_wrap.error {
    background-color: #FFEEF0;
}

.alert_wrap.green {
    background-color: #EEFFEF;
}

.alert_wrap .title_wrap {
    display: flex;
    gap: 6px;
    align-items: flex-start;
    margin-bottom: 16px;
}

.alert_wrap .title_wrap .icon_wrap {
    display: flex;
    width: 18px;
    flex-shrink: 0;
    margin-top: 1px;
}

.alert_wrap .title_wrap .title {
    font-size: 14px;
    font-weight: 700;
    color: #5E5E5E;
}

.alert_wrap .title_wrap .title.red {
    color: var(--error-color);
}

.alert_wrap .title_wrap .title strong {
    color: #222;
}

.alert_wrap .alert_list .alert_item {
    font-size: 14px;
    font-weight: 400;
    color: #5E5E5E;
}

.alert_wrap .alert_list.disc .alert_item {
    display: flex;
    align-items: flex-start;
    word-break: keep-all;
}

.alert_wrap .alert_list.disc .alert_item::before {
    content: '';
    display: block;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background-color: #5E5E5E;
    flex-shrink: 0;
    margin: 8px 6px;
}

.alert_list.bg_red {
    padding: 8px;
    border-radius: 4px;
    background-color: #FFDCE0;
}

.alert_wrap .alert_list.bg_red .alert_item {
    color: #222;
}

.alert_wrap .alert_list.disc.bg_red .alert_item::before {
    background-color: #222;
}

.bottom_btn {
    padding: 13px 0;
    font-size: 16px;
    font-weight: 700;
    margin-top: 16px;
}

.swal2-container .sub_info {
    font-size: 14px;
    font-weight: 400;
    color: #777;
    margin-top: 8px;
}

/* 견적 참여 작성 */
.bid_progress {
    top: 45px;
    background-color: #fff;
}

.bid_progress .progress_bar {
    background: linear-gradient(to right, #2194BF, #0A1727);
    height: 8px;
    width: 0;
    transition: 300ms;
}


.bid_swiper .swiper-slide {
    min-height: 100vh;
}

.bid_swiper .common_cont {
    padding-top: 80px;
    display: flex;
    flex-direction: column;
}

.bid_swiper .common_cont .inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-grow: 1;

}

.bid_swiper .swiper_content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
    gap: 36px;
    padding-bottom: 5px;
}

.bid_swiper .swiper_item:not(:last-child) {
    margin-bottom: 50px;
}

.bid_swiper .badge.blue {
    background-color: #E7EFFC;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 400;
    color: var(--main-color);
}

.bid_swiper .swiper_item .title {
    margin-top: 12px;
    font-size: 24px;
    font-weight: 700;
    color: #222;
}

.bid_swiper .swiper_item .sub_text {
    margin-top: 12px;
    font-size: 14px;
    font-weight: 400;
    color: #5E5E5E;
}

.bid_swiper .swiper_item .sub_text .red {
    color: var(--error-color);
}

.bid_swiper .edk_input[name=price] {
    background-color: transparent;
    border-radius: 0;
    border-width: 0;
    border-bottom-width: 1px;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    padding: 7px;
    color: var(--error-color);
}

.bid_swiper .calc_wrap {
    border-radius: 12px;
    background-color: #f8f8f8;
}

.bid_swiper .calc_wrap .head {
    padding: 12px 16px;
    border-bottom: 1px solid #E1E1E1;
}

.bid_swiper .calc_wrap .calc_title {
    font-size: 14px;
    font-weight: 700;
    color: #222;
}

.bid_swiper .calc_wrap .body {
    padding: 12px 16px;
}

.bid_swiper .calc_wrap .body>div:not(:last-child) {
    padding-bottom: 8px;
    border-bottom: 1px dashed #E1E1E1;
    margin-bottom: 8px;
}

.bid_swiper .calc_wrap .body dl:not(:last-child) {
    margin-bottom: 8px;
}

.bid_swiper .swiper_item dl {
    display: flex;
    justify-content: space-between;
}

.bid_swiper .calc_wrap dt {
    font-size: 14px;
    font-weight: 500;
    color: #5E5E5E;
}

.bid_swiper .calc_wrap dd {
    font-size: 14px;
    font-weight: 400;
    color: #222;
}

.bid_swiper .calc_wrap dd span {
    font-size: 16px;
}

.bid_swiper .total_calc {
    margin-top: 4px;
    border-radius: 12px;
    background-color: #FFEEF0;
    padding: 16px;
}

.bid_swiper .total_calc dt {
    font-size: 14px;
    font-weight: 700;
    color: #222;
}

.bid_swiper .total_calc dd {
    font-size: 14px;
    font-weight: 400;
    color: #222;
}

.bid_swiper .total_calc dd strong {
    font-size: 16px;
    font-weight: 700;
    color: var(--error-color);
}

.bid_swiper .swiper_content .btn_default {
    padding: 15px 0;
    font-weight: 16px;
    font-weight: 700;
}

.bid_swiper .option_list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.bid_swiper .option_list .option_item {
    width: calc((100% - 30px) / 4);
    padding: 10px 16px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 400;
    color: #222;
    background-color: #F1F3F4;
}

.bid_swiper .option_list .option_item.active {
    background-color: var(--sub-color);
    color: #fff;
}

.bid_swiper .option_list .option_item.required.active {
    background-color: #5E5E5E;
}

.bid_swiper .input_option_box {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* 기사정보(메인,마이페이지메인) 공통 */
.main_box {
    border-radius: 12px;
    box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.1);
}

.driver_info .info_top_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.driver_info .title_wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.driver_info .driver_name {
    font-size: 16px;
    font-weight: 600;
}

.driver_info .profile_img {
    width: 36px;
    display: flex;
    aspect-ratio: 1/1;
    border: 1px solid #D1D4D9;
    border-radius: 100px;
    overflow: hidden;
}

.driver_info .driver_type {
    font-size: 14px;
    background-repeat: no-repeat;
    background-size: 19px 19px;
    background-position: left center;
}

.driver_info .driver_type i {
    font-size: 19px;
    vertical-align: sub;
}

.driver_info .driver_type.blue {
    color: var(--sub-color);
}

.driver_info .calc_info_area,
.driver_info .calc_info_area>li:not(:last-child) {
    display: flex;
    align-items: center;
    gap: 11px;
}

.driver_info .calc_info_area {
    padding: 8px 16px;
    background-color: #FFFFFF;
    justify-content: center;
    text-align: center;
    width: 100%;
}

.driver_info .calc_info_area>li {
    width: 50%;
}

.driver_info .calc_info_area.bg_gray {
    background-color: #F5F6F9;
}

.driver_info .calc_info_area>li:not(:last-child)::after {
    content: "";
    display: block;
    height: 20px;
    border-left: 1px solid #C7CAD0;
}

.driver_info .calc_info_area .calc_title {
    color: var(--error-color);
    margin-bottom: 5px;
    font-size: 12px;
}

.driver_info .calc_info_area .calc_info {
    width: 100%;
    display: block;
    padding: 10px 0;
}

.driver_info .calc_info_area .calc_text {
    font-size: 14px;
    font-weight: 600;
}

.cert_state {
    display: block;
    width: fit-content;
    padding: 4px 10px;
    color: var(--error-color);
    background-color: #FFEEF0;
    border-radius: 50px;
    font-size: 12px;
}

.cert_state.completed {
    color: #0F721B;
    background-color: #EEFFEF;
}

.driver_info .calc_info_area .cert_state {
    margin: 0 auto;
    padding: 3px 8px;
}

/* 내역 없음 */
.empty_wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 52px 0;
    gap: 8px;
}

.empty_wrap .empty_title {
    font-size: 14px;
    font-weight: 400;
    color: #5E5E5E;
    text-align: center;
}

/* 마이페이지 공통사항 */
.mypage_cont .update_sect {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.mypage_cont .update_sect .input_wrap {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mypage_cont .update_sect .btn_default {
    font-weight: 700;
    font-size: 16px;
    padding: 12px 0;
}

/* 보증금/정산 */
.mypoint_wrap {
    padding: 20px 0;
}

.mypoint_wrap.bg_blue {
    background-color: #F3F5FA;
}

.mypoint_wrap.bg_red {
    background-color: #FFEEF0;
}

.mypoint_wrap .point_box {
    margin-bottom: 20px;
}

.mypoint_wrap .mypoint_head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mypoint_wrap .mypoint_head h2 {
    font-size: 16px;
    font-weight: 500;
    color: #222;
}

.mypoint_wrap .mypoint_head .filter_btn {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--main-color);
    padding: 6px 10px;
    border-radius: 50px;
    border: 1px solid var(--main-color);
    background-color: transparent;
}

.mypoint_wrap .mypoint_head .filter_btn::after {
    content: '';
    display: block;
    width: 13px;
    height: 13px;
    background: url(/static/common/img/icon_filter_n.png) no-repeat center/contain;
}

.mypoint_wrap .my_point {
    font-size: 20px;
    font-weight: 400;
    color: #222;
    margin-top: 4px;
}

.mypoint_wrap .my_point strong {
    font-size: 22px;
    font-weight: 700;
}

.mypoint_wrap .my_point strong.red {
    color: var(--error-color);
}

.mypoint_wrap .alert_list p:not(:last-child) {
    margin-bottom: 3px;
}

.mypoint_wrap .alert_list p {
    font-size: 13px;
    font-weight: 400;
    color: #222;
}

/* tablet */
@media screen and (max-width: 1023px) {

    /* 반응형 display control */
    .is_pc {
        display: none !important;
    }

    .is_mobile {
        display: block;
    }

    .is_mobile.flex {
        display: flex;
    }

    #dream_app_cont {
        margin: 0;
    }

    .fixed_cont {
        left: 0;
    }

    .swiper-horizontal.bid_swiper>.swiper-pagination-progressbar,
    .swiper-pagination-progressbar.swiper-pagination-horizontal,
    .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
    .swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
        left: 0;
    }
}

/* mobile */
@media screen and (max-width: 767px) {}