/********** error **********/
.error_page_wrap {
    width: 100%;
    height: 100vh;
}
.error_page_wrap .error_inner {
    height: 100%;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.error_page_wrap .error_inner i {
    display: block;
    font-size: 60px;
    color: #e61f2c;
}
.error_page_wrap .error_inner h2 {
    text-align: center;
    font-weight: 800;
    font-size: 24px;
    line-height: 32px;
}
.error_page_wrap .error_inner p {
    text-align: center;
    font-size: 16px;
    line-height: 22px;
}
.error_page_wrap .error_inner .btn_group {
    display: flex;
    gap: 8px;
}
.error_page_wrap .error_inner .btn_group .btn {
    width: 135px;
    font-size: 16px;
    height: 48px;
}

/********** login **********/
.login_wrap {
    background: linear-gradient(0deg, #e93678 0%, #f06062 50%, #dc2935 100%), #fff5f5;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    text-align: center;
    flex-direction: column;
    gap: 20px;
    padding: 40px 20px;
}
.login_wrap .lg_title {
    font-size: 36px;
    font-weight: 700;
    font-family: "Paperlogy", "맑은 고딕", "돋움", Dotum, Arial, sans-serif;
    color: #fff;
    margin-bottom: 4px;
}
.login_wrap .md_title {
    font-size: 18px;
    font-weight: 400;
    font-family: "Paperlogy", "맑은 고딕", "돋움", Dotum, Arial, sans-serif;
    color: #fff;
    line-height: 26px;
    margin-bottom: 44px;
}
.login_wrap img {
    display: block;
}
.login_wrap .question {
    color: #fff;
    margin: 34px auto 12px;
}
.login_wrap .btn {
    width: 100%;
    height: 56px;
    color: #fff;
}
.login_wrap .btn_login {
    background: #333;
}
.login_wrap .btn_regist {
    background: #ef6287;
}

/********** 회원가입 **********/
/* 동의 */
.agree_wrap .hd_title {
    padding: 0 20px 20px 20px;
    color: #333;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}
.agree_wrap .agree_item_wrap {
    display: flex;
    flex-direction: column;
}
.agree_wrap .item_all_check {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 16px 20px;
    background: #f5f5f5;
}
.agree_wrap .item_all_check .checks {
    width: calc(100% - 22px);
}
.agree_wrap .item_all_check i {
    color: #777;
    width: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.agree_wrap .agree_item_wrap {
    padding: 0 20px;
}
.agree_wrap .agree_item_wrap .item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 20px 0;
    border-bottom: 1px solid #e8e8e8;
}
.agree_wrap .agree_item_wrap .item .checks {
    width: calc(100% - 22px);
}
.agree_wrap .agree_item_wrap .item .checks label {
    width: 100%;
    display: block;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.agree_wrap .agree_item_wrap .item i {
    color: #777;
    width: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* 약관 상세 */
.agree_detail_wrap {
    display: flex;
    flex-direction: column;
    padding: 0 20px;
}
.agree_detail_wrap .title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}
.agree_detail_wrap .date {
    font-size: 14px;
    font-weight: 400;
    color: #777;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e8e8e8;
}
.agree_detail_wrap .agree_detail_content {
    line-height: 22px;
}

/* 본인인증 안내 */
.identity_verification_wrap .hd_title {
    padding: 0 20px 20px 20px;
    color: #333;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}
.identity_verification_wrap .text {
    font-size: 15px;
    line-height: 22px;
    color: #333;
    padding: 0 20px 0 32px;
    position: relative;
}
.identity_verification_wrap .text::before {
    content: "";
    position: absolute;
    top: 9px;
    left: 20px;
    width: 2px;
    height: 2px;
    border-radius: 2px;
    background: #333;
}

/********** header **********/
.main_header {
    position: fixed;
    top: 0;
    z-index: 50;
    width: 100%;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff5f5;
}
.main_header h1 {
    font-size: 20px;
    font-weight: 700;
    font-family: "Paperlogy", "맑은 고딕", "돋움", Dotum, Arial, sans-serif;
    color: #e61f2c;
}
.main_header .alarm_wrap {
    position: relative;
    cursor: pointer;
}
.main_header .alarm_wrap img {
    display: block;
}
.main_header .alarm_wrap span {
    width: 5px;
    height: 5px;
    background: #e61f2c;
    border-radius: 10px;
    position: absolute;
    top: 0;
    right: 0;
}

/********** sub header **********/
.sub_header {
    position: fixed;
    top: 0;
    z-index: 50;
    background: #fff;
    display: flex;
    align-items: center;
    width: 100%;
}
.sub_header i {
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sub_header .title {
    width: calc(100% - 100px);
    text-align: center;
    line-height: 20px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.sub_header .right {
    width: 50px;
    height: 50px;
}

/********** main footer **********/
.footer {
    position: fixed;
    bottom: 0;
    z-index: 50;
    width: 100%;
    display: flex;
    align-items: center;
    background: #fff;
    padding: 12px 0;
    border-top: 1px solid #efefef;
}
.footer a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 25%;
}
.footer a p {
    color: #999;
    font-size: 13px;
    font-weight: 600;
    line-height: 15px;
}
.footer a.active p {
    color: #e61f2c;
    font-weight: 700;
}

/********** sub footer **********/
.btn_footer {
    position: fixed;
    bottom: 0;
    z-index: 50;
    width: 100%;
    background: #fff;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.btn_footer .btn {
    width: 100%;
    height: 48px;
}
.btn_footer .btn_outline_gray {
    min-width: 100px;
    width: 100px;
}
.btn_footer_half .btn {
    width: 50%;
}
.btn_multiple_group .btn {
    min-width: calc(33.3333% - 6px);
    width: calc(33.3333% - 6px);
}

/********** main **********/
.main_wrap {
    padding: 74px 0 120px;
    min-height: 100vh;
}

.main_wrap .login_none_wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
    padding: 0 20px;
}
.main_wrap .login_none_wrap a {
    display: flex;
    align-items: center;
    gap: 4px;
}
.main_wrap .login_none_wrap a .login_title {
    font-size: 24px;
    font-weight: 700;
    color: #000;
}
.main_wrap .login_none_wrap a i {
    width: 24px;
    text-align: center;
    font-size: 18px;
    color: #555;
}
.main_wrap .login_none_wrap .login_text {
    font-size: 14px;
    color: #333;
}

.main_notice_wrap {
    padding: 0 20px;
}
.main_notice_wrap .main_notice_item {
    background: #ffefef;
    border-radius: 8px;
    padding: 16px;
}
.main_notice_wrap .item {
    display: flex;
    align-items: center;
    gap: 8px;
}
.main_notice_wrap .item .text_notice {
    color: #e61f2c;
    font-size: 15px;
    width: 26px;
}
.main_notice_wrap .item .title {
    color: #333;
    font-size: 15px;
    width: calc(100% - 58px);
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.main_notice_wrap .item i {
    color: #777;
    font-size: 16px;
    width: 16px;
    text-align: center;
}
.main_notice_wrap .main_notice_none {
    font-size: 15px;
    color: #777;
}

.main_card_view_wrap {
    margin-top: 24px;
    overflow: hidden;
}

/* 로그인전 카드 */
.main_card_view_wrap .card_view_none {
    padding: 0 20px;
}
.main_card_view_wrap .card_view_none .card_view_none_img_wrap {
    border-radius: 12px;
    overflow: hidden;
}
.main_card_view_wrap .card_view_none .card_view_none_img_wrap img {
    width: 100%;
    display: block;
}

/* 발급전 */
.main_card_view_wrap .card_issue_before_wrap {
    padding: 0 20px;
}
.main_card_view_wrap .card_issue_before_wrap .lg_title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 16px;
}
.main_card_view_wrap .card_issue_before_wrap .card_wrap {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    margin: 0 10px;
}
.main_card_view_wrap .card_issue_before_wrap .card_wrap::before {
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.6);
    position: absolute;
    top: 0;
    left: 0;
}
.main_card_view_wrap .card_issue_before_wrap .card_wrap img {
    display: block;
    width: 100%;
}
.main_card_view_wrap .card_issue_before_wrap .card_wrap .top_text {
    color: #eff68b;
    font-weight: 600;
    position: absolute;
    top: 20px;
    left: 24px;
}
.main_card_view_wrap .card_issue_before_wrap .card_wrap .btn {
    border-radius: 100px;
    width: 200px;
    height: 48px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* 재발급 */
.main_card_view_wrap .card_reissue_wrap.multiple {
    margin-bottom: 42px;
}
.main_card_view_wrap .card_reissue_wrap .lg_title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 16px;
    padding: 0 20px;
}
.main_card_view_wrap .main_card_reissue_swiper_wrap {
    position: relative;
}
.main_card_view_wrap .main_card_reissue_swiper {
    position: initial;
    overflow: visible;
}
.main_card_view_wrap .main_card_reissue_swiper .swiper-slide {
    position: relative;
    width: calc(100% - 60px);
}
.main_card_view_wrap .main_card_reissue_swiper .swiper-slide::before {
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.6);
    position: absolute;
    border-radius: 12px;
    top: 0;
    left: 0;
}
.main_card_view_wrap .main_card_reissue_swiper .swiper-slide img {
    width: 100%;
    display: block;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}
.main_card_view_wrap .main_card_reissue_swiper .swiper-slide .top_text {
    color: #eff68b;
    font-weight: 600;
    position: absolute;
    top: 20px;
    left: 24px;
}
.main_card_view_wrap .main_card_reissue_swiper .swiper-slide .btn {
    border-radius: 100px;
    width: 200px;
    height: 48px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.main_card_view_wrap .main_card_reissue_swiper .swiper-button-prev:after,
.main_card_view_wrap .main_card_reissue_swiper .swiper-button-next:after {
    display: none;
}
.main_card_view_wrap .main_card_reissue_swiper .swiper-button-prev,
.main_card_view_wrap .main_card_reissue_swiper .swiper-button-next {
    background: rgba(238, 238, 238, 0.8);
    border-radius: 100px;
    width: 32px;
    height: 32px;
    color: #777;
    margin-top: 0;
    top: 50%;
    transform: translateY(-50%);
}
.main_card_view_wrap .main_card_reissue_swiper .swiper-button-prev i,
.main_card_view_wrap .main_card_reissue_swiper .swiper-button-next i {
    font-size: 14px;
}
.main_card_view_wrap .main_card_reissue_swiper .swiper-button-prev {
    left: 16px;
}
.main_card_view_wrap .main_card_reissue_swiper .swiper-button-next {
    right: 16px;
}
.main_card_view_wrap .main_card_reissue_swiper .swiper-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    bottom: -18px;
}
.main_card_view_wrap .main_card_reissue_swiper .swiper-pagination .swiper-pagination-bullet {
    margin: 0;
    width: 6px;
    height: 6px;
    background: #e5e5e5;
    border-radius: 6px;
    opacity: 1;
}
.main_card_view_wrap .main_card_reissue_swiper .swiper-pagination .swiper-pagination-bullet-active {
    width: 16px;
    background: #555;
}

/* 발급후 */
.main_card_view_wrap .card_view_item_wrap.multiple {
    margin-bottom: 42px;
}
.main_card_view_wrap .card_view_item_wrap .lg_title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 16px;
    padding: 0 20px;
}
.main_card_view_wrap .main_card_swiper_wrap {
    position: relative;
}
.main_card_view_wrap .main_card_swiper {
    position: initial;
    overflow: visible;
}
.main_card_view_wrap .main_card_swiper .swiper-slide {
    position: relative;
    width: calc(100% - 60px);
    cursor: pointer;
}
.main_card_view_wrap .main_card_swiper .swiper-slide img {
    width: 100%;
    display: block;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}
.main_card_view_wrap .main_card_swiper .swiper-slide .text_wrap {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 0;
    justify-content: space-between;
    height: inherit;
    padding: 20px 24px;
}
.main_card_view_wrap .main_card_swiper .swiper-slide .text_wrap .top_text {
    color: #eff68b;
    font-weight: 600;
}
.main_card_view_wrap .main_card_swiper .swiper-slide .text_wrap .name {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}
.main_card_view_wrap .main_card_swiper .swiper-slide .text_wrap .date {
    display: flex;
    gap: 4px;
    font-size: 12px;
    color: #fff;
}
.main_card_view_wrap .main_card_swiper .swiper-slide .text_wrap .date span {
    color: #fbc3c1;
    font-weight: 400;
}
.main_card_view_wrap .main_card_swiper .swiper-slide .text_wrap .date_blue span {
    color: #c6e6ff;
}
.main_card_view_wrap .main_card_swiper .swiper-button-prev:after,
.main_card_view_wrap .main_card_swiper .swiper-button-next:after {
    display: none;
}
.main_card_view_wrap .main_card_swiper .swiper-button-prev,
.main_card_view_wrap .main_card_swiper .swiper-button-next {
    background: rgba(238, 238, 238, 0.8);
    border-radius: 100px;
    width: 32px;
    height: 32px;
    color: #777;
    margin-top: 0;
    top: 50%;
    transform: translateY(-50%);
}
.main_card_view_wrap .main_card_swiper .swiper-button-prev i,
.main_card_view_wrap .main_card_swiper .swiper-button-next i {
    font-size: 14px;
}
.main_card_view_wrap .main_card_swiper .swiper-button-prev {
    left: 16px;
}
.main_card_view_wrap .main_card_swiper .swiper-button-next {
    right: 16px;
}
.main_card_view_wrap .main_card_swiper .swiper-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    bottom: -18px;
}
.main_card_view_wrap .main_card_swiper .swiper-pagination .swiper-pagination-bullet {
    margin: 0;
    width: 6px;
    height: 6px;
    background: #e5e5e5;
    border-radius: 6px;
    opacity: 1;
}
.main_card_view_wrap .main_card_swiper .swiper-pagination .swiper-pagination-bullet-active {
    width: 16px;
    background: #555;
}

.main_banner_wrap {
    margin-top: 24px;
    padding: 0 20px;
}
.main_banner_wrap .swiper {
    border-radius: 8px;
}
.main_banner_wrap .swiper-slide img {
    display: block;
    width: 100%;
}
.main_banner_wrap .swiper-pagination-fraction {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 100px;
    height: 20px;
    width: 59px;
    right: 12px;
    left: auto;
    bottom: 12px;
    padding: 0 10px;
    font-size: 12px;
    line-height: 12px;
    color: #777;
    display: flex;
    align-items: center;
    justify-content: center;
}
.main_banner_wrap .swiper-pagination-fraction .swiper-pagination-current {
    font-weight: 600;
    color: #333;
    margin-right: 2px;
}
.main_banner_wrap .swiper-pagination-fraction .swiper-pagination-total {
    margin-left: 2px;
}
.main_banner_wrap .swiper .toggle_btn {
    position: absolute;
    bottom: 12px;
    z-index: 10;
    background: transparent;
    right: 75px;
}
.main_banner_wrap .swiper .toggle_btn img {
    display: block;
}

.main_service_wrap {
    display: flex;
    flex-direction: column;
    margin-top: 24px;
    padding: 0 20px;
}
.main_service_wrap .lg_title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
.main_service_wrap .lg_title p {
    font-size: 18px;
    font-weight: 700;
    color: #333;
}
.main_service_wrap .lg_title a {
    display: flex;
    align-items: center;
    color: #777;
    font-size: 12px;
}
.main_service_wrap .lg_title a i {
    width: 14px;
    text-align: center;
    font-size: 12px;
}
.main_service_wrap .tab_menu {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}
.main_service_wrap .tab_menu .btn_tab {
    padding: 8px 12px;
    border-radius: 100px;
    background: #f4f4f4;
    color: #777;
    font-size: 14px;
}
.main_service_wrap .tab_menu .btn_tab.active {
    color: #fff;
    background: #555;
}
.main_service_wrap .service_item_wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.main_service_wrap .service_item_wrap .item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 20px;
}
.main_service_wrap .service_item_wrap .item .status_wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}
.main_service_wrap .service_item_wrap .item .status_wrap .date {
    font-size: 13px;
    color: #777;
    font-weight: 600;
}
.main_service_wrap .service_item_wrap .item .title {
    color: #000;
    font-weight: 600;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.main_service_wrap .service_item_wrap .item .text {
    color: #333;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.main_service_wrap .service_none_wrap {
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
}
.main_service_wrap .service_none_wrap img {
    display: block;
}
.main_service_wrap .service_none_wrap p {
    font-size: 15px;
    color: #777;
}

/* 메인에서 발급받기 누른 후 카드 */
.issue_card_wrap {
    overflow: hidden;
}
.issue_card_wrap .top_content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 32px 20px 96px;
    background: #f2f2f2;
}
.issue_card_wrap .top_content .hd_title {
    font-size: 24px;
    font-weight: 700;
    color: #000;
}
.issue_card_wrap .top_content .sub_title {
    font-size: 15px;
    color: #333;
    margin-bottom: 8px;
}
.issue_card_wrap .top_content .text_badge {
    background: #fff;
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 13px;
    color: #555;
}
.issue_card_wrap .top_content .sub_text {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #333;
}
.issue_card_wrap .issue_card_content {
    position: relative;
    top: -56px;
}
.issue_card_wrap .issue_card_swiper {
    position: initial;
    overflow: visible;
}
.issue_card_wrap .issue_card_swiper .swiper-slide {
    position: relative;
    width: calc(100% - 60px);
}
.issue_card_wrap .issue_card_swiper .swiper-slide img {
    width: 100%;
    display: block;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}
