: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: #2E363F;
    --sub-color: #00AEF0;
    --error-color: #F64E60;
    --success-color: #2D67FF;
}

@font-face {
    font-family: 'Gmarket Sans';
    src: local('Gmarket Sans'),
        url(/static/app_www/base/font/GmarketSansTTFBold.ttf) format('truetype');
    font-weight: 500;
}


/* www만 별도로 font 설정이 필요할때 */
.font_gmarket {
    font-family: 'Gmarket Sans', 'Noto Sans KR', sans-serif;
}

/* body {
    font-family: 'Segoe UI', sans-serif;
} */

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

.common_cont {
    padding-top: 66px;
}

body.scroll-lock {
    overflow: hidden;
}

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

.inner {
    /* width는 임시값 */
    max-width: 1164px;
    padding: 0 16px;
    margin: 0 auto;
}

/* 일시적인 숨김, 일시적인 표시 일때 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;
}

/* 타이틀 폰트 */
.font_Gmarket {
    font-family: "GmarketSans", sans-serif;
}

/* 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.fill_main {
    border-color: var(--main-color);
    background-color: var(--main-color);
    color: #FFF;
}

.btn_default.fill_sub {
    border-color: var(--sub-color);
    background-color: var(--sub-color);
    color: #FFF;
}

.btn_default.fill_black {
    border-color: #222222;
    background-color: #222222;
    color: #fff;
}

.btn_default.fill_gray {
    border-color: #EBEBEB;
    background-color: #EBEBEB;
    color: #5E5E5E;
}

.btn_default.around {
    border-radius: 100px;
}

.btn_default.in_gradient {
    background: linear-gradient(247.49deg, #09152F 3.28%, #0E3541 98.39%);
    color: #fff;
}

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

/* 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: 50px;
}

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

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

.pagination .paging.num {
    padding: 10px 15px;
    font-size: 16px;
    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: ; */
    align-items: center;
    padding: 240px 0;
}

.empty_title {
    font-size: 14px;
    font-weight: 500;
    color: #5E5E5E;
    text-align: center;
}

/* 메인랜딩 타이틀 공통 */
.main_title_wrap {
    color: #A9A9A9;
    font-weight: 700;
}

.main_title_wrap .title {
    font-family: "GmarketSans", sans-serif;
    font-size: 70px;
}

.main_title_wrap .sub_title {
    font-size: 20px;
}

.main_title_wrap .strong {
    color: #101010;
}

.main_title_wrap .sub_color {
    color: var(--sub-color);
}

/* 쿠폰 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;
}

.half_info {
    display: flex;
    flex-wrap: wrap;
    gap: 0 6px;
}

.half_info dl {
    width: calc((100% - 6px) / 2);
}

.order_item .item_body {
    padding: 24px;
}

.load_item:not(:last-child) {
    margin-bottom: 8px;
}

.load_item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.load_badge {
    padding: 5px 8px;
    border-radius: 4px;
    background-color: #EBEBEB;
    font-size: 12px;
    font-weight: 400;
    color: #222;
    white-space: nowrap;
}

.default_text {
    font-size: 15px;
    font-weight: 400;
    color: #222;
}

.load_badge+.default_text {
    margin-top: 1px;
}

/* tablet */
@media screen and (max-width: 1023px) {
    .common_cont {
        padding-top: 44px;
    }

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

    .is_mobile {
        display: block;
    }

    .is_mobile.flex {
        display: flex;
    }

    .empty_wrap {
        padding: 130px 0;
    }

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

    .main_title_wrap .sub_title {
        font-size: 16px;
    }

    .half_info dl {
        width: 100%;
    }

    .order_item .item_body {
        padding: 16px;
    }
}

/* 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;
    }
}