@charset "utf-8";

/*@font-face {*/
/*    font-family: 'Pretendard-Regular';*/
/*    !*src: url('https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff') format('woff');*!*/
/*    src:url('/fonts/Pretendard-Regular.woff');*/
/*    font-weight: 400;*/
/*    font-style: normal;*/
/*}*/


@font-face {
    font-family: 'Pretendard';
    font-weight: 900;
    font-display: swap;
    src: local('Pretendard Black'), url('/fonts/woff2/Pretendard-Black.woff2') format('woff2'), url('/fonts/woff/Pretendard-Black.woff') format('woff');
}

@font-face {
    font-family: 'Pretendard';
    font-weight: 800;
    font-display: swap;
    src: local('Pretendard ExtraBold'), url('/fonts/woff2/Pretendard-ExtraBold.woff2') format('woff2'), url('/fonts/woff/Pretendard-ExtraBold.woff') format('woff');
}

@font-face {
    font-family: 'Pretendard';
    font-weight: 700;
    font-display: swap;
    src: local('Pretendard Bold'), url('/fonts/woff2/Pretendard-Bold.woff2') format('woff2'), url('/fonts/woff/Pretendard-Bold.woff') format('woff');
}

@font-face {
    font-family: 'Pretendard';
    font-weight: 600;
    font-display: swap;
    src: local('Pretendard SemiBold'), url('/fonts/woff2/Pretendard-SemiBold.woff2') format('woff2'), url('/fonts/woff/Pretendard-SemiBold.woff') format('woff');
}

@font-face {
    font-family: 'Pretendard';
    font-weight: 500;
    font-display: swap;
    src: local('Pretendard Medium'), url('/fonts/woff2/Pretendard-Medium.woff2') format('woff2'), url('/fonts/woff/Pretendard-Medium.woff') format('woff');
}

@font-face {
    font-family: 'Pretendard';
    font-weight: 400;
    font-display: swap;
    src: local('Pretendard Regular'), url('/fonts/woff2/Pretendard-Regular.woff2') format('woff2'), url('/fonts/woff/Pretendard-Regular.woff') format('woff');
}

@font-face {
    font-family: 'Pretendard';
    font-weight: 300;
    font-display: swap;
    src: local('Pretendard Light'), url('/fonts/woff2/Pretendard-Light.woff2') format('woff2'), url('/fonts/woff/Pretendard-Light.woff') format('woff');
}

@font-face {
    font-family: 'Pretendard';
    font-weight: 200;
    font-display: swap;
    src: local('Pretendard ExtraLight'), url('/fonts/woff2/Pretendard-ExtraLight.woff2') format('woff2'), url('/fonts/woff/Pretendard-ExtraLight.woff') format('woff');
}

@font-face {
    font-family: 'Pretendard';
    font-weight: 100;
    font-display: swap;
    src: local('Pretendard Thin'), url('/fonts/woff2/Pretendard-Thin.woff2') format('woff2'), url('/fonts/woff/Pretendard-Thin.woff') format('woff');
}

pre {
    display: none !important;
}

:root {
    --main-color: #FF6412;
    /* header */
    --header-height: 80px;
    --admin-cont-pl: 10px;
    --admin-border-radius: 20px;
    /*selectbox*/
    --select-height: 40px;
}

@media screen and (max-width: 1024px) {
    /*--header-height:60px;*/
}


/*브라우저 리셋*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body{
    font-size: 62.5%;
}
body, select {
    font-family: 'Pretendard';
    /*font-size: 14px;*/
    line-height: 20px;
    color: #222;
}

div {
    box-sizing: border-box;
    /*cursor: default;*/
}

ul {
    list-style: none;
}

img {
    vertical-align: top;
    border: 0;
}

a {
    text-decoration: none;
    color: inherit;
}
input, button {
    font-family: 'Noto Sans KR', sans-serif;
    vertical-align: top;
}

input:focus {
    outline: none;
}

select {
    -webkit-appearance: none;
    background-image: url('/image/select_arrow.png');
    background-repeat: no-repeat;
    background-size: auto 8px;
    background-position: 93% center;
    padding: 0 10px;
}