.issue_card_wrap .issue_card_swiper .swiper-slide .top_text {
    color: #eff68b;
    font-weight: 600;
    position: absolute;
    top: 20px;
    left: 24px;
}
.issue_card_wrap .issue_card_swiper .swiper-button-prev:after,
.issue_card_wrap .issue_card_swiper .swiper-button-next:after {
    display: none;
}
.issue_card_wrap .issue_card_swiper .swiper-button-prev,
.issue_card_wrap .issue_card_swiper .swiper-button-next {
    background: rgba(238, 238, 238, 0.8);
    border-radius: 100px;
    width: 32px;
    height: 32px;
    color: #777;
    margin-top: 0;
    top: 50%;
    transform: translateY(-50%);
}
.issue_card_wrap .issue_card_swiper .swiper-button-prev i,
.issue_card_wrap .issue_card_swiper .swiper-button-next i {
    font-size: 14px;
}
.issue_card_wrap .issue_card_swiper .swiper-button-prev {
    left: 16px;
}
.issue_card_wrap .issue_card_swiper .swiper-button-next {
    right: 16px;
}
.issue_card_wrap .issue_card_swiper .swiper-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    bottom: -18px;
}
.issue_card_wrap .issue_card_swiper .swiper-pagination.swiper-pagination-lock {
    display: none;
}
.issue_card_wrap .issue_card_swiper .swiper-pagination .swiper-pagination-bullet {
    margin: 0;
    width: 6px;
    height: 6px;
    background: #e5e5e5;
    border-radius: 6px;
    opacity: 1;
}
.issue_card_wrap .issue_card_swiper .swiper-pagination .swiper-pagination-bullet-active {
    width: 16px;
    background: #555;
}

