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

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

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

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

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

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

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

    /* coupon color */
    --coupon-color: #FF9BA5;

    /* 프로젝트 style */
    --main-color: #653213;
    --sub-color: #FE9B06;
    --error-color: #FF5757;
    --success-color: #2D67FF;
}

/* www만 별도로 font 설정이 필요할때 */
/* body {
    font-family: 'Segoe UI', sans-serif;
} */

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

body.scroll-lock {
    overflow: hidden;
}

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

.inner {
    max-width: 632px;
    padding: 0 12px;
    margin: 0 auto;
}

/* 푸터 안가려지게 */
.common_cont {
    padding: 0 0 55px;
}

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

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

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

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

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

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

/* 텍스트 ... 처리 - 두줄 */
.text_reduce.reduce_two {
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    white-space: normal;
}

.text_reduce.reduce_three {
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    white-space: normal;
}

/* btn */
.btn_default {
    border: 1px solid #AAA;
    background-color: transparent;
    color: #222;
    border-radius: 6px;
}

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

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

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

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

.btn_default:disabled {
    color: #FFF;
    background-color: #BBBBBB;
    border-color: #BBBBBB;
}

.btn_default.fill_softR {
    background-color: #FFEEF0;
    border-color: #FFEEF0;
    color: var(--error-color);
}

.btn_default.fill_softB {
    background-color: #EFEFF1;
    border-color: #EFEFF1;
    color: #5E5E5E;
}

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

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

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

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

/* pagination */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.pagination .paging {
    display: flex;
    border-radius: 10px;
    justify-content: center;
    align-items: center;
}

.pagination .paging.active {
    background-color: #F1F1F1;
}

.pagination .paging.num {
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 400;
    color: #222;
}

.pagination .paging.arrow {
    padding: 8px 6px;
}

.pagination .paging.arrow .img_wrap {
    width: 28px;
    height: 28px;
}

.pagination .paging.arrow img {
    object-fit: contain;
    object-position: center;
}

/* empty */
.empty_wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    padding: 142px 0;
}

.empty_wrap .empty_img {
    width: 109px;
    aspect-ratio: 1/0.505;
    background: url("/static/app_www/base/img/img_empty.png") left top / cover no-repeat;
}

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

.empty_title {
    font-weight: 500;
}

/* 쿠폰 css(임시위치) */
/* 쿠폰 메인색상은 root에서 설정 */
.coupon_list_wrap .list_count {
    margin-bottom: 24px;
    font-size: 14px;
}

.coupon_list_wrap .list_count span {
    color: #5E5E5E;
}

.coupon_list_wrap .coupon_list>li:not(:last-child) {
    margin-bottom: 24px;
}

.coupon_wrap {
    width: 100%;
    height: 241px;
    border-radius: 21px;
    overflow: hidden;
    margin: auto;
    display: flex;
    align-items: stretch;
    position: relative;
    text-transform: uppercase;
}

.coupon_wrap::before,
.coupon_wrap::after {
    content: "";
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    z-index: -1;
}

.coupon_wrap::before {
    left: 0;
    background-image: radial-gradient(circle at left,
            transparent 25px,
            var(--coupon-color, var(--main-color)) 0px);
}

.coupon_wrap::after {
    right: 0;
    background-image: radial-gradient(circle at right,
            transparent 25px,
            var(--coupon-color, var(--main-color)) 0);
}

.coupon_wrap>div {
    display: flex;
    align-items: center;
    justify-content: center;
}

.coupon_wrap .coupon_left {
    width: 20%;
    border-right: 2px dashed rgba(0, 0, 0, 0.13);
}

.coupon_wrap .coupon_left div {
    transform: rotate(-90deg);
    white-space: nowrap;
    font-weight: bold;
    margin-left: 20px;

    font-size: 32px;
    font-weight: 500;
    color: #FFF;
}

.coupon_wrap .coupon_center {
    flex-grow: 1;
    text-align: center;
    width: 60%;
    padding: 10px 53px 10px 27px;
    color: #FFF;
}

.coupon_wrap .coupon_center>div {
    width: 100%;
}

.coupon_wrap .coupon_center h2 {
    font-size: 16px;
    margin-bottom: 8px;
}

.coupon_wrap .coupon_center h3 {
    /* background: #222; */
    padding: 1px 15px;
    font-size: 38px;
    font-weight: 500;
    white-space: nowrap;
    display: inline-block;
    margin-bottom: 18px;
}