button {
    cursor: pointer;
    background-color: transparent;
    border: 0
}

button:focus {
    outline: none;
}

textarea:focus {
    outline: none;
}

::-webkit-scrollbar {
    width: 6px;
    background-color: #f9f9f9;
}

::-webkit-scrollbar-thumb {
    background-color: var(--main-color);
    border-radius: 3px;
    border: 1px solid #fff;
}

.mo, .ta {
    display: none;
}

.pc {
    display: block;
}

#wrap {
    min-width: 320px;
    overflow: hidden;
    position: relative;
}

#overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #333333;
    z-index: 888888;
    opacity: 0.9;
    display: none;
}

#overlay.on {
    display: block;
}

.wrap_in {
    width: 1280px;
    margin: 0 auto;
    height: 100%;
}

.detail_in {
    /*width: 980px;*/
    /*padding: 100px 0;*/
}

/*swiper slide cursor*/


/* swiper btn style start */


.next_style,
.prev_style {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 48.5%;
    border-radius: 50%;
    border: 1px solid var(--main-color);
    background-repeat: no-repeat;
    background-position: center;
    background-image: url("/image/icon_arrow_right_mc.png");
    background-size: auto 50%;
    cursor: pointer;
}

.prev_style {
    left: 50%;
    transform: translate(-720px,  0) rotate(180deg);
}

.next_style {
    right: 50%;
    transform: translate(720px, 0);
}

.pagination_wrap {
    position: absolute;
    top: 10px;
    right: 10px;
}

.swiper-pagination-total {
    color: #888;
    font-size: 12px;
}

.swiper-pagination-fraction {
    color: #888;
    font-size: 12px;
}

.swiper-pagination-current {
    font-size: 17px;
    color: var(--main-color);
}

/* swiper btn style end */


/* btn_search start */
.btn_search_wrap {
    width: 60px;
    height: 100%;
    position: absolute;
    bottom: 0;
    right: 0;
}

.btn_search_wrap button {
    display: block;
    width: 100%;
    height: 100%;
    text-indent: -999999px;
    border: 1px solid var(--main-color);
    background-repeat: no-repeat;
    background-size: auto 60%;
    background-position: center;
    background-image: url("/image/icon_search-white.png");
    background-color: var(--main-color);
}


/* selectbox start */
.selectbox {
    position: relative;
    min-width: 200px;
    height: 40px;
    /*height: var(--select-height);*/
    line-height: var(--select-height);
}

.selectbox.category,
.selectbox.location {
    padding-left: 50px;
    background-repeat: no-repeat;
    background-size: auto 40%;
    background-position: 15px center;
}

.selectbox.category {
    background-image: url("/image/category.png");
}

.selectbox.location {
    background-image: url("/image/location.png");
}

.selectbox .sb_title {
    width: 100%;
    height: 100%;
    line-height: var(--select-height);
    padding: 0 10px;
    border: 1px solid #ccc;
    background-image: url("/image/select_arrow.png");
    background-repeat: no-repeat;
    background-size: auto 10px;
    background-position: right 20px center;
    cursor: pointer;
}

.selectbox .sb_option_wrap {
    display: none;
    position: absolute;
    top: var(--select-height);
    left: 0;
    z-index: 88888;
    width: 100%;
    max-height: 300px;
    overflow-x: hidden;
    overflow-y: scroll;
    border: 1px solid #ccc;
    border-top: 0;
}

.selectbox.on .sb_option_wrap {
    display: block;
}

.selectbox .sb_option {
    width: 100%;
    height: 100%;
    font-size: 14px;
    line-height: var(--select-height);
    border-bottom: 1px solid #ccc;
    background-color: #fff;
    padding: 0 15px;
}

.selectbox .sb_option:hover {
    background-color: var(--main-color);
    color: #fff;
}

.selectbox .sb_option:last-child {
    border-bottom: 0;
}

/* selectbox end */


/* common start */
.sect {
    margin-bottom: 115px;
}

.main_title {
    display: inline-block;
    position: relative;
    font-size: 28px;
    font-weight: bold;
    line-height: 1;
    width: auto;
    margin-bottom: 42px;
}

