: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: #C5212A;
    --sub-color: #3B2E2A;
    --error-color: #F64E60;
    --success-color: #1A9D40;
}

/* www만 별도로 font 설정이 필요할때 */
@font-face {
    font-family: 'Tenada';
    src: local('Tenada'),
        url('/static/app_www/base/font/Tenada.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Pretendard';
    src: local('Pretendard'), url('/static/app_www/base/font/Pretendard-Thin.otf') format('opentype');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Pretendard';
    src: local('Pretendard'), url('/static/app_www/base/font/Pretendard-ExtraLight.otf') format('opentype');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Pretendard';
    src: local('Pretendard'), url('/static/app_www/base/font/Pretendard-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Pretendard';
    src: local('Pretendard'), url('/static/app_www/base/font/Pretendard-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Pretendard';
    src: local('Pretendard'), url('/static/app_www/base/font/Pretendard-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Pretendard';
    src: local('Pretendard'), url('/static/app_www/base/font/Pretendard-SemiBold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Pretendard';
    src: local('Pretendard'), url('/static/app_www/base/font/Pretendard-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Pretendard';
    src: local('Pretendard'), url('/static/app_www/base/font/Pretendard-ExtraBold.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Pretendard';
    src: local('Pretendard'), url('/static/app_www/base/font/Pretendard-Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}

body {
    font-family: 'Pretendard', sans-serif;
}

.Tenada {
    font-family: 'Tenada', 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 {
    /* width는 임시값 */
    max-width: 1200px;
    padding: 0 30px;
    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;
}

/* 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.full {
    width: 100%;
    text-align: center;
    border-radius: 6px;
    padding: 22px 0 17px;
    font-size: 20px;
    font-weight: 800;
}

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

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

.top_btn {
    position: fixed;
    right: 6px;
    bottom: 6px;
    background-color: transparent;
    z-index: 1;
    width: 80px;
    display: flex;
}

.popup_container .top_btn {
    z-index: 999;
}

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

    .top_btn {
        width: 50px;
    }
}