.coupon_wrap .coupon_center .coupon_info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.coupon_wrap .coupon_center .coupon_info:not(:last-child) {
    margin-bottom: 4px;
}

.coupon_wrap .coupon_center .coupon_info h4 {
    font-size: 16px;
    font-weight: 500;
}

.coupon_wrap .coupon_center .coupon_info p {
    font-size: 16px;
}

.POPUPIMGVIEWER {
    line-height: 0;
}

.info_sect_title_wrap {
    position: relative;
}

.info_sect_title_wrap .sect_title {
    display: flex;
    align-items: center;
    gap: 6px;
    padding-right: 12px;
    font-size: 18px;
    font-weight: 600;
    color: var(--main-color);
    background-color: #fff;
    width: fit-content;
}

.info_sect_title_wrap::after {
    content: '';
    border-bottom: 2px solid var(--main-color);
    position: absolute;
    width: 100%;
    height: 0;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
    z-index: -1;
}

.info_sect_title_wrap .icon_wrap {
    display: flex;
    width: 24px;
}

.dog_info_wrap {
    background-color: #F2F4F6;
    border: 1px solid #E1E1E1;
    padding: 12px;
    border-radius: 8px;
}

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

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

.dog_title_wrap .title {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 700;
    color: var(--main-color);
}

.dog_title_wrap .title .icon_wrap {
    display: flex;
    width: 16px;
}

.dog_info_box {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 12px;
    background-color: #fff;
    border-radius: 8px;
}

.profile_wrap {
    width: 100%;
    max-width: 100px;
    aspect-ratio: 1/1;
    margin-left: auto;
    margin-right: auto;
}

.dog_profile_btn {
    display: flex;
    width: 100%;
    height: 100%;
    background-color: transparent;
}

.dog_profile_btn .img_wrap {
    display: flex;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
}