.main_title:after {
    content: "";
    display: inline-block;
    width: 28px;
    height: 100%;
    position: absolute;
    top: 48%;
    right: -40px;
    transform: translateY(-50%);
    background-image: url(/image/icon_more.png);
    background-repeat: no-repeat;
    background-size: auto 70%;
    background-position: center;
    cursor: pointer;
}



/* common end */


/* filter start */


.cate_filter {
    width: 100%;
    position: relative;
    margin-bottom: 4rem;
}

.cate_filter .cf_bar {
    width: 100%;
    height: 60px;
    line-height: 60px;
    border: 1px solid #ccc;
    display: flex;
}

.cate_filter .cf_bar .cf_line {
    display: flex;
    width: calc(100% - 60px);
}

.cate_filter .cf_bar .cf_line_in {
    width: 100%;
    height: 100%;
    border-right: 1px solid #ccc;
    padding-left: 50px;
    background-repeat: no-repeat;
    background-size: auto 40%;
    background-position: 15px center;
}

.cate_filter .cf_bar .cf_line_in.cate_wrap,
.cate_filter .cf_bar .cf_line_in.location_wrap {
    padding-left: 0;
}

.cate_filter .cf_bar > div:last-child {
    border-right: 0;
}

/*.cate_filter .cf_bar .cf_location{*/
/*    background-image: url('/image/location.png');*/
/*}*/
/*.cate_filter .cf_bar .cf_category{*/
/*    background-image: url('/image/category.png');*/
/*}*/
.cate_filter .cf_bar .cf_input {
    background-image: url('/image/search.png');
}

.cate_filter .cf_bar input {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    font-size: 16px;
}

.cate_filter .cf_cont_box {
    display: none;
    min-height: 100px;
    border: 1px solid #ccc;
    border-top: 0;
    background-color: #f7f8fb;
    padding: 30px 20px;
    height: auto;
}

.filter.selectbox {
    height: 60px;
    line-height: 60px;
}

.filter.selectbox .sb_title {
    border: 0;
    font-size: 16px;
    color: #888;
}

.filter.selectbox .sb_option {
    font-size: 16px;
    cursor: pointer;
}

.filter_location_wrap {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    z-index: 5;
    width: 100%;
    min-height: 200px;
    background-color: #fff;
    border: 1px solid var(--main-color);
}

.filter_location_wrap .fl_top {
    display: none;
    height: 60px;
    line-height: 60px;
}

.filter_location_wrap .fl_top input {
    display: block;
    width: 100%;
    height: 60px;
    border: 0;
    border-bottom: 1px solid #ccc;
    padding: 0 20px;
    font-size: 15px;
}

.filter_location_wrap .fl_top input:focus {
    outline: 0;
}

.filter_location_wrap .fl_top button {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 60px;
    height: 60px;
    border: 0;
    background-color: transparent;
    background-image: url("/image/icon_search.png");
    background-repeat: no-repeat;
    background-size: auto 40%;
    background-position: center;
}

.filter_location_wrap .fl_btm {
    display: flex;
}

.filter_location_wrap .fl_btm .flt_location_name {
    width: 100%;
    height: auto;
    border-right: 1px solid #ccc;
    /*min-height: 200px;*/
}

.filter_location_wrap .fl_btm .flt_location_name ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    height: auto;
}

.filter_location_wrap .fl_btm .flt_location_name ul li {
    width: 25%;
    height: 45px;
    color: #555;
    font-size: 15px;
    line-height: 45px;
    text-align: center;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}

.filter_location_wrap .fl_btm .flt_location_name ul li:nth-child(4n) {
    border-right: 0;
}

.filter_location_wrap .fl_btm .flt_location_name ul li.on {
    color: #fff;
    background-color: var(--main-color);
}

.filter_location_wrap .fl_btm .flt_location_name {
}

/* filter end */

