﻿* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Pretendard";
}

li {
    list-style: none;
    width: 100%;
}

a {
    text-decoration: none;
}

.main-all {
    margin: 0 auto;
    width: 75%;
    min-height: calc(100% - 80px);
}

.wrap {
    position: relative;
    width: 100%;
    padding-bottom: 100px;
}

/* 방문절차 */
.step-all {
    margin: 0 auto;
    border: 2px solid #C3CBD9;
    width: 80%;
    padding: 3% 0;
    position: relative;
}

.step-title {
    text-align: center;
    font-size: 22px;
    color: #355482;
    font-weight: 700;
}

/* 절차 라인 */
.step-line {
    position: absolute;
    width: 75%;
    top: 58%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -9;
    border: 1px solid #355482;
}

/* 절차 */
.step-list {
    padding-top: 4%;
    display: flex;
    justify-content: space-around;
    width: 100%;
    font-weight: 500;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-title {
    font-size: 20px;
}

.step-circle {
    background-color: #355482;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-list-title {
    padding-top: 8%;
    font-size: 20px;
    font-weight: 500;
    color: #707070;
}

/* 메인 셀렉트 */
.main_select {
    margin: 0 auto;
    width: 60%;
    height: 230px;
    padding: 6% 0;
    overflow: hidden;
    margin-top: 20px;
}

.ss-main {
    height: 60px;
    border: 2px solid #355482;
    border-radius: 10px;
}

.ss-main .ss-values .ss-placeholder {
    margin-left: 12px;
}

/* 기존 화살표 아이콘 숨기기 */
.ss-main .ss-arrow {
    display: none !important;
}

/* 검색 아이콘을 위한 새로운 클래스 */
.search-icon {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    pointer-events: none;
}

/* 선택 영역 패딩 조정 (필요한 경우) */
.ss-main .ss-values {
    padding-right: 40px;
}

.ss-content .ss-search input {
    height: 45px;
}

.ss-content .ss-list .ss-option {
    padding: 12px 10px;
}

@media (max-width: 768px) {
    .main-all {
        width: 95%;
    }

    /* 메인 로고 */
    .main-logo {
        height: 180px;
        width: 90%;
    }

    /* 방문절차 */
    .step-all {
        width: 95%;
    }

    /* 절차 라인 */
    .step-line {
        top: 55%;
    }

    .step-circle {
        width: 55px;
        height: 55px;
    }

    .step-list-title {
        font-size: 16px;
    }

    .main_select {
        width: 80%;
    }

    /* 메인 셀렉트 */
    .main_select {
        margin-top: 60px;
        height: 210px;
    }
}