/********** content common **********/
.content_area_wrap {
    padding: 70px 0 112px;
    min-height: 100vh;
}
.content_area_wrap_02 {
    padding: 50px 0 112px;
}
.content_area_wrap_03 {
    padding: 50px 0 40px;
}
.content_header_none {
    padding: 20px 0 120px;
    min-height: 100vh;
}
.content_area_footer_none {
    padding: 70px 0 40px;
}

/********** 회원가입 발급받기 카드뷰 **********/
/* 1단계 - 발급받기 설명 카드 */
.regist_issue_card_wrap {
    overflow: hidden;
}
.regist_issue_card_wrap .top_content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 32px 20px 96px;
    background: #f2f2f2;
}
.regist_issue_card_wrap .top_content .hd_title {
    font-size: 24px;
    font-weight: 700;
    color: #000;
}
.regist_issue_card_wrap .top_content .sub_title {
    font-size: 15px;
    color: #333;
    margin-bottom: 8px;
}
.regist_issue_card_wrap .top_content .text_badge {
    background: #fff;
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 13px;
    color: #555;
}
.regist_issue_card_wrap .top_content .sub_text {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #333;
}
.regist_issue_card_wrap .regist_issue_card_content {
    position: relative;
    top: -56px;
}
.regist_issue_card_wrap .regist_issue_card_swiper {
    position: initial;
    overflow: visible;
}
.regist_issue_card_wrap .regist_issue_card_swiper .swiper-slide {
    position: relative;
    width: calc(100% - 60px);
}
.regist_issue_card_wrap .regist_issue_card_swiper .swiper-slide img {
    width: 100%;
    display: block;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}
.regist_issue_card_wrap .regist_issue_card_swiper .swiper-slide .top_text {
    color: #eff68b;
    font-weight: 600;
    position: absolute;
    top: 20px;
    left: 24px;
}
.regist_issue_card_wrap .regist_issue_card_swiper .swiper-button-prev:after,
.regist_issue_card_wrap .regist_issue_card_swiper .swiper-button-next:after {
    display: none;
}
.regist_issue_card_wrap .regist_issue_card_swiper .swiper-button-prev,
.regist_issue_card_wrap .regist_issue_card_swiper .swiper-button-next {
    background: rgba(238, 238, 238, 0.8);
    border-radius: 100px;
    width: 32px;
    height: 32px;
    color: #777;
    margin-top: 0;
    top: 50%;
    transform: translateY(-50%);
}
.regist_issue_card_wrap .regist_issue_card_swiper .swiper-button-prev i,
.regist_issue_card_wrap .regist_issue_card_swiper .swiper-button-next i {
    font-size: 14px;
}
.regist_issue_card_wrap .regist_issue_card_swiper .swiper-button-prev {
    left: 16px;
}
.regist_issue_card_wrap .regist_issue_card_swiper .swiper-button-next {
    right: 16px;
}
.regist_issue_card_wrap .regist_issue_card_swiper .swiper-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    bottom: -18px;
}
.regist_issue_card_wrap .regist_issue_card_swiper .swiper-pagination.swiper-pagination-lock {
    display: none;
}
.regist_issue_card_wrap .regist_issue_card_swiper .swiper-pagination .swiper-pagination-bullet {
    margin: 0;
    width: 6px;
    height: 6px;
    background: #e5e5e5;
    border-radius: 6px;
    opacity: 1;
}
.regist_issue_card_wrap .regist_issue_card_swiper .swiper-pagination .swiper-pagination-bullet-active {
    width: 16px;
    background: #555;
}

/* 2단계 - 다대구 안내 */
.dadaegu_wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
}
.dadaegu_wrap .lg_title {
    font-size: 20px;
    font-weight: 700;
    line-height: 26px;
    color: #000;
    margin-bottom: 16px;
    width: 100%;
}
.dadaegu_wrap .md_title {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #333;
    margin-bottom: 80px;
    width: 100%;
}
.dadaegu_wrap .next_title {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #333;
    margin-bottom: 16px;
    width: 100%;
}
.dadaegu_wrap .next_title_02 {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #333;
    margin-bottom: 80px;
    width: 100%;
}
.dadaegu_wrap img {
    display: block;
}

/* 3단계. 4단계 - 로딩 */
.issue_loading_wrap {
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.issue_loading_wrap .loading_lottie {
    max-width: 340px;
}
.issue_loading_wrap .text {
    font-weight: 600;
    color: #555;
}
.issue_loading_wrap .text_title {
    font-weight: 700;
    font-size: 18px;
    color: #333;
}
.issue_loading_wrap .text_02 {
    font-weight: 600;
    line-height: 22px;
    color: #555;
    text-align: center;
    margin-top: 8px;
}

/* 5단계 - 발급 완료 */
.regist_issue_card_wrap .top_content_02 {
    gap: 0;
}
.regist_issue_card_wrap .top_content_02 .hd_title {
    margin-bottom: 16px;
}
.regist_issue_card_wrap .top_content .sub_title_02 {
    font-size: 15px;
    color: #333;
    line-height: 20px;
}
.regist_issue_card_wrap .regist_issue_card_swiper .swiper-slide .text_wrap {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 0;
    justify-content: space-between;
    height: inherit;
    padding: 20px 24px;
}
.regist_issue_card_wrap .regist_issue_card_swiper .swiper-slide .text_wrap .top_text {
    color: #eff68b;
    font-weight: 600;
    position: relative;
    top: 0;
    left: 0;
}
.regist_issue_card_wrap .regist_issue_card_swiper .swiper-slide .text_wrap .name {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}
.regist_issue_card_wrap .regist_issue_card_swiper .swiper-slide .text_wrap .date {
    display: flex;
    gap: 4px;
    font-size: 12px;
    color: #fff;
}
.regist_issue_card_wrap .regist_issue_card_swiper .swiper-slide .text_wrap .date span {
    color: #fbc3c1;
    font-weight: 400;
}
.regist_issue_card_wrap .regist_issue_card_swiper .swiper-slide .text_wrap .date_blue span {
    color: #c6e6ff;
}

/* 6단계 - 간편 비밀번호 등록, 비밀번호 인증 공통 */
.password_regist_wrap {
    padding: 52px 30px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: calc(100vh - 110px);
    gap: 50px;
}
.password_regist_wrap .hd_title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}
.password_regist_wrap .text_wrap {
    display: flex;
    flex-direction: column;
}
.password_regist_wrap .text_wrap .text {
    color: #777;
    text-align: center;
    line-height: 24px;
}
.password_regist_wrap .text_wrap .text.red {
    color: #e61f2c;
}
.password_regist_wrap .text_wrap .text.blue {
    color: #0080e6;
}
.password_regist_wrap .circle_wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 60px;
}
.password_regist_wrap .circle_wrap .gray {
    width: 18px;
    height: 18px;
    border-radius: 18px;
    background: #e5e5e5;
}
.password_regist_wrap .circle_wrap .red {
    background: #e61f2c;
}
.password_regist_wrap .pw_forget {
    font-size: 14px;
    color: #555;
    text-decoration: underline;
    text-underline-offset: 3px;
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 60px;
    cursor: pointer;
}
.password_regist_wrap .num_wrap {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
.password_regist_wrap .num_wrap button {
    width: 33.3333%;
    height: 80px;
    font-size: 28px;
    font-weight: 600;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}
.password_regist_wrap .num_wrap button img {
    display: block;
}

/********** alarm **********/
.alarm_list_wrap .total_wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}
.alarm_list_wrap .total_wrap .num {
    font-size: 15px;
    color: #555;
}
.alarm_list_wrap .total_wrap .num span {
    color: #555;
    font-weight: 700;
}
.alarm_list_wrap .total_wrap button {
    width: 58px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    color: #333;
    font-size: 14px;
    border-radius: 4px;
}
.alarm_list_wrap .alarm_list_item_wrap {
    display: flex;
    flex-direction: column;
}
.alarm_list_wrap .alarm_list_item_wrap .item {
    display: flex;
    flex-direction: column;
    padding: 20px;
    border-bottom: 1px solid #e8e8e8;
    cursor: pointer;
}
.alarm_list_wrap .alarm_list_item_wrap .item .text_wrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}
.alarm_list_wrap .alarm_list_item_wrap .item .text_wrap .date {
    font-size: 12px;
    line-height: 12px;
    color: #777;
}
.alarm_list_wrap .alarm_list_item_wrap .item .text_wrap .title {
    font-size: 16px;
    line-height: 22px;
    color: #000;
}
.alarm_list_wrap .alarm_list_item_wrap .item .text_wrap .text {
    font-size: 14px;
    line-height: 20px;
    color: #333;
}
.alarm_list_wrap .alarm_list_item_wrap .text_read .text_wrap .date {
    color: #999;
}
.alarm_list_wrap .alarm_list_item_wrap .text_read .text_wrap .title {
    color: #999;
}
.alarm_list_wrap .alarm_list_item_wrap .text_read .text_wrap .text {
    color: #999;
}

