/* ========================= ios ========================= */

.footer_wrap a {
    color: #fff;
}

/* ========================= ios end ========================= */

.main_title_wrap .title {
    font-weight: 800;
    font-size: 36px;
    color: #222;
    word-break: keep-all;
}

.main_title_wrap.center .title {
    text-align: center;
}

.main_title_wrap .color {
    color: var(--highlight-color);
}

.main_title_wrap .desc {
    font-size: 20px;
    font-weight: 400;
    color: #222;
    margin-top: 6px;
}

.main_title_wrap.center .desc {
    text-align: center;
}

/* 차량 미리보기 */
.car_cont {
    padding: 70px 0;
    background-color: #fff;
}

.car_slide_wrap {
    margin-top: 32px;
    position: relative;
}

.car_slide .car_info {
    display: flex;
    align-items: center;
    gap: 32px 100px;
    padding: 35px 50px;
}

.car_slide .car_info .img_wrap {
    display: flex;
    width: calc((100% - 100px) / 2);
    aspect-ratio: 1/0.43;
    overflow: hidden;
}

.car_slide .car_info .img_wrap img {
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.car_slide .car_info .text_wrap {
    width: calc((100% - 100px) / 2);
}

.car_slide .car_info .name {
    font-size: 24px;
    font-weight: 800;
    color: #222;
    margin-bottom: 20px;
}

.car_slide .car_info .content {
    font-size: 16px;
    font-weight: 400;
    color: #222;
}

.car_slide .swiper-horizontal>.swiper-pagination-bullets,
.car_slide .swiper-pagination-bullets.swiper-pagination-horizontal,
.car_slide .swiper-pagination-custom,
.car_slide .swiper-pagination-fraction {
    position: relative;
    top: initial;
    left: initial;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    transform: translate(0);
    bottom: initial;
    margin-bottom: 32px;
}

.car_slide .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.car_slide .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    display: flex;
    align-items: center;
    width: fit-content;
    height: auto;
    border-radius: 50px;
    margin: 0;
    padding: 10px 22px;
    font-size: 16px;
}

.car_slide .swiper-pagination-bullet {
    border: 1px solid #BBBBBB;
    background-color: #fff;
    font-weight: 500;
    color: #5E5E5E;
    opacity: 1;
}

.car_slide .swiper-pagination-bullet-active {
    border-color: #222222;
    background-color: #222222;
    font-weight: 600;
    color: #fff;
}

.car_slide .swiper-slide {
    background-color: #fff;
}

.car_img_slide .img_wrap {
    display: flex;
    aspect-ratio: 1/0.721649485;
    overflow: hidden;
}

.car_img_slide .img_wrap img {
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
}

.car_cont .swiper-button-next,
.car_cont .swiper-button-prev {
    top: 50%;
    transform: translateY(-50%);
    margin-top: 0;
}

.car_cont .swiper-button-prev,
.car_cont .swiper-rtl .swiper-button-next {
    left: 4px;
}

.car_cont .swiper-button-next,
.car_cont .swiper-rtl .swiper-button-prev {
    right: 4px;
}

.car_cont .swiper-button-next:after,
.car_cont .swiper-button-prev:after {
    font-size: 16px;
    color: var(--main-color);
}

/* 리뷰 */
.review_cont {
    padding: 70px 0;
    background-image: linear-gradient(to bottom, #fff, #F6F7F8, #F6F7F8, #F6F7F8, #EEEFF2);
}

.use_step {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 60px;
}

.use_step li {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: calc((100% - 20px) / 2);
    box-shadow: 2px 2px 10px 0 rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    padding: 30px 32px;
    background-color: #fff;
}

.use_step .step_num {
    font-size: 20px;
    font-weight: 900;
    color: #222;
}

.use_step .text_wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.use_step .title {
    font-size: 24px;
    font-weight: 700;
    color: #222;
}

.use_step .content {
    font-size: 16px;
    font-weight: 400;
    color: #222;
}

.view_cnt_wrap {
    margin-top: 70px;
    display: flex;
}

.view_cnt_wrap .cnt_item {
    width: calc(100% / 3);
    position: relative;
}

.view_cnt_wrap .cnt_item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: block;
    width: 0;
    height: calc(100% - 16px);
    border-right: 1px solid #E1E1E1;
}

.view_cnt_wrap .title {
    font-size: 16px;
    font-weight: 600;
    color: #222;
    text-align: center;
}

