#title_chart {
    display: none;
}

#service {}

.service_center {}

.title_chart {
    display: none;
}

.service_center ul {
    display: flex;
    grid-gap: 26px;
    justify-content: center;
    width: calc(100% - 20px);
    padding: 22px 0 40px 0;
    box-sizing: border-box;
    margin: 0 auto;
}

.service_center li {
    padding: 33.5px 0;
    border-bottom: 3px solid #6EBBFFB2;
    color: #6EBBFFB2;
    width: 100%;
    text-align: center;
    font-size: 28px;
    font-weight: 800;
    cursor: pointer;
    line-height: 1;
}

.service_center .sc_c {
    border-bottom: 3px solid #0063A7;
    color: #0063A7;
}

.service_bottom {
    display: flex;
    grid-gap: 50px;
    justify-content: center;
    margin-top: 60px;
}

.s_b_l img {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
}

.fare_container {
    /* width: 100%;
    max-width: 500px;
    background: #f4f4f4;
    padding: 25px;
    border-radius: 12px; */
    width: 100%;
}

.service_bottom h2 {
    text-align: center;
    font-size: 20px;
    margin-bottom: 15px;
}

.tab_buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 59.5px;
}

.tab_btn {
    flex: 1;
    padding: 3.5px;
    border: none;
    /* border-radius: 50px; */
    cursor: pointer;
    font-weight: 800;
    font-size: 24px;
    width: 100%;
    max-width: 500px;
    /* border: 1px solid #0063A7; */
    color: #0063A7;
    line-height: 53px;
}


.tab_btn_pc {
    display: none;
}

.tab_div {
    display: flex;
    align-items: flex-end;
    grid-gap: 20px;
    justify-content: center;
    height: 100%;
}

.tab_div>div {
    width: 100%;
    padding: 40px 67px 56.5px 50px;
    box-sizing: border-box;
    background-color: #D4E8F84D;
    height: 100%;
    border-radius: 20px;
}


.info_text {
    font-size: 18px;
    font-weight: 400;
    color: #6D6E71;
    margin-top: 8px;
    text-align: left;
    line-height: 53px;
}

.form_group {
    display: flex;
    align-items: center;
    margin-bottom: 28px;
    justify-content: space-between;
}

.form_group label {
    width: 100px;
    font-weight: 800;
    font-size: 24px;
    color: #0063A7;
}

#service .form_group input {
    flex: 1;
    padding: 5px 0 5px 20px;
    border: none;
    border-radius: 6px;
    margin-bottom: 0;
    background-color: #fff!important;
    line-height: 40px;
    font-size: 24px;
    font-weight: 400;
    box-sizing: border-box;
    max-width: 465px;
}

#service .form_group .time_input {
    max-width: 220px;
}

#service .form_group input::placeholder {
    font-size: 24px;
    font-weight: 400;
    line-height: 50px;
}

.form_group input[type=text][readonly] {
    border: none;
    background-color: #fff!important;
}

.button_group {
    display: flex;
    gap: 10px;
    width: 100%;
    max-width: 410px;
    margin-left: 133px;
    margin-bottom: 28px;
}

.button_group button {
    flex: 1;
    padding: 17px 10px;
    border: none;
    background: #F47D20;
    border-radius: 50px;
    cursor: pointer;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.result {
    display: flex;
    margin: 14px 0;
    align-items: center;
    justify-content: space-between;
}

.result label {
    font-weight: 800;
    font-size: 24px;
    color: #0063A7;
}

.result>div {
    width: 100%;
    height: 50px;
    max-width: 465px;
}

.price_box {
    background: #fff;
    border: none;
    border-radius: 6px;
    height: 35px;
    font-size: 24px;
    font-weight: 400;
    line-height: 50px;
    padding: 0 8px;
    box-sizing: border-box;
}

.service_bottom .hidden {
    display: none;
}


.chart_container {
    background-color: #f9f9f9;
    width: 100%;
    border-radius: 20px;
}

.chart_container_div {
    height: 600px;
    position: relative;
    margin: 40px 40px 74px 74px;
    box-sizing: border-box;
}

/* X축 (요금) */
.axis_x {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 96%;
    height: 2px;
    background-color: #111;
}

/* X축 화살표 */
.axis_x::after {
    content: '';
    position: absolute;
    right: -1px;
    top: -9px;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #111;
}

/* X축 레이블 */
.label_x {
    position: absolute;
    bottom: -16.5px;
    right: -5px;
    font-size: 28px;
    color: #111;
    font-weight: 400;
}

/* Y축 (서비스) */
.axis_y {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 2px;
    height: 94%;
    background-color: #111;
}

/* Y축 화살표 */
.axis_y::after {
    content: '';
    position: absolute;
    transform: translateX(-50%);
    top: -1px;
    left: 50%;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 15px solid #111;
}

/* Y축 레이블 */
.label_y {
    position: absolute;
    top: 0;
    left: -35px;
    font-size: 28px;
    color: #111;
    font-weight: 400;
    line-height: 1;
}

/* 요금제 박스 공통 스타일 */
.plan_box {
    position: absolute;
    border-radius: 8px;
    padding: 20px 60px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.plan_box h3 {
    font-size: 24px;
    font-weight: 800;
    margin-top: 0;
    margin-bottom: 18px;
    color: #000;
    line-height: 40px;
}

.plan_box img {
    height: 100%;
    margin-left: 10px;
    vertical-align: middle;
}

.plan_box p {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    color: #000;
    line-height: 1.5;
}

/* 개별 요금제 위치 */
#standard {
    left: 33px;
    bottom: 33px;
    background-color: #D4E8F8;
}

#custom {
    left: 322px;
    bottom: 196px;
    background-color: #BAE1FF;
}