.alarm_list_wrap .alarm_list_item_wrap .item_check_on {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto auto;
    column-gap: 10px;
    row-gap: 8px;
}
.alarm_list_wrap .alarm_list_item_wrap .item_check_on .text_wrap {
    display: contents;
}
.alarm_list_wrap .alarm_list_item_wrap .item_check_on .checks {
    grid-column: 1;
    grid-row: 2;
    align-self: center;
    justify-self: center;
    transform: translateY(1px);
}
.alarm_list_wrap .alarm_list_item_wrap .item_check_on .checks input[type="checkbox"] + label {
    padding-left: 0;
    width: 20px;
    height: 20px;
    line-height: 20px;
}
.alarm_list_wrap .alarm_list_item_wrap .item_check_on .date {
    grid-column: 2;
    grid-row: 1;
}
.alarm_list_wrap .alarm_list_item_wrap .item_check_on .title {
    grid-column: 2;
    grid-row: 2;
}
.alarm_list_wrap .alarm_list_item_wrap .item_check_on .text {
    grid-column: 2;
    grid-row: 3;
}

.alarm_list_wrap .alarm_list_none {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    margin-top: 160px;
}
.alarm_list_wrap .alarm_list_none img {
    display: block;
}
.alarm_list_wrap .alarm_list_none .text {
    color: #777;
}

/********** 시민카드 상세 **********/
.card_detail_wrap {
    overflow: hidden;
}
.card_detail_swiper_wrap {
    position: relative;
}
.card_detail_swiper_wrap .card_detail_swiper {
    position: initial;
    overflow: visible;
}
.card_detail_swiper_wrap .card_detail_swiper .swiper-slide {
    position: relative;
    width: calc(100% - 60px);
    cursor: pointer;
}
.card_detail_swiper_wrap .card_detail_swiper .swiper-slide img {
    width: 100%;
    display: block;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}
.card_detail_swiper_wrap .card_detail_swiper .swiper-slide .text_wrap {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 0;
    justify-content: space-between;
    height: inherit;
    padding: 20px 24px;
}
.card_detail_swiper_wrap .card_detail_swiper .swiper-slide .text_wrap .top_text {
    color: #eff68b;
    font-weight: 600;
}
.card_detail_swiper_wrap .card_detail_swiper .swiper-slide .text_wrap .name {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}
.card_detail_swiper_wrap .card_detail_swiper .swiper-slide .text_wrap .date {
    display: flex;
    gap: 4px;
    font-size: 12px;
    color: #fff;
}
.card_detail_swiper_wrap .card_detail_swiper .swiper-slide .text_wrap .date span {
    color: #fbc3c1;
    font-weight: 400;
}
.card_detail_swiper_wrap .card_detail_swiper .swiper-slide .text_wrap .date_blue span {
    color: #c6e6ff;
}
.card_detail_swiper_wrap .card_detail_swiper .swiper-button-prev:after,
.card_detail_swiper_wrap .card_detail_swiper .swiper-button-next:after {
    display: none;
}
.card_detail_swiper_wrap .card_detail_swiper .swiper-button-prev,
.card_detail_swiper_wrap .card_detail_swiper .swiper-button-next {
    background: rgba(238, 238, 238, 0.8);
    border-radius: 100px;
    width: 32px;
    height: 32px;
    color: #777;
    margin-top: 0;
    top: 50%;
    transform: translateY(-50%);
}
.card_detail_swiper_wrap .card_detail_swiper .swiper-button-prev i,
.card_detail_swiper_wrap .card_detail_swiper .swiper-button-next i {
    font-size: 14px;
}
.card_detail_swiper_wrap .card_detail_swiper .swiper-button-prev {
    left: 16px;
}
.card_detail_swiper_wrap .card_detail_swiper .swiper-button-next {
    right: 16px;
}
.card_detail_swiper_wrap .card_detail_swiper .swiper-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    bottom: -18px;
}
.card_detail_swiper_wrap .card_detail_swiper .swiper-pagination .swiper-pagination-bullet {
    margin: 0;
    width: 6px;
    height: 6px;
    background: #e5e5e5;
    border-radius: 6px;
    opacity: 1;
}
.card_detail_swiper_wrap .card_detail_swiper .swiper-pagination .swiper-pagination-bullet-active {
    width: 16px;
    background: #555;
}
.card_detail_swiper_wrap .card_detail_swiper .swiper-pagination.swiper-pagination-lock {
    display: none;
}
.card_detail_text_wrap {
    padding: 0 20px;
    margin-top: 50px;
}
.card_detail_wrap.only_slide .card_detail_text_wrap {
    margin-top: 32px;
}
.card_detail_text_wrap .lg_title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}
.card_detail_text_wrap .info_wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 20px;
}
.card_detail_text_wrap .info_wrap .info_item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}
.card_detail_text_wrap .info_wrap .info_item span:first-child {
    font-size: 13px;
    color: #777;
    width: 45px;
    line-height: 18px;
    padding-top: 2px;
}
.card_detail_text_wrap .info_wrap .info_item span:last-child {
    font-size: 15px;
    color: #333;
    width: calc(100% - 65px);
}
.card_detail_text_wrap .date_bottom_wrap {
    margin-top: 20px;
}
.card_detail_text_wrap .date_bottom_wrap p {
    font-size: 13px;
    color: #555;
    line-height: 18px;
}

/********** 제출이력 **********/
.submit_list_wrap {
    padding: 0 20px;
}
.submit_list_wrap .total_wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.submit_list_wrap .total_wrap .num {
    font-size: 15px;
    color: #555;
}
.submit_list_wrap .total_wrap .num span {
    color: #555;
    font-weight: 700;
}
.submit_list_wrap .submit_list_none {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    margin-top: 160px;
}
.submit_list_wrap .submit_list_none img {
    display: block;
}
.submit_list_wrap .submit_list_none .text {
    display: flex;
    flex-direction: column;
}
.submit_list_wrap .submit_list_none .text span {
    line-height: 22px;
    color: #777;
    text-align: center;
}
.submit_list_wrap .submit_list_item_wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.submit_list_wrap .submit_list_item_wrap .item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 20px;
}
.submit_list_wrap .submit_list_item_wrap .item .lg_title {
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}
.submit_list_wrap .submit_list_item_wrap .item .text {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}
.submit_list_wrap .submit_list_item_wrap .item .text .label {
    font-size: 13px;
    color: #777;
    width: 45px;
    line-height: 18px;
    padding-top: 2px;
}
.submit_list_wrap .submit_list_item_wrap .item .text .detail {
    width: calc(100% - 65px);
    font-size: 15px;
    color: #333;
}
.submit_list_wrap .submit_list_item_wrap .item .text .detail .time {
    color: #777;
}
.submit_list_wrap .btn_more {
    width: 120px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    border-radius: 4px;
    border: 1px solid #ddd;
    background: #fff;
    margin-top: 12px;
}
.submit_list_wrap .btn_more p {
    color: #000;
    font-size: 14px;
}
.submit_list_wrap .btn_more span {
    color: #777;
    font-size: 14px;
    margin-right: 5px;
}
.submit_list_wrap .btn_more i {
    width: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
    transform: translateY(1px);
}