/*psn_info_summary_box*/
body{
    position: relative;
}
body.on::after{
    content: '';
    width: 100%;
    height: 100%;
    background-color: #3333337a;
    position: absolute;
    top:0;
    left: 0;
    z-index: 888888;

}
.psn_info_summary_box{
    position:fixed;
    top:50%;
    left:50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 30px);
    max-width: 900px;
    height: 900px;
    overflow-y: scroll;
    border:2px solid var(--main-color);
    z-index: 9999999999;
    background-color: #ffffff;
    font-size: 14px;
    display: none;
    height: 80%;

}
.psn_info_summary_box.on{
    display: block;
}
.psn_info_summary_box .close_btn{
    margin-bottom: 20px;
    display: flex;
    justify-content: end;
    background-color: var(--main-color);
    padding: 10px;
    color: #ffffff;
    position: sticky;
    width: 100%;
    left: 0;
    top: 0;
}
.psn_info_summary_box .content{
    padding: 20px;
    margin-top: 20px;

}
.psn_info_summary_box .content h3{
    font-size: 24px;
    text-align: center;
    margin-bottom: 20px;
}
.psn_info_summary_box .close_btn img{
    width: 20px;
    height: 20px;
}
/*psn_info_summary_box end*/
/*usg_info_summary_box start*/

.usg_info_summary_box{
    position:fixed;
    top:50%;
    left:50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 30px);
    max-width: 900px;
    height: 900px;
    overflow-y: scroll;
    border:2px solid var(--main-color);
    z-index: 9999999999;
    background-color: #ffffff;
    font-size: 14px;
    padding: 30px;
    display: none;
    height: 80%;
}
.usg_info_summary_box.on{
    display: block;
}
.usg_info_summary_box .top_wrap{
    display: flex;
    justify-content: center;
    position: relative;
    margin-bottom: 3rem;

}
.usg_info_summary_box .top_wrap .close_btn {
    width: 30px;
    height: 30px;
    position: absolute;
    top:0;
    right: 0;
}
.usg_info_summary_box  .top_wrap .close_btn i{
   font-size: 24px;
}
.usg_info_summary_box .usg_info_title{
    padding: 10px 0;
    /*margin-bottom: 20px;*/
    margin-top: 30px;
}
.usg_info_summary_box .usg_info_title h1{
    text-align: center;
    font-size: 24px;
}
.usg_info_summary_box .usg_info_logo{
    position: absolute;
    top:0;
    left: 0;
}
.usg_info_summary_box .usg_info_logo img{
    width: 68px;
}
.usg_info_summary_box .term_wrap h2{
    padding: 10px;
    background-color: var(--main-color);
    color: #ffffff;
}
.usg_info_summary_box .term_wrap .term_cont{
    padding: 20px 10px;
}
.usg_info_summary_box .term_wrap .term_cont p{
    margin-bottom: 10px;
}
.usg_info_summary_box .term_wrap .term{
    margin-bottom: 20px;
}

    /*usg_info_summary_box end*/


/* footer start */
footer {
    padding: 3rem 0 10rem 0;
    background-color: #F7F8FB;
    /*position:fixed;*/
    /*bottom: 0;*/
    /*left: 0;*/
    /*z-index: 888999;*/
    /*width: 100%;*/
}

footer .wrap_in {
    display: flex;
}

footer .wrap_in .ft_l {
    width: 150px;
    background-image: url('/image/toolro_logo.png');
    background-size: auto 20px;
    background-repeat: no-repeat;
    background-position: center 24px;
}

footer .wrap_in .ft_info_wrap {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    width: calc(100% - 150px);
    /*gap: 20px;*/
}

footer .wrap_in .ft_info_wrap .ft_info_top {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #cccccc;
    padding: 20px 0;
}

footer .wrap_in .ft_info_wrap .ft_info_top .footer_menu {
    display: flex;
    color: #333333;
    font-size: 16px;
}

footer .wrap_in .ft_info_wrap .ft_info_top .footer_menu li {
    margin-right: 10px;
}

footer .wrap_in .ft_info_wrap .ft_info_top .footer_menu li a {
    display: block;
    color: #333;
    line-height: 32px;
}

footer .wrap_in .ft_info_wrap .ft_info_top .footer_menu li a::after {
    content: '|';
    width: 10px;
    height: 100%;
    display: inline;
    margin-left: 10px;
}

footer .wrap_in .ft_info_wrap .ft_info_top .footer_menu li:last-child a::after {
    display: none
}