#premium {
    /* left: 637px; */
    right: 0;
    bottom: 359px;
    background-color: #8CCFFF;
}

/* =========================================
   1. 모달 기본 리셋 (Reset)
   ========================================= */
#addressModal h1,
#addressModal div,
#addressModal input,
#addressModal button,
#addressModal i {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#addressModal button {
    background: transparent;
    border: none;
    cursor: pointer;
    vertical-align: middle;
    margin: 0;
    -webkit-appearance: none;
}

#addressModal input {
    font: inherit;
    margin: 0;
    line-height: normal;
    border-radius: 0;
    resize: none;
}

#addressModal input[type=button] {
    cursor: pointer;
    -webkit-appearance: none;
}

#addressModal input:focus {
    outline: none !important;
}

/* =========================================
      2. 그리드 시스템 (Grid System)
      ========================================= */
#service .row {
    display: flex;
}

#service .row>div:first-child {
    width: 100%;
}

#service .col-9,
#service .col-3 {
    position: relative;
    width: 100%;
    padding-right: 10px;
    padding-left: 10px;
}

#service .col-9 {
    flex: 0 0 75%;
    max-width: 75%;
}

#service .col-3 {
    flex: 0 0 25%;
    max-width: 25%;
}

/* =========================================
      3. 유틸리티 클래스 (Utilities)
      ========================================= */
/* Margin & Padding */
#service .mt-4 {
    margin-top: 16px !important;
}

#service .mx-n2 {
    margin-right: -8px !important;
    margin-left: -8px !important;
}

#service .mx-n2>.col-9,
#service .mx-n2>.col-3 {
    padding-right: 8px !important;
    padding-left: 8px !important;
}

#service .px-2 {
    padding-right: 8px !important;
    padding-left: 8px !important;
}

/* Width & Display */
#service .w-100 {
    width: 100% !important;
}

#service .d-none {
    display: none !important;
}

#service .justify-content-center {
    justify-content: center !important;
}

/* =========================================
      4. 버튼 스타일 (Buttons)
      ========================================= */
#service .btn {
    width: 100%;
    max-width: 178px;
    height: 53px;
    border-radius: 26.5px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
    transition: all 300ms ease-out;
    position: relative;
}

#service .btn.type--1 {
    background-color: #F47D20;
    color: #fff;
}

@media all and (min-width: 1024.02px) {
    #service .btn.type--1:hover {
        background-color: #262729;
    }
}

#service .btn.size--3 {
    font-size: 20px;
    width: 208px;
    max-width: 100%;
    height: 58px;
    border-radius: 116px;
    font-weight: 700;
}

/* =========================================
      5. 모달 오버레이 및 레이아웃 (Modal Overlay)
      ========================================= */
#service .modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
    padding: 16px;
}

#service .modal-overlay .modal-content.pop-address {
    max-width: 750px;
    width: 100%;
    margin: 0;
    position: relative;
    padding: 26px 46px;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 20px;
}

/* 닫기 버튼 */
#service .modal-overlay .mfp-close {
    position: absolute;
    top: 26px;
    right: 44px;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    background: none;
    border: none;
    width: 44px;
    height: 44px;
    line-height: 44px;
    text-decoration: none;
    text-align: center;
    opacity: 0.65;
    padding: 0 0 18px 10px;
    font-style: normal;
    font-family: Arial, Baskerville, monospace;
    z-index: 1046;
    box-shadow: none;
    touch-action: manipulation;
    -webkit-appearance: none;
    display: block;
    outline: none;
}

#service .modal-overlay .mfp-close:hover,
#service .modal-overlay .mfp-close:focus {
    opacity: 1;
}