/********** 통합검색 **********/
.search_list_wrap .hd_title {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    padding: 0 20px;
}
.search_list_wrap .new_list_content {
    margin-top: 24px;
    padding: 0 20px;
}
.search_list_wrap .new_list_wrap .swiper-slide {
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    padding: 20px;
    width: calc(100% - 40px);
}
.search_list_wrap .new_list_wrap .swiper-slide .explain {
    font-size: 14px;
    color: #333;
}
.search_list_wrap .new_list_wrap .swiper-slide .status_wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}
.search_list_wrap .new_list_wrap .swiper-slide .status_wrap .date {
    font-size: 13px;
    color: #777;
    font-weight: 600;
}
.search_list_wrap .new_list_wrap .swiper-slide .title {
    font-size: 18px;
    color: #000;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.search_list_wrap .new_list_wrap .swiper-pagination-fraction {
    top: 23px;
    left: auto;
    right: 12px;
    font-size: 12px;
    line-height: 12px;
    color: #777;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    height: fit-content;
}
.search_list_wrap .search_form_wrap {
    margin-top: 24px;
    padding: 0 20px;
}
.search_list_wrap .search_form_wrap .select_content {
    display: flex;
    gap: 8px;
}
.search_list_wrap .search_form_wrap .select_content .select_wrap {
    width: calc(100% - 4px);
}
.search_list_wrap .search_form_wrap .search_input_wrap {
    position: relative;
    margin-top: 8px;
}
.search_list_wrap .search_form_wrap .search_input_wrap input {
    width: 100%;
    padding: 0 40px 0 16px;
}
.search_list_wrap .search_form_wrap .search_input_wrap i {
    color: #777;
    position: absolute;
    top: 0;
    right: 0;
    font-size: 16px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.search_list_wrap .search_form_wrap .search_btn_group {
    display: flex;
    gap: 8px;
    padding: 8px 0;
    margin-top: 20px;
}
.search_list_wrap .search_form_wrap .search_btn_group .btn_outline_gray {
    min-width: 100px;
    font-size: 15px;
}
.search_list_wrap .search_form_wrap .search_btn_group .btn_dark {
    min-width: calc(100% - 108px);
    font-size: 15px;
}
.search_list_wrap .search_list_item_wrap {
    margin-top: 24px;
}
.search_list_wrap .search_list_item_wrap .total_wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    margin-bottom: 16px;
}
.search_list_wrap .search_list_item_wrap .total_wrap .num {
    font-size: 15px;
    color: #555;
}
.search_list_wrap .search_list_item_wrap .total_wrap .num span {
    color: #555;
    font-weight: 700;
}
.search_list_wrap .search_list_item_wrap .tab_menu {
    display: flex;
    gap: 8px;
    padding: 0 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e8e8e8;
}
.search_list_wrap .search_list_item_wrap .tab_menu .btn_tab {
    padding: 8px 12px;
    border-radius: 100px;
    background: #f4f4f4;
    color: #777;
    font-size: 14px;
}
.search_list_wrap .search_list_item_wrap .tab_menu .btn_tab.active {
    color: #fff;
    background: #555;
}
.search_list_wrap .search_list_item_wrap .service_item_wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.search_list_wrap .search_list_item_wrap .service_item_wrap .item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-bottom: 1px solid #e8e8e8;
    padding: 20px;
}
.search_list_wrap .search_list_item_wrap .service_item_wrap .item .status_wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}
.search_list_wrap .search_list_item_wrap .service_item_wrap .item .status_wrap .date {
    font-size: 13px;
    color: #777;
    font-weight: 600;
}
.search_list_wrap .search_list_item_wrap .service_item_wrap .item .title {
    color: #000;
    font-weight: 600;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.search_list_wrap .search_list_item_wrap .service_item_wrap .item .text {
    color: #333;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.search_list_wrap .search_list_item_wrap .service_list_none {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    margin-top: 40px;
}
.search_list_wrap .search_list_item_wrap .service_list_none img {
    display: block;
}
.search_list_wrap .search_list_item_wrap .service_list_none .text {
    color: #777;
}
.search_list_wrap .search_list_item_wrap .search_list_none {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    margin-top: 40px;
}
.search_list_wrap .search_list_item_wrap .search_list_none img {
    display: block;
}
.search_list_wrap .search_list_item_wrap .search_list_none .text {
    color: #777;
}

/********** 서비스 상세 **********/
.civil_service_info_wrap .tab_menu {
    display: flex;
}
.civil_service_info_wrap .tab_menu .tab_item {
    padding: 14px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    color: #777;
    font-size: 15px;
    width: 33.3333%;
    background: transparent;
    border-bottom: 1px solid #e8e8e8;
}
.civil_service_info_wrap .tab_menu .tab_item.active {
    color: #e61f2c;
    font-weight: 600;
    border-bottom: 2px solid #e61f2c;
}
/* 기본정보 */
.civil_service_info_wrap .basic_info_wrap {
    padding: 24px 20px 0;
}
.civil_service_info_wrap .basic_info_wrap .status_wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}
.civil_service_info_wrap .basic_info_wrap .status_wrap .date {
    font-size: 13px;
    color: #777;
    font-weight: 600;
}
.civil_service_info_wrap .basic_info_wrap .title {
    color: #000;
    font-weight: 600;
    margin-bottom: 12px;
}
.civil_service_info_wrap .basic_info_wrap .text {
    color: #333;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 20px;
}
.civil_service_info_wrap .basic_info_wrap .explain_wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.civil_service_info_wrap .basic_info_wrap .explain {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.civil_service_info_wrap .basic_info_wrap .explain .label {
    font-size: 13px;
    line-height: 14px;
    color: #777;
    font-weight: 600;
}
.civil_service_info_wrap .basic_info_wrap .explain .text_02 {
    font-size: 15px;
    color: #333;
    line-height: 16px;
}
.civil_service_info_wrap .basic_info_wrap .explain .text_02 span {
    color: #777;
}
/* 상세정보 */
.civil_service_info_wrap .detail_info_wrap {
    padding: 24px 20px 0;
    display: flex;
    flex-direction: column;
}
.civil_service_info_wrap .detail_info_wrap .item {
    padding: 20px 0;
    border-bottom: 1px solid #e8e8e8;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.civil_service_info_wrap .detail_info_wrap .item .label {
    font-size: 13px;
    font-weight: 600;
    color: #777;
    line-height: 14px;
}
.civil_service_info_wrap .detail_info_wrap .item .text {
    font-size: 15px;
    color: #333;
    line-height: 22px;
}
/* 제출서류 */
.civil_service_info_wrap .document_wrap {
    padding: 24px 20px 0;
    display: flex;
    flex-direction: column;
}
.civil_service_info_wrap .document_wrap .item {
    padding: 20px 0;
    border-bottom: 1px solid #e8e8e8;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.civil_service_info_wrap .document_wrap .item .title {
    font-size: 13px;
    font-weight: 600;
    color: #777;
    line-height: 14px;
}
.civil_service_info_wrap .document_wrap .item .label {
    font-size: 15px;
    color: #333;
    line-height: 16px;
    margin-bottom: 4px;
}
.civil_service_info_wrap .document_wrap .item .text {
    font-size: 14px;
    color: #333;
    line-height: 20px;
}

/********** 민원행정서비스 신청 **********/
/* progress */
.civil_step_wrap .progress_wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding: 0 20px;
    gap: 8px;
}
.civil_step_wrap .progress_wrap .num {
    display: flex;
    align-items: center;
    gap: 2px;
}
.civil_step_wrap .progress_wrap .num .current {
    font-weight: 700;
    color: #e61f2c;
    font-size: 13px;
}
.civil_step_wrap .progress_wrap .num .total {
    font-size: 13px;
}
.civil_step_wrap .progress_wrap .progress {
    width: 100%;
    height: 10px;
    background: #f5f5f5;
    border-radius: 100px;
    position: relative;
    overflow: hidden;
}
.civil_step_wrap .progress_wrap .progress_inner {
    width: 0;
    height: 8px;
    background: #e61f2c;
    border-radius: 100px;
}
/* 공통 */
.civil_step_wrap .title_wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 32px 20px 20px;
}
.civil_step_wrap .title_wrap .title {
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    color: #000;
}
.civil_step_wrap .title_wrap .text {
    font-size: 15px;
    line-height: 22px;
    color: #555;
}
.civil_step_wrap .title_wrap .result_text {
    font-size: 15px;
    line-height: 16px;
    color: #333;
}
.civil_step_wrap .title_wrap .result_text span {
    color: #000;
    font-weight: 700;
}
/* 1단계 */
.civil_step_wrap .title_wrap .text_02 {
    font-size: 14px;
    font-weight: 400;
    line-height: 14px;
    color: #333;
}
.civil_step_wrap .agree_item_wrap {
    display: flex;
    flex-direction: column;
}
.civil_step_wrap .item_all_check {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 16px 20px;
    background: #f5f5f5;
    margin-top: 20px;
}
.civil_step_wrap .item_all_check .checks {
    width: calc(100% - 22px);
}
.civil_step_wrap .item_all_check i {
    color: #777;
    width: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.civil_step_wrap .agree_item_wrap {
    padding: 0 20px;
}
.civil_step_wrap .agree_item_wrap .item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 20px 0;
    border-bottom: 1px solid #e8e8e8;
}
.civil_step_wrap .agree_item_wrap .item .checks {
    width: calc(100% - 22px);
}
.civil_step_wrap .agree_item_wrap .item .checks label {
    width: 100%;
    display: block;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.civil_step_wrap .agree_item_wrap .item i {
    color: #777;
    width: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
/* 2단계 */
.civil_step_wrap .step_02_wrap {
    padding: 0 20px;
}
.civil_step_wrap .step_02_wrap .inner {
    padding: 20px;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.civil_step_wrap .step_02_wrap .inner .title {
    font-size: 14px;
    color: #333;
    margin-bottom: 4px;
}
.civil_step_wrap .step_02_wrap .inner .item {
    font-size: 15px;
    color: #333;
}
/* 3단계 */
.civil_step_wrap .step_03_wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
}
.civil_step_wrap .step_03_result_wrap {
    padding: 0 20px;
}
.civil_step_wrap .step_03_result_wrap .info {
    border-radius: 8px;
    background: #efefef;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.civil_step_wrap .step_03_result_wrap .info .item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.civil_step_wrap .step_03_result_wrap .info .item .left {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.civil_step_wrap .step_03_result_wrap .info .item .label {
    font-size: 13px;
    font-weight: 600;
    color: #777;
    width: 57px;
}
.civil_step_wrap .step_03_result_wrap .info .item .text {
    font-size: 15px;
    color: #333;
    width: 100%;
}
.civil_step_wrap .step_03_result_wrap .info .item .right_badge {
    background: #fff;
    border-radius: 100px;
    padding: 0 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    height: 22px;
}
.civil_step_wrap .step_03_result_wrap .info .item .right_badge_blue {
    color: #0080e6;
}
.civil_step_wrap .step_03_result_wrap .info .item .right_badge_red {
    color: #e61f2c;
}
.civil_step_wrap .step_03_result_wrap .explain {
    font-size: 14px;
    font-weight: 400;
    color: #333;
    line-height: 20px;
    margin-top: 20px;
}
/* 4단계 */
.civil_step_wrap .step_04_wrap {
    padding: 4px 20px 0;
}
.civil_step_wrap .step_04_wrap .form_group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.civil_step_wrap .step_04_wrap .form_group + .form_group {
    margin-top: 20px;
}
.civil_step_wrap .step_04_wrap .form_group .title {
    color: #333;
}
.civil_step_wrap .step_04_wrap .form_group .title .red_dot {
    color: #d7272c;
}
.civil_step_wrap .step_04_wrap .form_group .explain {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #333;
}
.civil_step_wrap .step_04_wrap .form_group .form_w_100 {
    width: 100%;
    height: 48px;
    border: 1px solid #e8e8e8;
    background: #fff;
    font-size: 15px;
}
.civil_step_wrap .step_04_wrap .form_group .select_wrap {
    width: 100%;
    border: 1px solid #e8e8e8;
    background: #fff;
}
.civil_step_wrap .step_04_wrap .form_group .select_wrap select {
    font-size: 15px;
}
.civil_step_wrap .step_04_wrap .form_group .select_wrap select option {
    font-size: 15px;
}
.civil_step_wrap .step_04_wrap .form_group .radio_group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.civil_step_wrap .step_04_wrap .form_group .date_wrap {
    position: relative;
    cursor: pointer;
}
.civil_step_wrap .step_04_wrap .form_group .date_wrap input {
    width: 100%;
    height: 48px;
    border: 1px solid #e8e8e8;
    background: transparent;
    font-size: 15px;
}
.civil_step_wrap .step_04_wrap .form_group .date_wrap img {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    z-index: -1;
}
/* 5단계 */
.civil_step_wrap .step_05_wrap {
    padding: 0 20px;
    margin-top: 12px;
}
.civil_step_wrap .step_05_wrap .file_content + .file_content {
    margin-top: 24px;
}
.civil_step_wrap .step_05_wrap .file_content .hd_title {
    font-size: 15px;
    font-weight: 700;
    border-bottom: 1px solid #ccc;
    padding-bottom: 16px;
}
.civil_step_wrap .step_05_wrap .file_content .file_item {
    padding: 20px 0;
    border-bottom: 1px solid #e8e8e8;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.civil_step_wrap .step_05_wrap .file_content .file_item_self {
    flex-direction: initial;
    align-items: flex-end;
    justify-content: center;
}
.civil_step_wrap .step_05_wrap .file_content .file_item .top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.civil_step_wrap .step_05_wrap .file_content .file_item .top .title {
    font-size: 15px;
    color: #333;
}
.civil_step_wrap .step_05_wrap .file_content .file_item .top .top_badge {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    height: 22px;
    border-radius: 100px;
    background: #d9eeff;
    color: #0080e6;
    font-size: 13px;
}
.civil_step_wrap .step_05_wrap .file_content .file_item .text_title {
    font-size: 13px;
    font-weight: 600;
    color: #555;
}
.civil_step_wrap .step_05_wrap .file_content .file_item .explain {
    font-size: 13px;
    color: #777;
}
.civil_step_wrap .step_05_wrap .file_content .file_item .left {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}
.civil_step_wrap .step_05_wrap .file_content .file_item .left .title {
    font-size: 15px;
    color: #333;
}
.civil_step_wrap .step_05_wrap .file_content .file_item .left .text {
    font-size: 13px;
    color: #777;
}
.civil_step_wrap .step_05_wrap .file_content .file_item .input_group {
    position: relative;
}
.civil_step_wrap .step_05_wrap .file_content .file_item .input_group input {
    width: 100%;
    height: 40px;
    padding: 0 40px 0 16px;
}
.civil_step_wrap .step_05_wrap .file_content .file_item .input_group i {
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    color: #999;
}
.civil_step_wrap .step_05_wrap .file_content .file_item .btn {
    min-width: 80px;
    height: 32px;
    padding: 0;
    gap: 4px;
    font-size: 14px;
    background: #555;
}
/* 6단계 */
.civil_step_wrap .step_06_wrap {
    padding: 0 20px;
}
.civil_step_wrap .step_06_wrap .inner {
    padding: 20px;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.civil_step_wrap .step_06_wrap .inner .item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.civil_step_wrap .step_06_wrap .inner .item .label {
    font-size: 13px;
    font-weight: 600;
    color: #777;
    line-height: 14px;
}
.civil_step_wrap .step_06_wrap .inner .item .text {
    font-size: 15px;
    color: #333;
    line-height: 16px;
}
.civil_step_wrap .step_06_wrap .inner .item .text span {
    color: #777;
}

/********** 마이페이지 **********/
.my_wrap .my_info_wrap {
    padding: 32px 20px;
    background: #fff5f5;
}
.my_wrap .my_info_wrap .profile_wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}
.my_wrap .my_info_wrap .profile_wrap .name {
    font-size: 22px;
    font-weight: 700;
    color: #333;
}
.my_wrap .my_info_wrap .profile_wrap .name span {
    font-weight: 500;
    color: #777;
}
.my_wrap .my_info_wrap .list_title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 16px;
}
.my_wrap .my_info_wrap .count_text {
    font-size: 15px;
    color: #333;
    margin-bottom: 8px;
}
.my_wrap .my_info_wrap .count_text span {
    font-weight: 700;
    color: #e61f2c;
}
.my_wrap .my_info_wrap .date {
    font-size: 13px;
    color: #777;
}
.my_wrap .my_info_wrap .status_item_wrap {
    margin-top: 20px;
    display: flex;
    align-items: center;
    padding: 16px 0;
    background: #feecec;
    border-radius: 12px;
}
.my_wrap .my_info_wrap .status_item_wrap .item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    justify-content: center;
    width: 25%;
}
.my_wrap .my_info_wrap .status_item_wrap .item + .item {
    border-left: 1px solid #f7dbdb;
}
.my_wrap .my_info_wrap .status_item_wrap .item .status_text {
    font-size: 13px;
    color: #333;
}
.my_wrap .my_info_wrap .status_item_wrap .item .num {
    font-weight: 700;
    color: #333;
}
.my_wrap .apply_list_wrap .title {
    padding: 24px 20px 16px 20px;
    font-size: 18px;
    font-weight: 700;
}
.my_wrap .apply_list_wrap .apply_status_wrap {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
}
.my_wrap .apply_list_wrap .apply_status_wrap::-webkit-scrollbar {
    display: none;
}
.my_wrap .apply_list_wrap .apply_status_wrap .apply_status_item_wrap {
    display: flex;
    gap: 8px;
    flex: 0 0 auto;
    width: max-content;
    padding-inline-start: 20px;
    padding-inline-end: 20px;
}
.my_wrap .apply_list_wrap .apply_status_wrap .apply_status_item_wrap .btn_tab {
    min-width: fit-content;
    padding: 8px 12px;
    border-radius: 100px;
    background: #f4f4f4;
    color: #777;
    font-size: 14px;
}
.my_wrap .apply_list_wrap .apply_status_wrap .apply_status_item_wrap .btn_tab.active {
    color: #fff;
    background: #555;
}
.my_wrap .apply_list_wrap .num {
    font-size: 15px;
    color: #555;
    margin-top: 16px;
    padding: 0 20px;
}
.my_wrap .apply_list_wrap .num span {
    color: #555;
    font-weight: 700;
}
.my_wrap .apply_list_wrap .apply_list_item_wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 20px;
}
.my_wrap .apply_list_wrap .apply_list_item_wrap .item {
    display: flex;
    flex-direction: column;
    padding: 20px 0;
    border-bottom: 1px solid #e8e8e8;
    width: 100%;
}
.my_wrap .apply_list_wrap .apply_list_item_wrap .item .status_wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
.my_wrap .apply_list_wrap .apply_list_item_wrap .item .status_wrap .badge_wrap {
    display: flex;
    align-items: center;
    gap: 4px;
}
.my_wrap .apply_list_wrap .apply_list_item_wrap .item .status_wrap .apply_num {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: #333;
}
.my_wrap .apply_list_wrap .apply_list_item_wrap .item .status_wrap .apply_num span {
    color: #000;
}
.my_wrap .apply_list_wrap .apply_list_item_wrap .item .status_wrap .edit_link {
    display: flex;
    align-items: center;
    font-size: 14px;
    line-height: 16px;
    color: #0080e6;
}
.my_wrap .apply_list_wrap .apply_list_item_wrap .item .status_wrap .edit_link i {
    width: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.my_wrap .apply_list_wrap .apply_list_item_wrap .item .apply_title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 20px;
    font-weight: 600;
}
.my_wrap .apply_list_wrap .apply_list_item_wrap .item .apply_title_only {
    cursor: inherit;
    pointer-events: none;
}
.my_wrap .apply_list_wrap .apply_list_item_wrap .item .apply_title span {
    width: calc(100% - 24px);
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    font-weight: 600;
}
.my_wrap .apply_list_wrap .apply_list_item_wrap .item .apply_title_only span {
    width: 100%;
}
.my_wrap .apply_list_wrap .apply_list_item_wrap .item .apply_title i {
    width: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.my_wrap .apply_list_wrap .apply_list_item_wrap .item .explain_wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.my_wrap .apply_list_wrap .apply_list_item_wrap .item .explain_wrap .explain {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.my_wrap .apply_list_wrap .apply_list_item_wrap .item .explain_wrap .explain .label {
    font-size: 13px;
    font-weight: 600;
    color: #777;
}
.my_wrap .apply_list_wrap .apply_list_item_wrap .item .explain_wrap .explain .text {
    font-size: 14px;
    font-weight: 400;
    color: #333;
}
.my_wrap .apply_list_wrap .apply_list_item_wrap .item .explain_wrap .explain .status_badge {
    font-size: 13px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    height: 22px;
}
.my_wrap .apply_list_wrap .apply_list_item_wrap .item .explain_wrap .explain .status_badge_gray {
    color: #555;
    background: #eee;
}
.my_wrap .apply_list_wrap .apply_list_item_wrap .item .explain_wrap .explain .status_badge_green {
    color: #00ad48;
    background: #dbf5e6;
}
.my_wrap .apply_list_wrap .apply_list_item_wrap .item .explain_wrap .explain .status_badge_blue {
    color: #0080e6;
    background: #d9eeff;
}
.my_wrap .apply_list_wrap .apply_list_item_wrap .item .explain_wrap .explain .status_badge_red {
    color: #d7272c;
    background: #ffe5e5;
}
.my_wrap .apply_list_wrap .apply_list_item_wrap .btn_more {
    width: 120px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    border: 1px solid #ddd;
    background: #fff;
    margin-top: 24px;
}
.my_wrap .apply_list_wrap .apply_list_item_wrap .btn_more p {
    color: #000;
    font-size: 14px;
}
.my_wrap .apply_list_wrap .apply_list_item_wrap .btn_more span {
    color: #777;
    font-size: 14px;
    margin-right: 5px;
}
.my_wrap .apply_list_wrap .apply_list_item_wrap .btn_more i {
    width: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
    line-height: 16px;
    transform: translateY(1px);
}
.my_wrap .apply_list_wrap .apply_list_none_wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    margin-top: 40px;
}
.my_wrap .apply_list_wrap .apply_list_none_wrap img {
    display: block;
}
.my_wrap .apply_list_wrap .apply_list_none_wrap p {
    font-size: 15px;
    color: #777;
}
/* 상세 */
.civil_service_info_wrap .info_item {
    display: flex;
    flex-direction: column;
    padding: 0 20px 32px 20px;
    width: 100%;
}
.civil_service_info_wrap .info_item .inner {
    display: flex;
    flex-direction: column;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 20px;
}
.civil_service_info_wrap .info_item .status_wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
.civil_service_info_wrap .info_item .status_wrap .badge_wrap {
    display: flex;
    align-items: center;
    gap: 4px;
}
.civil_service_info_wrap .info_item .status_wrap .apply_num {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #000;
}
.civil_service_info_wrap .info_item .info_title {
    color: #000;
    font-weight: 600;
    margin-bottom: 12px;
}
.civil_service_info_wrap .info_item .info_text {
    color: #333;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 20px;
}
.civil_service_info_wrap .info_item .explain_wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.civil_service_info_wrap .info_item .explain_wrap .explain {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.civil_service_info_wrap .info_item .explain_wrap .explain .label {
    font-size: 13px;
    font-weight: 600;
    color: #777;
}
.civil_service_info_wrap .info_item .explain_wrap .explain .text {
    font-size: 14px;
    font-weight: 400;
    color: #333;
}
.civil_service_info_wrap .info_item .explain_wrap .explain .status_badge {
    font-size: 13px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    height: 22px;
}
.civil_service_info_wrap .info_item .explain_wrap .explain .status_badge_gray {
    color: #555;
    background: #eee;
}
.civil_service_info_wrap .info_item .explain_wrap .explain .status_badge_green {
    color: #00ad48;
    background: #dbf5e6;
}
.civil_service_info_wrap .info_item .explain_wrap .explain .status_badge_blue {
    color: #0080e6;
    background: #d9eeff;
}
.civil_service_info_wrap .info_item .explain_wrap .explain .status_badge_red {
    color: #d7272c;
    background: #ffe5e5;
}
.civil_service_info_wrap .eligibility_wrap {
    padding: 0 24px;
    margin-top: 20px;
}
.civil_service_info_wrap .eligibility_wrap .inner {
    border-radius: 8px;
    background: #efefef;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.civil_service_info_wrap .eligibility_wrap .inner .item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.civil_service_info_wrap .eligibility_wrap .inner .item .left {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.civil_service_info_wrap .eligibility_wrap .inner .item .label {
    font-size: 13px;
    font-weight: 600;
    color: #777;
    width: 57px;
}
.civil_service_info_wrap .eligibility_wrap .inner .item .text {
    font-size: 15px;
    color: #333;
    width: 100%;
}
.civil_service_info_wrap .eligibility_wrap .inner .item .right_badge {
    background: #fff;
    border-radius: 100px;
    padding: 0 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    height: 22px;
}
.civil_service_info_wrap .eligibility_wrap .inner .item .right_badge_blue {
    color: #0080e6;
}
.civil_service_info_wrap .eligibility_wrap .inner .item .right_badge_red {
    color: #e61f2c;
}
.civil_service_info_wrap .eligibility_wrap .bottom_text {
    font-size: 13px;
    font-weight: 400;
    color: #333;
    margin-top: 20px;
}
.civil_service_info_wrap .apply_form_wrap {
    padding: 0 24px;
    margin-top: 20px;
}
.civil_service_info_wrap .apply_form_wrap .inner {
    border-radius: 8px;
    background: #efefef;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.civil_service_info_wrap .apply_form_wrap .inner .item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.civil_service_info_wrap .apply_form_wrap .inner .item .label {
    font-size: 13px;
    font-weight: 600;
    color: #777;
}
.civil_service_info_wrap .apply_form_wrap .inner .item .text {
    font-size: 15px;
    color: #333;
    width: 100%;
}
.civil_service_info_wrap .required_doc_wrap {
    padding: 0 20px;
}
.civil_service_info_wrap .required_doc_wrap .file_content {
    margin-top: 24px;
}
.civil_service_info_wrap .required_doc_wrap .file_content .hd_title {
    font-size: 15px;
    font-weight: 700;
    border-bottom: 1px solid #ccc;
    padding-bottom: 16px;
}
.civil_service_info_wrap .required_doc_wrap .file_content .file_item {
    padding: 20px 0;
    border-bottom: 1px solid #e8e8e8;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.civil_service_info_wrap .required_doc_wrap .file_content .file_item_none {
    flex-direction: initial;
    align-items: center;
    justify-content: space-between;
}
.civil_service_info_wrap .required_doc_wrap .file_content .file_item .title {
    font-size: 15px;
    color: #333;
}
.civil_service_info_wrap .required_doc_wrap .file_content .file_item .top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.civil_service_info_wrap .required_doc_wrap .file_content .file_item .top_badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 0 8px;
    height: 22px;
    border-radius: 100px;
    background: #d9eeff;
    color: #0080e6;
    font-size: 13px;
}
.civil_service_info_wrap .required_doc_wrap .file_content .file_item .top_badge_gray {
    background: #eee;
    color: #666;
}
.civil_service_info_wrap .required_doc_wrap .file_content .file_item .text_title {
    font-size: 13px;
    font-weight: 600;
    color: #555;
}
.civil_service_info_wrap .required_doc_wrap .file_content .file_item .explain {
    font-size: 13px;
    color: #777;
}
.civil_service_info_wrap .required_doc_wrap .file_content .file_item .input_group {
    display: flex;
    align-items: center;
    gap: 8px;
}
.civil_service_info_wrap .required_doc_wrap .file_content .file_item .input_group input {
    width: 100%;
    height: 40px;
}

/********** 더보기 **********/
/* 리스트 */
.more_view_wrap .hd_title {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    padding: 0 20px;
    margin-bottom: 24px;
}
.more_view_wrap .item_switch {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
}
.more_view_wrap .item_switch .title {
    display: flex;
    align-items: center;
    gap: 8px;
}
.more_view_wrap .item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 20px;
}
/* 로그인 정보 */
.login_info_wrap {
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: calc(100vh - 110px);
}
.login_info_wrap .top_info {
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e8e8e8;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.login_info_wrap .top_info .item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.login_info_wrap .top_info .item .title {
    font-size: 13px;
    font-weight: 600;
    color: #777;
}
.login_info_wrap .top_info .item .text_wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.login_info_wrap .top_info .item .text_wrap p:first-child {
    color: #333;
}
.login_info_wrap .top_info .item .text_wrap .pw_link {
    color: #000;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}
.login_info_wrap .top_info .item .text_wrap .pw_link i {
    width: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    transform: translateY(1px);
}
.login_info_wrap .top_info .item .text_wrap p:last-child {
    color: #000;
    font-weight: 600;
}
.login_info_wrap .link {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 400;
    color: #333;
}
.login_info_wrap .link i {
    width: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
}
/* 앱 공지사항 리스트 */
.notice_list_wrap {
    padding: 0 20px;
}
.notice_list_wrap .list_content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.notice_list_wrap .list_content .list_item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    padding: 20px 0;
    border-bottom: 1px solid #e8e8e8;
}
.notice_list_wrap .list_content .list_item .title {
    display: flex;
    align-items: center;
    gap: 8px;
}
.notice_list_wrap .list_content .list_item .title span {
    flex: 0 1 auto;
    max-width: calc(100% - 16px - 8px);
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #333;
}
.notice_list_wrap .list_content .list_item .title img {
    flex: 0 0 16px;
    width: 16px;
    height: 16px;
}
.notice_list_wrap .list_content .list_item .date {
    font-size: 13px;
    line-height: 14px;
    color: #777;
}
.notice_list_wrap .btn_more {
    width: 120px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    border-radius: 4px;
    border: 1px solid #ddd;
    background: #fff;
    margin-top: 24px;
}
.notice_list_wrap .btn_more p {
    color: #000;
    font-size: 14px;
}
.notice_list_wrap .btn_more span {
    color: #777;
    font-size: 14px;
    margin-right: 5px;
}
.notice_list_wrap .btn_more i {
    width: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
    transform: translateY(2px);
}
.notice_list_wrap .notice_none_wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    margin-top: 140px;
}
.notice_list_wrap .notice_none_wrap img {
    display: block;
}
.notice_list_wrap .notice_none_wrap p {
    font-size: 15px;
    color: #777;
}
/* 앱 공지사항 상세 */
.notice_detail_wrap {
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.notice_detail_wrap .title_wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e8e8e8;
    width: 100%;
}
.notice_detail_wrap .title_wrap .title {
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    color: #333;
}
.notice_detail_wrap .title_wrap .date {
    font-size: 14px;
    font-weight: 400;
    line-height: 14px;
    color: #777;
}
.notice_detail_wrap .detail_text_wrap {
    padding-bottom: 40px;
    border-bottom: 1px solid #ccc;
    font-size: 15px;
    line-height: 22px;
    color: #555;
    width: 100%;
}
.notice_detail_wrap .file_wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}
.notice_detail_wrap .file_wrap .title {
    font-size: 14px;
    color: #333;
    line-height: 14px;
}
.notice_detail_wrap .file_wrap .file_item {
    background: #f5f5f5;
    border-radius: 4px;
    padding: 0 16px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    cursor: pointer;
}
.notice_detail_wrap .file_wrap .file_item .name {
    font-size: 15px;
    color: #555;
    max-width: calc(100% - 26px);
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.notice_detail_wrap .file_wrap .file_item img {
    display: block;
}
.notice_detail_wrap .list_back {
    margin-top: 12px;
    border-radius: 4px;
    border: 1px solid #ccc;
    width: 120px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    font-size: 14px;
    color: #333;
}
/* 서비스 정보 및 약관 리스트 */
.agree_list_wrap {
    padding: 0 20px;
}
.agree_list_wrap .list_content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.agree_list_wrap .list_content .list_item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
    padding: 20px 0;
    border-bottom: 1px solid #e8e8e8;
}
.agree_list_wrap .list_content .list_item .left {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: calc(100% - 26px);
}
.agree_list_wrap .list_content .list_item .left .title {
    color: #333;
}
.agree_list_wrap .list_content .list_item .left .version {
    font-size: 13px;
    line-height: 14px;
    color: #777;
}
.agree_list_wrap .list_content .list_item i {
    width: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
}
.agree_list_wrap .agree_none_wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    margin-top: 140px;
}
.agree_list_wrap .agree_none_wrap img {
    display: block;
}
.agree_list_wrap .agree_none_wrap p {
    font-size: 15px;
    color: #777;
}
/* 서비스 정보 및 약관 상세 */
.agree_more_detail_wrap {
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.agree_more_detail_wrap .title_wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e8e8e8;
    width: 100%;
}
.agree_more_detail_wrap .title_wrap .title {
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    color: #333;
}
.agree_more_detail_wrap .title_wrap .version {
    font-size: 14px;
    font-weight: 400;
    line-height: 14px;
    color: #777;
}
.agree_more_detail_wrap .detail_text_wrap {
    font-size: 15px;
    line-height: 22px;
    color: #555;
    width: 100%;
}
/* 회원 탈퇴 */
.withdrawal_wrap {
    padding: 0 20px;
}
.withdrawal_wrap .title {
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    color: #333;
    margin-bottom: 20px;
}
.withdrawal_wrap .explain {
    font-size: 15px;
    line-height: 22px;
    color: #333;
}
.withdrawal_wrap .checks {
    position: absolute;
    bottom: 96px;
}
/* 앱 종료 */
.end_wrap {
    background: #feebeb;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    padding: 200px 20px 12px 20px;
}
.end_wrap .top {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
}
.end_wrap .top .title {
    font-size: 36px;
    font-weight: 700;
    font-family: "Paperlogy", "맑은 고딕", "돋움", Dotum, Arial, sans-serif;
    color: #000;
    text-align: center;
}
.end_wrap .top .text {
    font-size: 18px;
    font-weight: 400;
    font-family: "Paperlogy", "맑은 고딕", "돋움", Dotum, Arial, sans-serif;
    color: #555;
    line-height: 26px;
    text-align: center;
}
.end_wrap .btn_wrap {
    width: 100%;
}
.end_wrap .btn_wrap .btn {
    width: 100%;
    height: 48px;
}