.dog_profile_btn .img_wrap img {
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.dog_profile_btn .icon_wrap {
    position: absolute;
    bottom: -1px;
    right: -4px;
    display: flex;
    width: 35px;
}

.select_filter {
    position: relative;
}

.select_filter .dim {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100dvw;
    height: 100dvh;
    background-color: transparent;
}

.select_filter.active .dim {
    display: block;
}

.select_filter .active_option {
    display: flex;
    align-items: center;
    background-color: transparent;
    position: relative;
}

.select_filter .active_option::after {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    background: url(/static/common/img/icon_select_down.png) no-repeat center/contain;
}

.select_filter .option_info {
    display: flex;
    align-items: center;
    gap: 2px;
}

.select_filter .option_info .img_wrap {
    display: flex;
    width: 18px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    overflow: hidden;
}

.select_filter .option_info .img_wrap img {
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.select_filter .active_title {
    font-size: 16px;
    font-weight: 600;
    color: #222;
    text-align: left;
}

.select_filter .option_group {
    position: absolute;
    width: 230px;
    top: 100%;
    left: 0;
    transform: translateY(8px);
    background-color: #fff;
    border: 1px solid #BBBBBB;
    border-radius: 6px;
    overflow-y: auto;
    display: none;
}

.select_filter.active .option_group {
    display: block;
}

.select_filter .option_group .option_item {
    display: block;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    color: #222;
}

.head_tab {
    max-width: 632px;
    margin: 0 auto;
    background-color: #fff;
    border-bottom: 1px solid #BBBBBB;
    display: flex;
    position: sticky;
    top: 45px;
    left: 0;
    z-index: 4;
}

.head_tab .tab_item {
    padding: 12px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    font-size: 14px;
    font-weight: 400;
    color: #5E5E5E;
    position: relative;
}

.head_tab .tab_item.active {
    font-weight: 600;
    color: #222;
}

.head_tab .tab_item.active::after {
    content: '';
    display: block;
    width: 100%;
    height: 0;
    border-top: 2px solid #222;
    position: absolute;
    bottom: -1px;
    left: 0;
}

.badge_wrap {
    display: flex;
    align-items: center;
    gap: 4px 8px;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    padding: 2px 4px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 400;
}

.badge.post_badge {
    padding: 4px 6px;
}

.badge.blue {
    background-color: #E8F1FF;
    color: var(--success-color);
}

.badge.red {
    background-color: #FFE8E8;
    color: var(--error-color);
}

.badge.yellow {
    background-color: #FFF6E6;
    color: var(--sub-color);
}

.badge.gray {
    background-color: #F8F8F8;
    color: #5E5E5E;
}

.badge.purple {
    background-color: #F3E6FF;
    color: #B011FF;
}

.badge.fill_gray {
    background-color: #9E9E9E;
    color: #fff;
}

.badge.black {
    background-color: #222222;
    color: #fff;
}

.badge.fill_yellow {
    background-color: #FE902C;
    color: #fff;
}

.alert_wrap {
    padding: 12px;
    border-radius: 2px;
}

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

.alert_wrap .title_wrap {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 8px;
}

.alert_wrap .title_wrap .icon_wrap {
    display: flex;
    width: 14px;
}

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

.alert_wrap .alert_list.decimal {
    list-style: decimal inside;
    padding-left: 4px;
}

.alert_wrap .alert_list.hyphen li::before {
    content: '-';
}

.alert_wrap .alert_list.hyphen li {
    display: flex;
    padding-left: 12px;
    gap: 4px;
}

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

.switch_filter {
    display: flex;
    border-radius: 50px;
    background-color: #EBEBEB;
    padding: 2px;
}

.switch_filter .switch_item {
    display: block;
    background-color: transparent;
    padding: 5px 4px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 400;
    color: #9E9E9E;
}

.switch_filter .switch_item:first-child {
    padding-right: 4px;
    padding-left: 10px;
}

.switch_filter .switch_item:last-child {
    padding-right: 10px;
    padding-left: 4px;
}

.switch_filter .switch_item.active {
    background-color: #222;
    font-weight: 600;
    color: #fff;
    padding-right: 10px;
    padding-left: 10px;
}

/* 프로그램 정보 관련 공통 css */
.program_item .item_content {
    padding: 16px 12px;
}

.program_item .item_info_wrap .item_info:not(:last-child) {
    margin-bottom: 8px;
}

.program_item .item_info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
}

.program_item .item_info .info_title {
    width: 50px;
}

.program_item .item_info .info_text {
    width: calc(100% - 66px);
    text-align: end;
}

.program_item .item_info .info_text.flex {
    display: flex;
    gap: 4px;
    justify-content: flex-end;
    width: fit-content;
    max-width: calc(100% - 66px);
}

.program_item .item_info .season_img {
    display: flex;
    width: 18px;
    aspect-ratio: 1/1;
    flex-shrink: 0;
    border-radius: 50px;
    overflow: hidden;
}

.form_cont {
    padding: 20px 0px 75px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

#map {
    display: flex;
    width: 100%;
    aspect-ratio: 3/1;
    border-radius: 2px;
    border: 1px solid #E1E1E1;
    overflow: hidden;
}

#map_wrap>div {
    width: 100%;
}

/* 게시물작성자 정보 공용 css */
.poster_info_area {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.poster_info_area .poster_content {
    display: flex;
    gap: 8px;
    align-items: center;
}

.poster_info_area .wappen {
    width: 28px;
    aspect-ratio: 1/1;
    display: flex;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0.57px 0.57px 1.7px 0px rgba(0, 0, 0, 0.06);
}

.poster_info_area .btn_post_edit {
    width: 24px;
    aspect-ratio: 1/1;
    display: flex;
    background: url("/static/app_www/base/img/icon_more_g.png") center / cover no-repeat;
    background-color: transparent;
}

.poster_info_area .profile_img {
    width: 31px;
    aspect-ratio: 1/1;
    display: flex;
    border-radius: 100px;
    overflow: hidden;
    background-color: transparent;
}

.poster_info_area .profile_img img {
    object-fit: cover;
    object-position: center;
}

.poster_info_area .info_box {
    font-size: 12px;
}

.poster_info_area .poster_info,
.poster_info_area .poster_info .team_name {
    display: flex;
    gap: 5px;
    align-items: center;
}

.poster_info_area .poster_info .team_name::before {
    content: '';
    display: block;
    height: 8px;
    border-left: 1px solid #BBBBBB;
}

.poster_info_area .poster_name_box {
    display: flex;
    align-items: center;
}

.poster_info_area .poster_name,
.poster_info_area .team_name {
    font-weight: 500;
}

.poster_info_area .badge_img {
    width: 13px;
    aspect-ratio: 1/1;
    display: flex;
}

.poster_info_area .dttm {
    color: #9E9E9E;
}

/* 게시물 관련 - 게시물정보 */
.post_content .post_type {
    display: flex;
    gap: 4px;
    align-items: center;
    color: #5E5E5E;
    font-size: 12px;
}

.post_content .post_type .season_img {
    width: 14px;
    aspect-ratio: 1/1;
    display: flex;
    border-radius: 50px;
    overflow: hidden;
}

.post_content .post_title {
    display: flex;
    gap: 5px 8px;
    align-items: center;
    flex-wrap: wrap;
}

.post_content .post_title .badge {
    flex-shrink: 0;
}

.post_content .post_title .title {
    width: 100%;
    max-width: calc(100% - 74px);
    font-size: 15px;
    font-weight: 500;
}

.post_content .post_title .title.full {
    max-width: 100%;
}

.post_content .post_text {
    color: #5E5E5E;
    font-size: 14px;
}

/* 게시물 내 주소 */
.post_addr {
    display: flex;
    align-items: center;
    gap: 2px;
    color: #5E5E5E;
    font-size: 12px;
}

.post_addr .addr_img {
    width: 14px;
    aspect-ratio: 1/1;
    display: flex;
}

/* 게시물 관련 - 번개모임 정보 */
.post_meet_info {
    background-color: #E8F1FF;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-radius: 4px;
}

.post_meet_info .meet_info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    font-size: 14px;
    gap: 10px;
}