#service .pop-address .mfp-close i {
    display: block;
    line-height: 1;
    font-style: normal;
}

/* =========================================
      6. 주소 검색 팝업 내부 스타일 (Popup Content)
      ========================================= */
#service .pop-address {
    max-width: 710px;
}

#service .pop-address .popup__title {
    font-size: 38px;
    line-height: 51px;
    color: #262729;
    font-weight: 700;
    margin-bottom: 0;
}

#service .pop-address .popup-body {
    padding-top: 24px;
    position: relative;
}

/* 입력 필드 */
#service .pop-address input {
    font-size: 18px;
    height: 58px;
    background-color: #F1F1F1;
    border-radius: 6px;
    padding-left: 15px;
    width: 100%;
    font-weight: 400;
    max-width: 428px;
    border: none;
}

#service .pop-address input::placeholder {
    color: #f47d20;
}

#service .pop-address input.active {
    background-color: #F1F1F1!important;
}

/* 1. 기본 상태 및 포커스 상태 배경 고정 */
#service .pop-address input input {
    background-color: #f5f5f5 !important;
}

/* 2. 글자가 입력되거나 자동완성 감지 시 배경색 강제 유지 (핵심) */
#service .pop-address input:-webkit-autofill,
#service .pop-address input:-webkit-autofill:hover,
#service .pop-address input:-webkit-autofill:focus,
#service .pop-address input:-webkit-autofill:active {
    /* 배경색을 투명하게 만드는 트릭 */
    -webkit-text-fill-color: #000 !important; /* 글자색 검정 */
    -webkit-box-shadow: 0 0 0px 1000px #F1F1F1 inset !important; /* 배경을 회색 그림자로 덮음 */
    box-shadow: 0 0 0px 1000px #F1F1F1 inset !important;
    transition: background-color 5000s ease-in-out 0s;
}


/* =========================================
      7. 주소 결과 리스트 영역 (Address List)
      ========================================= */
#service .address-area {
    margin-top: 40px;
}

#service .address-area__head {
    font-size: 18px;
    line-height: 1;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 58px;
    background-color: #FEEFE3;
    font-weight: 800;
}

#service .address-area-list>.scrollbar-inner {
    max-height: 500px;
}

#service .address-area-list .item {
    padding: 8.5px 0 8.5px 15px;
    border-bottom: 1px solid #c0c0c0;
    font-size: 18px;
    line-height: 40px;
}

#service .modal-overlay .pop-address .address-area-list .scrollbar-inner {
    max-height: 300px;
    overflow-y: auto;
}

/* =========================================
      8. 커스텀 스크롤바 (Custom Scrollbar)
      ========================================= */
#service .scroll-wrapper {
    overflow: hidden !important;
    padding: 0;
    position: relative;
}

#service .scroll-wrapper>.scroll-content {
    border: none !important;
    box-sizing: content-box !important;
    height: auto;
    left: 0;
    margin: 0;
    max-height: none;
    max-width: none !important;
    overflow: scroll !important;
    padding: 0;
    position: relative !important;
    top: 0;
    width: auto !important;
}

#service .scroll-wrapper>.scroll-content::-webkit-scrollbar {
    height: 0;
    width: 0;
}

#service .scroll-element {
    display: none;
    box-sizing: content-box;
}

#service .scroll-element div {
    box-sizing: content-box;
}

#service .scroll-element.scroll-y.scroll-scrolly_visible {
    display: block;
}

#service .scrollbar-inner>.scroll-element {
    border: none;
    margin: 0;
    padding: 0;
    position: absolute;
    z-index: 10;
}

#service .scrollbar-inner>.scroll-element.scroll-y {
    height: 100%;
    right: 2px;
    top: 0;
    width: 8px;
}

#service .scrollbar-inner>.scroll-element .scroll-element_outer {
    overflow: hidden;
    border-radius: 8px;
}

#service .scrollbar-inner>.scroll-element .scroll-element_track,
#service .scrollbar-inner>.scroll-element .scroll-bar {
    border-radius: 8px;
}

#service .scrollbar-inner>.scroll-element .scroll-element_track {
    background-color: #e0e0e0;
}

#service .scrollbar-inner>.scroll-element .scroll-bar {
    background-color: #c2c2c2;
}

/* =========================================
      9. 반응형 미디어 쿼리 (Responsive)
      ========================================= */
@media all and (max-width: 576px) {
    #service .pop-address input {
        height: 54.86px;
        font-size: 16px;
    }

    #service .pop-address .btn.size--3 {
        font-size: 18.29px;
        height: 57.14px;
    }

    #service .pop-address .popup__title {
        font-size: 24px;
    }
}