/********** 만족도 조사 **********/
/* 만족도 조사 개요 */
.survey_summary_wrap {
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.survey_summary_wrap .title_wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e8e8e8;
    width: 100%;
}
.survey_summary_wrap .title_wrap .title {
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    color: #333;
}
.survey_summary_wrap .title_wrap .date {
    font-size: 14px;
    font-weight: 400;
    line-height: 14px;
    color: #777;
}
.survey_summary_wrap .detail_text_wrap {
    font-size: 15px;
    line-height: 22px;
    color: #555;
    width: 100%;
}
.survey_summary_wrap .detail_text_wrap .explain {
    margin-top: 20px;
    color: #e61f2c;
    font-size: 14px;
}
/* 만족도 조사 동의 */
.survey_agree_wrap {
    padding: 0 20px;
}
.survey_agree_wrap .summary_title {
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    color: #333;
}
.survey_agree_wrap .summary_explain {
    background: #efefef;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
}
.survey_agree_wrap .summary_explain .title {
    font-size: 15px;
    line-height: 22px;
    color: #333;
    font-weight: 600;
}
.survey_agree_wrap .summary_explain .text {
    font-size: 15px;
    line-height: 22px;
    color: #555;
}
.survey_agree_wrap .agree_item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}
.survey_agree_wrap .agree_item + .agree_item {
    padding-top: 20px;
    border-top: 1px solid #e8e8e8;
}
.survey_agree_wrap .agree_item .agree_title {
    font-weight: 600;
    color: #333;
}
.survey_agree_wrap .agree_table {
    display: flex;
    flex-direction: column;
}
.survey_agree_wrap .agree_table .head {
    display: flex;
}
.survey_agree_wrap .agree_table .head span {
    background: #aaa;
    color: #fff;
    font-size: 13px;
    padding: 0 12px;
    min-height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.survey_agree_wrap .agree_table .head span:first-child {
    width: 72px;
}
.survey_agree_wrap .agree_table .head span:last-child {
    width: calc(100% - 72px);
}
.survey_agree_wrap .agree_table .content {
    display: flex;
}
.survey_agree_wrap .agree_table .content span {
    color: #555;
    font-size: 13px;
    line-height: 18px;
    padding: 8px 12px;
    min-height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    border-width: 0 1px 1px 1px;
}
.survey_agree_wrap .agree_table .content span:first-child {
    width: 72px;
}
.survey_agree_wrap .agree_table .content span:last-child {
    width: calc(100% - 72px);
    justify-content: flex-start;
    border-left: 0;
}
.survey_agree_wrap .agree_item .explain {
    font-size: 14px;
    line-height: 20px;
    color: #777;
    margin-bottom: 8px;
}
.survey_agree_wrap .agree_item .agree_question {
    font-weight: 600;
    color: #333;
    line-height: 22px;
}
.survey_agree_wrap .agree_item .radio_group {
    display: flex;
    align-items: center;
    gap: 50px;
}
/* 만족도 조사 진행 */
.survey_question_wrap {
    padding: 0 20px;
}
.survey_question_wrap .progress_wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}
.survey_question_wrap .progress_wrap .num {
    display: flex;
    align-items: center;
    gap: 2px;
}
.survey_question_wrap .progress_wrap .num .current {
    font-weight: 700;
    color: #e61f2c;
    font-size: 13px;
}
.survey_question_wrap .progress_wrap .num .total {
    font-size: 13px;
}
.survey_question_wrap .progress_wrap .progress {
    width: 100%;
    height: 10px;
    background: #f5f5f5;
    border-radius: 100px;
    position: relative;
    overflow: hidden;
}
.survey_question_wrap .progress_wrap .progress_inner {
    width: 0;
    height: 8px;
    background: #e61f2c;
    border-radius: 100px;
}
.survey_question_wrap .question_wrap {
    margin-top: 32px;
}
.survey_question_wrap .question_wrap .question_title {
    font-size: 20px;
    font-weight: 700;
    line-height: 26px;
    color: #000;
    margin-bottom: 32px;
}
.survey_question_wrap .question_wrap .likert_scale_wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.survey_question_wrap .question_wrap textarea {
    width: 100%;
    height: 300px;
    border: 1px solid #e8e8e8;
    border-radius: 0;
    background: #fff;
    font-size: 15px;
}
/* 만족도 조사 완료, 당첨, 미당첨 레이아웃 공통 */
.survey_result_wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    min-height: calc(100vh - 182px);
}
.survey_result_wrap img {
    display: block;
}
.survey_result_wrap .title {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    color: #000;
}
.survey_result_wrap .text {
    text-align: center;
    line-height: 22px;
    color: #555;
}