.post_meet_info .info_title {
    color: #5E5E5E;
    flex-shrink: 0;
}

.post_meet_info .info_content {
    flex-grow: 1;
    text-align: end;
}

.post_meet_info .info_content.flex {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 2px;
}

.post_meet_info .meet_cnt .color {
    color: var(--success-color);
}

.post_meet_info .view_meet_people {
    width: 18px;
    aspect-ratio: 1/1;
    background: url("/static/app_www/base/img/icon_arrow_g.png") center / cover no-repeat;
    background-color: transparent;
}

/* 게시물 관련 - 좋아요,댓글,북마크 그룹 */

.post_tool_group {
    display: flex;
    gap: 6px;
    align-items: center;
    justify-content: flex-end;
}

.post_tool_group .tool_box {
    display: flex;
    gap: 2px;
    align-items: center;
    color: #5E5E5E;
    font-size: 13px;
    font-weight: 500;
}

.post_tool_group .tool_img {
    width: 16px;
    aspect-ratio: 1/1;
    display: flex;
    background-color: transparent;
}

.post_tool_group .tool_img .active,
.post_tool_group .tool_img.active .default {
    display: none;
}

.post_tool_group .tool_img .default,
.post_tool_group .tool_img.active .active {
    display: block;
}


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

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

    .is_mobile {
        display: block;
    }

    .is_mobile.flex {
        display: flex;
    }

    .empty_wrap {
        padding: 130px 0;
    }
}

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

    /* 쿠폰 css(임시위치) */
    .coupon_list_wrap .list_count {
        font-size: 12px;
    }

    .coupon_wrap {
        height: 160px;
        border-radius: 14px;
    }

    .coupon_wrap::before,
    .coupon_wrap::after {
        width: 51%;
    }

    .coupon_wrap::before {
        background-image: radial-gradient(circle at left,
                transparent 17px,
                var(--coupon-color, var(--main-color)) 0px);
    }

    .coupon_wrap::after {
        background-image: radial-gradient(circle at right,
                transparent 17px,
                var(--coupon-color, var(--main-color)) 0);
    }

    .coupon_wrap .coupon_left div {
        margin-left: 16px;

        font-size: 21px;
    }

    .coupon_wrap .coupon_center {
        padding: 10px 41px 10px 31px;
    }

    .coupon_wrap .coupon_center h2 {
        font-size: 14px;
        margin-bottom: 4px;
    }

    .coupon_wrap .coupon_center h3 {
        padding: 1px 10px;
        font-size: 18px;
        margin-bottom: 8px;
    }

    .coupon_wrap .coupon_center .coupon_info:not(:last-child) {
        margin-bottom: 2px;
    }

    .coupon_wrap .coupon_center .coupon_info h4 {
        font-size: 14px;
    }

    .coupon_wrap .coupon_center .coupon_info p {
        font-size: 14px;
    }
}