.view_cnt_wrap .content {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(to bottom, #305CAD, #3232B1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.review_cont .review_slide {
    margin-top: 50px;
}

.review_cont .review_slide .swiper-wrapper {
    transition-timing-function: linear;
}

.review_cont .review_slide .swiper-slide {
    width: 344px;
}

.review_box {
    border-radius: 8px;
    padding: 20px;
    box-shadow: 2px 2px 10px 0 rgba(0, 0, 0, 0.05);
    background-color: #fff;
    height: 100%;
}

.review_box .review_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.review_box .name {
    font-size: 16px;
    font-weight: 500;
    color: #222;
}

.review_box .dttm {
    font-size: 16px;
    font-weight: 400;
    color: #9E9E9E;
}

.score_box {
    margin-top: 8px;
    display: flex;
    gap: 5px;
    align-items: center;
}

.score_box .icon_wrap {
    display: flex;
    width: 17px;
}

.review_box .content {
    margin-top: 12px;
    font-size: 16px;
    color: #222;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    display: -webkit-box;
}

/* 예약현황 */
.log_cont {
    padding: 70px 0;
    background-color: #fff;
}

.log_wrap {
    display: flex;
    gap: 60px;
}

.log_cont .main_title_wrap {
    width: calc((100% - 60px) / 2);
}

.log_cont .table_wrap {
    width: calc((100% - 60px) / 2);
}


.table_head {
    display: flex;
    padding: 14px 13px;
    background-color: #262626;
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.05);
    border-radius: 6px;
}