footer .wrap_in .ft_info_wrap .ft_info_top .family_site {
    color: #888888;
    font-size: 14px;
    display: flex;
    align-items: center;
    line-height: 2;
    position: relative;

}

footer .wrap_in .ft_info_wrap .ft_info_top .family_site > a {
    border: 1px solid #cccccc;
    padding: 0 10px;
    display: block;
    background-color: #ffffff;
}

footer .wrap_in .ft_info_wrap .ft_info_top .family_site a img {
    width: 30px;
}

footer .wrap_in .ft_info_wrap .ft_info_top .family_site .depth02 {
    display: none;
    position: absolute;
    bottom: -100%;
    right: 0;
    width: 100%;
    height: 100%;

}
footer .wrap_in .ft_info_wrap .ft_info_top .family_site .depth02 li{
    background-color: #ffffff;
    padding: 0 10px;
    color: #555555;
}
footer .wrap_in .ft_info_wrap .ft_info_top .family_site .depth02 li>a{

}
footer .wrap_in .ft_info_wrap .ft_info_top .family_site .depth02.on {
    display: block;

}

footer .wrap_in .ft_info_wrap .ft_info_bottom {
    padding: 20px 0;
}

footer .wrap_in .ft_info_wrap .ft_info_bottom .footer_company_info {
    display: flex;
    color: #888888;
    flex-wrap: wrap;
    font-size: 12px;
}

footer .wrap_in .ft_info_wrap .ft_info_bottom .footer_company_info li {
    display: inline-block;
}

footer .wrap_in .ft_info_wrap .ft_info_bottom .footer_company_info li::after {
    content: '|';
    width: 10px;
    height: 100%;
    display: inline;
    margin: 0 5px;
}

footer .wrap_in .ft_info_wrap .ft_info_bottom .footer_company_info li:last-child::after {
    display: none;
}
/*footer .wrap_in .ft_c .ftc_bottom {*/
/*    !* padding-top: 10px; *!*/
/*    color: #555;*/
/*    line-height: 1.8;*/
/*}*/

/*footer .wrap_in .ft_r {*/
/*    margin-left: auto;*/
/*}*/

/* footer end */

/* ckeditor5 image_resize css start */
.resize-handle {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 10px;
    height: 10px;
    background-color: #444;
    cursor: se-resize;
}

.image-resizable {
    position: relative;
}

.image-resizable img {
    width: 100%;
}
/* ckeditor5 image_resize css end */



@media screen and (max-width: 1280px) {
    .sect {
        margin-bottom: 6rem;
    }

    .wrap_in {
        width: 100%;
        padding: 0 20px;
    }
}

@media screen and (max-width: 1120px) {

}

@media screen and (max-width: 1119px) {
    header .hd_bg {
        width: 0;
    }
}

@media screen and (max-width: 960px){
    .pc {
        display: none;
    }

    .ta {
        display: block;
    }
}

@media screen and (max-width: 786px){
    .cate_filter{
        margin-bottom: 19.5rem;
    }
    .filter.selectbox .sb_title{
        font-size: 14px;
    }

    .cate_filter .cf_bar {
        border: 1px solid transparent;
    }

    .cate_filter .cf_bar .cf_line_in.cate_wrap, .cate_filter .cf_bar .cf_line_in.location_wrap {
        width: 100%;
    }

    .cate_filter .cf_bar .cf_line {
        width: 100%;
        flex-direction: column;
        gap: 5px;
    }

    .cate_filter .cf_bar .cf_input {
        width: 100%;
        height: 60px;
        border: 1px solid #cccccc;
        position: relative;
    }

    .cate_filter .cf_bar input {
        height: 55px;
        padding: 0 12px;
        font-size: 13px;
    }

    .cmpny_product .cpl_option .wrap_in .tap_wrap {
        margin-top: 21rem;
    }

    .cate_filter .cf_bar .cf_line_in.cate_wrap, .cate_filter .cf_bar .cf_line_in.location_wrap {
        border: 1px solid #ccc;
    }

    .btn_search_wrap {
        position: absolute;
        bottom: 0;
        right: 0;
    }
}