.table_head .th {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.table_wrap .table_body {
    padding-top: 12px;
    height: 400px;
}

.table_body::after {
    content: '';
    display: block;
    width: 100%;
    height: 13%;
    background-image: linear-gradient(to top, #fff, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0));
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
}

.table_body .swiper-slide {
    display: flex;
    align-items: center;
    padding: 12px 13px;
    background-color: #F8F8F8;
    border-radius: 6px;
}

.table_body .td {
    font-size: 15px;
    font-weight: 500;
    color: #222;
    text-align: center;
}

.table_wrap .dttm {
    width: calc((100% - 90px) / 4);
}

.table_wrap .name {
    width: calc((100% - 90px) / 4);
}

.table_wrap .addr {
    width: calc((100% - 90px) / 4);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0 5px;
}

.table_wrap .car {
    width: calc((100% - 90px) / 4);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0 5px;
}

.table_wrap .state {
    width: 90px;
}

.table_wrap .badge {
    display: block;
    padding: 8px;
    border-radius: 6px;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
}

.table_wrap .badge.fill_gradient {
    background-image: linear-gradient(to bottom, #305CAD, #3232B1);
    color: #fff;
}

.table_wrap .badge.fill_gray {
    background-color: #B8B8B8;
    color: #fff;
}

/* 진행 방법 */
.program_cont {
    position: relative;
}

.program_cont .bg {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    top: 0;
    left: 0;
}

.program_cont .bg img {
    height: 100%;
    object-fit: cover;
    object-position: center 37%;
}

.program_wrap {
    position: relative;
    padding: 128px 0;
    background: rgba(0, 0, 0, 0.8);
}

.program_cont .main_title_wrap .title,
.program_cont .main_title_wrap .desc {
    color: #fff;
}

.program_step {
    display: flex;
    gap: 36px 16px;
    margin-top: 60px;
}

.program_step .program_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px 24px;
    width: calc((100% - 64px) / 5);
    position: relative;
}

.program_step .program_item::after {
    content: '';
    position: absolute;
    top: 15px;
    right: -46%;
    display: block;
    width: 84%;
    height: 0;
    border-bottom: 1px solid #E1E1E1;
}

.program_step .program_item:last-child::after {
    width: 300%;
    transform: translateX(100%);
    right: 38%;
}

.program_step .program_item:last-child::before {
    content: '';
    position: absolute;
    top: -22px;
    right: -80%;
    display: block;
    width: 79px;
    height: 56px;
    background: url(/static/app_www_allcar/base/img/icon_car_w.png) no-repeat center/contain;
    z-index: 1;
}

.program_step .program_item .item_num {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}

.program_step .program_item.active .item_num {
    background: linear-gradient(135deg, #305CAD, #3232B1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.program_step .program_item .item_content {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    padding: 14px 0;
    border: 1px solid #3A3A3A;
    background-color: #21252C;
    border-radius: 50px;
    width: 100%;
    text-align: center;
}

.program_step .program_item.active .item_content {
    background: linear-gradient(135deg, #305CAD, #3232B1);
    border-color: transparent;
}

.program_alert_wrap {
    margin-top: 60px;
}

.program_alert {
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    text-align: center;
    word-break: keep-all;
    display: none;
}

.program_alert.active {
    display: block;
}

.app_cont {
    padding: 70px 0;
    background-color: #F8F8F8;
}

.app_cont .img_wrap {
    display: flex;
    width: 100px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
}

.app_cont .title {
    font-size: 40px;
    font-weight: 800;
    color: #222;
    text-align: center;
    margin-top: 30px;
}

.app_cont .desc {
    font-size: 16px;
    font-weight: 400;
    color: #222;
    text-align: center;
    margin-top: 16px;
}

.app_cont .btn_wrap {
    gap: 8px;
    margin-top: 30px;
}

.app_cont .btn_wrap .app_btn {
    width: calc((100% - 8px) / 2);
    max-width: 163px;
    display: flex;
}

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

    .car_cont,
    .review_cont,
    .log_cont {
        padding: 32px 0;
    }

    .main_title_wrap .title {
        font-size: 22px;
    }

    .main_title_wrap .desc {
        font-size: 14px;
        margin-top: 2px;
    }

    .car_slide .swiper-horizontal>.swiper-pagination-bullets,
    .car_slide .swiper-pagination-bullets.swiper-pagination-horizontal,
    .car_slide .swiper-pagination-custom,
    .car_slide .swiper-pagination-fraction {
        margin-bottom: 24px;
    }

    .car_slide .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
    .car_slide .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
        padding: 8px 14px;
        font-size: 14px;
    }

    .car_slide .car_info {
        padding: 26px 16px;
    }

    .car_slide .car_info .name {
        font-size: 18px;
        margin-bottom: 14px;
    }

    .use_step {
        margin-top: 32px;
    }

    .use_step li {
        gap: 10px;
    }

    .use_step .step_num {
        font-size: 16px;
    }

    .use_step .title {
        font-size: 18px;
    }

    .log_wrap {
        flex-direction: column;
        gap: 32px;
    }

    .log_cont .main_title_wrap {
        width: 100%;
    }

    .log_cont .table_wrap {
        width: 100%;
    }

    .program_wrap {
        padding: 70px 0;
    }

    .program_step {
        margin-top: 32px;
        flex-direction: column;
    }

    .program_step .program_item {
        flex-direction: row;
        /* align-items: center; */
        width: 280px;
        justify-content: center;
        /* max-width: 500px; */
        margin: 0 auto;
    }

    .program_step .program_item .item_num {
        width: 25px;
    }

    .program_step .program_item .item_content {
        padding: 12px 0px;
        width: 212px;
    }

    .program_step .program_item::after {
        width: 0;
        height: 36px;
        border-bottom: 0;
        border-right: 1px solid #e1e1e1;
        top: 100%;
        right: initial;
        left: 22px;
    }

    .program_step .program_item:last-child::after {
        display: none;
    }

    .program_step .program_item:last-child::before {
        display: none;
    }


    .program_alert {
        font-size: 14px;
    }



}

@media screen and (max-width:767px) {
    .car_slide .car_info {
        flex-direction: column;
    }

    .car_slide .car_info .img_wrap {
        width: 100%;
        max-width: 460px;
    }

    .car_slide .car_info .text_wrap {
        width: 100%;
    }

    .use_step li {
        padding: 16px;
        width: 100%;
    }

    .view_cnt_wrap .title {
        font-size: 14px;
    }

    .view_cnt_wrap .content {
        font-size: 28px;
    }

    .program_step .program_item {
        width: 200px;
    }

    .program_step .program_item::after {
        left: 17px;
    }

    .program_step .program_item .item_num {
        font-size: 14px;
        width: 17px;
    }

    .program_step .program_item .item_content {
        width: 140px;
        font-size: 12px;
    }

    .table_head {
        padding: 12px 6px;
    }

    .table_head .th {
        font-size: 12px;
    }

    .table_wrap .table_body {
        height: 312px;
    }

    .table_body .swiper-slide {
        padding: 10px 6px;
    }

    .table_body .td {
        font-size: 12px;
    }

    .table_wrap .badge {
        font-size: 12px;
        padding: 4px 2px;
    }

    .table_wrap .state {
        width: 76px;
    }

    .table_wrap .dttm,
    .table_wrap .name,
    .table_wrap .addr,
    .table_wrap .car {
        width: calc((100% - 76px) / 4);
    }
}