@media screen and (max-width: 720px) {
    footer .wrap_in {
        flex-direction: column;
    }

    footer .wrap_in .ft_l {
        width: 150px;
        background-image: url('/image/toolro_logo.png');
        background-size: auto 20px;
        background-repeat: no-repeat;
        height: 50px;
        background-position: left 24px;
    }

    footer .wrap_in .ft_info_wrap {
        width: 100%;
    }
}

@media screen and (max-width: 680px) {
    footer .wrap_in .ft_info_wrap {
        flex-direction: column;
    }

    footer .wrap_in .ft_r {
        margin-left: 0;
        margin-top: 24px;
    }
}


@media screen and (max-width: 600px) {
    .selectbox .sb_title{
        padding: 0;
    }
    .sub_title2{
        font-size: 15px;
    }
    .filter.selectbox{
        height: 40px;
        line-height: 40px;
    }
    .cate_filter{
        margin-bottom: 17rem;
    }
    .cate_filter .cf_bar .cf_input{
        height: 50px;
    }
    .cate_filter .cf_bar input{
        height: 40px;
        padding: 0;
    }
    .cmpny_product .cpl_option .wrap_in .tap_wrap{
        margin-top: 100px;
    }

    .ta {
        display: none;
    }

    .mo {
        display: block;
    }

    .wrap_in {
        padding: 0 16px;
    }
}
@media screen and (max-width: 550px){
    footer .wrap_in .ft_info_wrap .ft_info_top .footer_menu{
        font-size: 14px;
        order: 1;
        flex-wrap: wrap;
    }
    footer .wrap_in .ft_info_wrap .ft_info_top .family_site{
        font-size: 12px;
        order: 0;
        line-height: 3;
        margin-bottom: 12px;
    }
    footer .wrap_in .ft_info_wrap .ft_info_bottom .footer_company_info{
        font-size: 11px;
    }
    footer .wrap_in .ft_info_wrap .ft_info_top{
        flex-direction: column;
    }
    footer .wrap_in .ft_info_wrap .ft_info_top .family_site{
        display: block;
        margin-right: auto;
    }
}
    @media screen and (max-width: 490px) {
    /*    제품찾기*/
        .cate_filter {
            margin-bottom: 17rem;
        }
    footer .wrap_in {
        flex-direction: column;
    }

    footer .wrap_in .ft_l {
        height: 50px;
    }

    footer .wrap_in .ft_info_wrap {
        width: 100%;
    }
}

/*커스텀팝업 시작*/
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup {
    max-width: 500px !important;
    width: calc(100% - 30px) !important;
    background-color: #ffffff;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;

}
.popup .img_wrap{
    background-color: var(--main-color);
    width: 100%;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.popup .img_wrap img{
    width: 40px;
    height: 40px;
    margin: 0 auto;
}
.popup .bottom{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 10px;
    word-break: keep-all;
}
.popup .bottom p{
    font-size: 16px !important;
    text-align: center;
    color: #555555;
}
.popup .bottom label{
    display: flex;
    align-items: center;
    margin-top: 8px;
    font-size: 14px;
    color: #888888;
    cursor: pointer;
}
.popup .bottom label input[type="checkbox"]{
    margin-right: 8px;
    position: relative;
    border: 0;
}
.popup .bottom label input[type="checkbox"]::before{
    content: '';
    width: 110%;
    height: 110%;
    background-color: #ffffff;
    position: absolute;
    top: 0;
    left: 0;
    border: 1px solid var(--main-color);
}
.popup .bottom label input[type="checkbox"]:checked::after{
    content: '';
    position: absolute;
    width: 110%;
    height: 110%;
    top: 0;
    left: 0;
    z-index: 999;
    color: var(--main-color);
    background: url('/image/icon_popup_check-o.png') center / 100% 100% no-repeat;
}
.popup .bottom .btn_wrap{
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    justify-content: center;
}
.popup .bottom button {
    margin-top: 30px;
    /*margin-right: 5px;*/
    background-color: var(--main-color);
    color: #ffffff;
    width: 100px;
    border-radius: 20px;
    padding: 10px 0;
}
.popup .bottom .btn_wrap .popup-cancel{
    border: 1px solid var(--main-color);
    color: var(--main-color);
    background: #ffffff;
}
/*커스텀팝업 끝*/

