@charset "UTF-8";  

/* font */
@import url(../css/font/notosanskr.css); /* Noto Sans KR */
@import url('//spoqa.github.io/spoqa-han-sans/css/SpoqaHanSans-kr.css');
@font-face {
    font-family: "HappinessR";
    src: url("./font/Happiness-Sans-Regular.ttf") format("truetype"); /* embedded-opentype, woff, truetype */
    font-weight: normal;
}


.spoka * { font-family: 'Spoqa Han Sans', 'Spoqa Han Sans JP', 'Sans-serif'; }
.notosanskr * {font-family: 'Noto Sans KR' ,serif;}
.color_primary{
    color: #ffdc36 !important;
}
/* common */
input::placeholder{
    color: #999999;
}
input {
    font-size: 15px;
    height: 35px;
    width: 100%;
    border: none;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 0 10px;
    box-sizing: border-box;
}
select{
    height: 35px;
    width: 100%;
    border: none;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 0 10px;
    box-sizing: border-box;
}
.wrap_1200{
    width: 1200px; margin: 0 auto;
}
.wrap{width: 1030px; margin: 0 auto;}
.hidden{display: none !important;}
.hidden2{opacity: 0;}
.borderNone{border:none !important;}
.flex_wrap{display: flex; justify-content: space-between; align-items: center;}
.flex_center{display: flex; justify-content: center; align-items: center;}
.mo_only{display: none !important;}
.mo1240_only{display: none !important;}
.mo1070_only{display: none !important;}
.btn button{
    width: 100%;
    font-size: 16px;
}
.box_shadow{
    box-shadow: 1px 1px 20px #00000033;
}
.btn_wrap{
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn.btn_primary button{
    background: #ffdc36;
    box-sizing: border-box;
    color: #000;
    height: 52px;
    border: 1px solid #ffdc36;
    border-radius: 4px;
    font-weight: bold;
}
.btn.btn_white button{
    background: #333;
    box-sizing: border-box;
    color: #fff;
    height: 52px;
    border: 1px solid #333;
    border-radius: 4px;
    font-weight: bold;
}
.btn.btn_grey button{
    background: #cccccc;
    box-sizing: border-box;
    color: #fff;
    height: 52px;
    border: 1px solid #cccccc;
    border-radius: 4px;
}

.more_btn button{
    background: #333333;
    box-sizing: border-box;
    color: #fff;
    height: 35px;
    border: 1px solid #333;
    border-radius: 4px;
    font-weight: bold;
}
.btn_wrap .btn button{
    font-weight: 700;
}
.tac{
    text-align: center;
}
.tar{
    text-align: right;
}
.w_100per{
    width: 100%;
}
.w_120{
    width: 120px !important;
}
.w_130{
    width: 130px !important;
}
.w_150{
    width: 150px !important;
}
.w_160{
    width: 160px !important;
}
.w_280{
    width: 280px !important;
}
.mr-10{
    margin-right: 10px !important;
}
.mt-0{
    margin-top: 0 !important;
}
.mt-10{
    margin-top: 10px !important;
}
.mt-20{
    margin-top: 20px !important;
}
.mt-30{
    margin-top: 30px !important;
}
.mt-40{
    margin-top: 40px !important;
}
.mt-60{
    margin-top: 60px !important;
}
.mt-80{
    margin-top: 80px !important;
}

/* 라디오 */
input[type=checkbox] { 
    display: none; 
} 
input[type=checkbox] + label.checkbox_style1 { 
    display: inline-block; 
    cursor: pointer; 
    position: relative; 
    padding-left: 31px; 
    margin-right: 15px; 
    font-size: 1rem; 
} 
input[type=checkbox]+ label.checkbox_style1:before { 
    content: ""; 
    display: inline-block; 
    width: 20px; 
    height: 20px; 
    margin-right: 10px; 
    position: absolute; 
    left: 0; 
    bottom: -1px; 
    background-color: #fff; 
    border-radius: 2px; 
    background: url("../images/checkbox_off1.png"); 
    background-size: cover;
} 
input[type=checkbox]:checked + label.checkbox_style1:before { 
    content: ""; 
    width: 20px; 
    height: 20px; 
    background: url("../images/checkbox_on1.png"); 
    background-size: cover;
}



input[type=checkbox] + label.checkbox_style2 { 
    display: inline-block; 
    cursor: pointer; 
    position: relative; 
    padding-left: 35px; 
    margin-right: 15px; 
    font-size: 16px; 
} 
input[type=checkbox]+ label.checkbox_style2:before { 
    content: "";
    display: inline-block;
    width: 28px;
    height: 28px;
    margin-right: 10px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #fff;
    border-radius: 2px;
    background: url("../images/checkbox_off2.png");
    /* background-size: cover; */
} 
input[type=checkbox]:checked + label.checkbox_style2:before { 
    content: ""; 
    width: 28px; 
    height: 28px; 
    background: url("../images/checkbox_on2.png"); 
    /* background-size: cover; */
}


input[type=checkbox] + label.checkbox_style3 { 
    display: inline-block; 
    cursor: pointer; 
    position: relative; 
    padding-left: 22px; 
    margin-right: 15px; 
    font-size: 1rem; 
} 
input[type=checkbox]+ label.checkbox_style3:before { 
    content: ""; 
    display: inline-block; 
    width: 16px; 
    height: 12px; 
    margin-right: 10px; 
    position: absolute; 
    left: 0; 
    bottom: 4px; 
    background-color: #fff; 
    border-radius: 2px; 
    background: url("../images/checkbox_off3.png"); 
    background-size: cover;
} 
input[type=checkbox]:checked + label.checkbox_style3:before { 
    content: ""; 
    width: 16px; 
    height: 12px; 
    background: url("../images/checkbox_on3.png"); 
    background-size: cover;
}


.radio_wrap.flex{
    display: flex;
    align-items: center;
}
.radio_wrap.flex label{
    flex: none;
}
.radio_wrap.flex input{
    margin-left: 10px;
}

input[type=radio] { 
    display: none; 
} 
input[type=radio] + label.radio_style1 { 
    display: inline-block; 
    cursor: pointer; 
    position: relative; 
    padding-left: 31px; 
    margin-right: 15px; 
    font-size: 1rem; 
} 
input[type=radio]+ label.radio_style1:before { 
    content: ""; 
    display: inline-block; 
    width: 20px; 
    height: 20px; 
    margin-right: 10px; 
    position: absolute; 
    left: -10px; 
    top: -5px; 
    background-color: #fff; 
    border-radius: 2px; 
    background: url("../images/checkbox_off1.png"); 
    background-size: cover;
} 
input[type=radio]:checked + label.radio_style1:before { 
    content: ""; 
    width: 20px; 
    height: 20px; 
    background: url("../images/checkbox_on1.png"); 
    background-size: cover;
}



input[type=radio] + label.radio_style2 { 
    display: inline-block; 
    cursor: pointer; 
    position: relative; 
    padding-left: 35px; 
    font-size: 16px; 
} 
input[type=radio]+ label.radio_style2:before { 
    content: "";
    display: inline-block;
    width: 28px;
    height: 28px;
    margin-right: 10px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #fff;
    border-radius: 2px;
    background: url("../images/checkbox_off2.png");
    /* background-size: cover; */
} 
input[type=radio]:checked + label.radio_style2:before { 
    content: ""; 
    width: 28px; 
    height: 28px; 
    background: url("../images/checkbox_on2.png"); 
    /* background-size: cover; */
}

/* header */
header{
    background: #fff;
}
header .header_top{
    height: 40px;
    background: #f4f4f4;
}
header .header_top .wrap_1200{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
header .header_top .wrap_1200 .left{
    line-height: 40px;
    font-size: 14px;
    color: #666666;
}

header .header_top .wrap_1200 .left span{
    font-weight: bold;
    color: #ffdc36;
}
header .header_top .wrap_1200 .right{
    position: relative;
}
header .header_top .wrap_1200 .right .user{
    line-height: 40px;
    font-size: 14px;
    color: #666666;
    display: flex;
    align-items: center;
    cursor: pointer;
}
header .header_top .wrap_1200 .right .user:hover ul.user_info{
    display: block;
}
header .header_top .wrap_1200 .right ul.user_info{
    position: absolute;
    right: 0;
    top: 40px;
    z-index: 2;
    box-shadow: 1px 1px 20px #00000033;
    background: #fff;
    display: none;
}
header .header_top .wrap_1200 .right ul.user_info li button{

    width: 130px;
    text-align: center;
    height: 38px;
    line-height: 38px;
    font-size: 15px;
}

header .header_top .wrap_1200 .right .user i.drop{
    font-size: 10px;
    line-height: 1;
    padding-left: 3px;
    color: #666666;

}
header .header_bottom{
    border-bottom: 1px solid #eeeeee;
}
header .header_bottom .wrap_1200{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}
header .header_bottom .wrap_1200 .right{
}
header .menu_btn{
    margin-left: 30px;
}
header .header_bottom .wrap_1200 .right nav ul{
    height: 100%;
    display: flex;
    align-items: center;
}
header .header_bottom .wrap_1200 .right nav ul li{
    margin-left: 40px;   
}
header .header_bottom .wrap_1200 .right nav ul li a{
    display: inline-block;
    font-size: 17px;
    font-weight: 500;
    position: relative;
}
header .header_bottom .wrap_1200 .right nav ul li  a i.alert{
    position: absolute;
    top: -2px;
    left: 33px;
    background: #ffdc36;
    border: 2px solid #fff;
    color: #000;
    padding: 0 5px;
    height: 16px;
    line-height: 15.9px;
    text-align: center;
    font-size: 11px;
    font-weight: bold;
    border-radius: 16px;
}
header .header_bottom .wrap_1200 .right nav ul li.bell a i.alert{
    left: 15px;
    top: -6px;
}
header .header_bottom .wrap_1200 .right nav ul li.cart a i.alert{
    left: 16px;
    top: -6px;
}
header .header_bottom .wrap_1200 .right .ham_btn{
    cursor: pointer;
}
header .header_bottom .wrap_1200 .right .ham_btn img{
    width: 15px;
}


header .menu_btn{
    cursor: pointer;
}

header .menu {
    width: 340px;
    height: 100%;
    position: fixed;
    z-index: 21;
    right: -350px;
    top: 0;
    background: #fff;
    padding: 20px 20px;
    box-sizing: border-box;
    box-shadow: -0.2rem 0rem 0.625rem rgb(0 0 0 / 8%);
    transition: .3s;
}

header .menu.on {
    width: 100%;
    right: 0;
}

header .menu .menu_close {
    position: absolute;
    top: 26px;
    right: 20px;
    cursor: pointer;
}
header .menu_btn img{
    width: 15px;
}
header .menu .menu_close img{
    width: 15px;
}

header .menu .search {
    margin-top: 20px;
}

header .menu .search input {
    width: 100%;
}

header .menu .menu_list {
    margin-top: 20px;
}

header .menu .menu_list ul li {
    border-bottom: 1px solid #dddddd;
    position: relative;
}

header .menu .menu_list ul li a {
    padding: 20px 10px;
    display: inline-block;
    width: 100%;
    font-size: 16px;
    box-sizing: border-box;
}

header .menu .menu_list ul li i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
}

header .menu ul.lnb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    border: 1px solid #dddddd;
    margin-top: 20px;
    border-radius: 4px;
}

header .menu ul.lnb li {
    font-size: 12px;
    vertical-align: sub;
    width: 33.33%;
    padding: 10px 0;
    text-align: center;
    box-sizing: border-box;
    border-right: 1px solid #dddddd;
    border-bottom: 1px solid #dddddd;
}

header .menu ul.lnb li:nth-child(3n) {
    border-right: none;
}

header .menu ul.lnb li:nth-child(n+4) {
    border-bottom: none;
}

header .menu ul.lnb li a {
    font-size: 13px;
    transition: .3s;
}

header .menu ul.lnb li:hover a {
    color: #0383CA
}


header .page{
    position: relative;
    padding: 30px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
}
header .page i{
    background: #ffdc36;
    border: 2px solid #fff;
    color: #fff;
    padding: 0 5px;
    height: 16px;
    line-height: 15.9px;
    text-align: center;
    font-size: 11px;
    border-radius: 16px;
    position: relative;
    top: 1px;
    left: 8px;
}
header .page.arrow{
    background: url(../images/i_menu_arrow.png) no-repeat right center; 
    background-size: 7.5px;
}
header .page.grey{
    color: #999999;
}
    
  header .page::after{
    display: inline-block;
    content: '';
    font-size: 14px;
    margin-right: 5px;
    position: absolute;
    right: 0;
    /* background: url(../images/i_menu_arrow.png) no-repeat center center; width: 20px; height: 12px; */
  }
  
  header .page.on::after{
      content: '';
      background: url(../images/arrow_up.png) no-repeat center center; width: 20px; height: 12px;
    }
    
  
    header .page.on>span{
    font-weight: bold;
    color: #000; 
  }




/* footer */
.content{
    min-height : 40%;

}
footer{
    background: #fafafa;
    position : relative;
    transform : translateY(0%);
}
footer .footer_top{
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
    height: 43px;
    box-sizing: border-box;
}
footer .footer_top .wrap{
    border-left: 1px solid #eeeeee;
    border-right: 1px solid #eeeeee;
    padding: 0 20px;
    box-sizing: border-box;
}
footer .footer_top .wrap .left ul.list{
    height: 100%;
    display: flex;
    align-items: center;
    color: #666666;
    font-weight: bold;
}
footer .footer_top .wrap .left ul.list li{
    margin-right: 70px;
}
footer .footer_bottom .wrap{
    display: flex;
    border-left: 1px solid #eeeeee;
    border-right: 1px solid #eeeeee;
    box-sizing: border-box;
}
footer .footer_bottom .wrap ul{
    width: 50%;   
    padding: 30px 20px;
    box-sizing: border-box;
}
footer .footer_bottom .wrap ul li{
    color: #666666;
    margin-bottom: 15px;
    font-size: 14px;
    display: flex;
}
footer .footer_bottom .wrap ul li span{
    color: #999999;
    width: 126px;
    display: inline-block;
    flex: none;
}
footer .footer_bottom .wrap ul li:last-child{
    margin-bottom: 0;
}
footer .footer_bottom .wrap ul li.copyright{
    color: #999999;
}
footer .footer_bottom .wrap ul li.copyright span{
    width: 100%;
}
footer .footer_bottom .wrap ul.info1{
    border-right: 1px solid #eeeeee;
}
/* pager */             
.boardPager{             
    margin-top: 4.375rem;             
}             
.boardPager ul { display:flex; justify-content: center; align-items: center; margin-bottom: 2.5rem; font-family: 'nanumsquare',serif;}              
.boardPager ul li { margin: 0 0.1875rem; }              
.boardPager ul li { 
    display: inline-block; 
    vertical-align: middle; 
    text-align: center; 
    color: #9f9f9f; 
    font-size: 0.75rem; 
    font-weight: 700; 
    background-repeat: no-repeat; 
    background-size: cover; 
    width: 1.875rem; 
    height: 1.875rem; 
    border: none;
    background: #FFFFFF;             
    border: 0.0625rem solid #DFE3E8;             
    border-radius: 3px;
    flex: none;
}               
.boardPager ul li a { 
    display: inline-block; 
    font-size: 0.875rem;  
    width: 1.875rem; 
    height: 1.875rem; 
    line-height: 1.875rem; 
    color: #666666; 
    font-weight: 500; 
    /* border: 1px solid #fff0;           
    box-sizing: border-box;
    border-radius: 3px;    */
}              
.boardPager ul li.pager{position: relative;}             
.boardPager ul li.pager a img{position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 6px;}             
.boardPager ul li.pager.end a img{width: 12px;}
.boardPager ul li.pager.on a{ opacity: .5;}             
/* .boardPager ul li.pager.on a img{filter: brightness(0) invert(1);} */
.boardPager ul li.pagerNum.on { background: rgba(255, 255, 255, 0);}              
.boardPager ul li.pagerNum.on a { background: #f4f4f4; color: #666666; width: 100%; height: 100%; display: inline-block; border: 1px solid #f4f4f4;}              
.boardPager ul li.pagerNum{
    border: none;
}
/* modal */
.modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; display: flex; z-index: 100; justify-content: center; align-items: center; } 
.modal_open { cursor:pointer; } 
.modal_overlay { background-color: rgba(0, 0, 0, 0.5); width:100%; height: 100%; position: absolute; z-index: 24; } 
.modal_content { background-color: white; text-align: left; position: relative; z-index: 25; border-radius: 8px; box-shadow: 0.125rem 0.125rem 2rem 0.25rem rgb(0 0 0 / 20%); } 
.modal_content .modalContWrap { font-size: 0.9375rem;} 
.modal .modal_close{
    cursor: pointer;
}
.modal .modal_close img{
    width: 1.8125rem;
}
.modal_content .modalContWrap{font-size: 1.125rem; color: #000;}
.modal .modal_close img{width: 18px;}
.modal_content .modalContWrapTab { text-align: left; } 
.modal_content .modal_scroll { height: 31.25rem; overflow-y: scroll; }
.modal_sm.w_480{
    width: 480px;
}
.modal_sm.sm2 .modal_con .head h2{
    font-size: 20px;
    margin-bottom: 16px;
    font-weight: bold;
}
.modal_sm.sm2 .modal_con .head {

}
.modal_480 { 
    width: 480px; 
    /* max-height: 40.625rem;  */
    box-sizing: border-box;
} 
.modal_480 .modal_con{
    padding: 30px 24px; 
    font-size: 15px;
    box-sizing: border-box;
    overflow-y: scroll;
}
.modal_480 .modal_con .head h2{
    font-size: 20px;
    margin-bottom: 16px;
    font-weight: bold;
}

.modal_680 { 
    width: 680px; 
    /* max-height: 40.625rem;  */
    box-sizing: border-box;
} 
.modal_680 .modal_con{
    padding: 30px 24px; 
    font-size: 15px;
    box-sizing: border-box;
    overflow-y: scroll;
}
.modal_680 .modal_con .img img{
    width: 100%;
}
.modal_680 .modal_con .head h2{
    font-size: 20px;
    margin-bottom: 16px;
    font-weight: bold;
}
.modal_con .head{
    display: flex;
    align-items:flex-start;
    justify-content: space-between;
    border-bottom: 1px solid #000;
}
.modal_con ul.modal_con_list > li .left {
    margin-right: 25px;
}
.modal_con ul.modal_con_list > li .left .date{
    color: #999999;
    font-size: 13px;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
}
.modal_con ul.modal_con_list > li .left .date i{
    display: flex;
    align-items: center;
    margin-left: 5px;
}
.modal_con ul.modal_con_list > li .left .title{
    font-size: 15px;
}
.modal_con ul.modal_con_list > li .left .title span{
    font-weight: 500;
}
.modal_con ul.modal_con_list > li .right .btn button{
    height: 38px;
    font-size: 15px;
}
.modal_con ul.modal_con_list > li:first-child{
    border-top: 1px solid #000;
}
.modal_con ul.modal_con_list > li{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-top: 1px solid #eeeeee;
    box-sizing: border-box;
    position: relative;
}
.modal_con ul.modal_con_list > li:last-child{
    border-bottom: 1px solid #eeeeee;
}
.modal_con ul.modal_con_list.basket > li .left{
    display: flex;
    align-items: center;
}
.modal_con ul.modal_con_list.basket > li .left .basket_product{
    display: flex;
    align-items: center;
}
.modal_con ul.modal_con_list.basket > li .left .basket_product .img{
    width: 80px;
    height: 80px;
    margin-right: 12px;
    flex: none;
}
.modal_con ul.modal_con_list.basket > li .left .basket_product .name{
    font-size: 15px;
}
.modal_con ul.modal_con_list.basket > li .left .basket_product ul.price_info{
    display: flex;
    align-items: flex-end;
    margin-top: 8px;
    margin-bottom: 8px;
    font-size: 1.125rem;
}
.modal_con ul.modal_con_list.basket > li .left .basket_product ul.price_info .per{
    color: #ffdc36;
}
.modal_con ul.modal_con_list.basket > li .left .basket_product ul.price_info .price{
    margin-left: 0.4375rem;
    margin-right: 0.4375rem;
}
.modal_con ul.modal_con_list.basket > li .left .basket_product ul.price_info .price2{
    text-decoration: line-through;
    color: #999;
    font-size: 0.875rem;
}
.modal_con ul.modal_con_list.basket > li .left .basket_product .option{
    color: #666666;
    font-size: 13px;
}
.modal_con ul.modal_con_list.basket > li .right{
    display: flex;
    align-items: center;
}
.modal_con ul.modal_con_list.basket > li .right .increase_bar{
    display: flex;
    align-items: center;
    border: 1px solid #eeeeee;
    border-radius: 5px;
    box-sizing: border-box;
    height: 30px;
    margin-right: 30px;
}
.modal_con ul.modal_con_list.basket > li .right .increase_bar input{
    width: 28px;
    border: none;
    height: 100%;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    background: #fff;
    color: #999999;
}
.modal_con ul.modal_con_list.basket > li .right .increase_bar #result{
    width: 35px;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
}
.modal_con ul.modal_con_list.basket > li .right .total_price .del{
    position: absolute;
    right: 0;
    top: 20px;
    color: #999999;
    font-size: 13px;
}
.modal_con .sub_head {
    padding-bottom: 9px;
    border-bottom: 1px solid #cccccc;
    margin-top: 30px;
}
.modal_con .sub_head h3{
    font-size: 16px;
    font-weight: 500;
    color: #666666;
}
.modal_con .order_info_wrap .info_match{
    margin-top: 15px;
    margin-bottom: 15px;
}
.modal_con .order_info_wrap ul.order_info{

}
.modal_con .order_info_wrap ul.order_info li{
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.modal_con .order_info_wrap ul.order_info li .left h5{
    flex: none;
    width: 120px;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    color: #666666;
}
.modal_con .order_info_wrap ul.order_info li .right{
    width: 100%;
    display: flex;
    align-items: center;
}
.modal_con .order_info_wrap ul.order_info li .right button.search{
    width: 50px;
    height: 35px;
    color: #ffdc36;
    border: 1px solid #ffdc36;
    margin-left: 10px;
    border-radius: 5px;
}
.modal_con .order_info_wrap ul.order_info li .right input{
    width: 100%;
    font-size: 14px;
}
.modal_con .total{
    margin-top: 16px;
    text-align: right;
    display: flex;
    justify-content: right;
    align-items: baseline;
}
.modal_con .total .txt{
    color: #999999;
    font-size: 15px;
    margin-right: 10px;
}
.modal_con .total .price{
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: baseline;
}
.modal_con .total .won{
    font-size: 16px;
    font-weight: 500;
    margin-left: 2px;
}
.modal_con .category{
    margin-top: 10px;
}
.modal_md { 
    width: 460px; 
    /* max-height: 40.625rem;  */
    box-sizing: border-box;
} 
.modal_md .modal_con{
    padding: 30px 24px; 
    font-size: 15px;
    box-sizing: border-box;
    max-height: 800px;
    overflow-y: scroll;
}
.modal_md .modal_con .head h2{
    font-size: 20px;
    margin-bottom: 16px;
    font-weight: 500;
}
.modal_sm {width: 300px; text-align: center;}
.modal_sm .modal_con{
    padding: 30px 24px; 
    font-size: 15px;
    box-sizing: border-box;
}
.modal_btn{
    border-top: 1px solid #eeeeee;
    text-align: center;
}
.modal_btn.flex{
    display: flex;
    justify-content: center;
}
.modal_btn button{
    color: #999999;
    font-size: 15px;
    width: 100%;
    height: 40px;
}
.modal_btn button.color_primary{
    color:  #000 !important;
}
.modal_btn button a{
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}
.modal_btn button.payment{
    color: #fff;
    background: #ffdc36;
    margin: 10px 0;
    padding: 0 50px;
    width: auto;
    border-radius: 3px;
    font-weight: 700;
    font-size: 16px;
}

.modal_btn button.payment.cancer{
    background: #fff;
    color: #ffdc36;
    border: 1px solid #ffdc36;
    margin: 10px 0;
    padding: 0 50px;
    width: auto;
    border-radius: 3px;
    font-weight: 700;
    font-size: 16px;
    box-sizing: border-box;
}

.modal_btn button.payment span{
    font-weight: 500;
    font-size: 15px;
}
.modal .flex_wrap a.input_btn{
    background: #333333;
    color: #fff;
    flex: none;
    width: 60px;
    height: 35px;
    line-height: 35px;
    font-size: 15px;
    text-align: center;
    border-radius: 3px;
    margin-top: 12px;
    margin-left: 10px;
}
ul.associ li {
    margin-bottom: 20px;
}
ul.associ li input[type="radio"]{
    display: none;
}
ul.associ li label{
    cursor: pointer;
    padding: 20px 22px;
    display: flex;
    justify-content: space-between;
    border: 1px solid #ffdc36;
    border-radius: 5px;
    color: #ffdc36;
    box-sizing: border-box;
}
ul.associ li input:checked + label{
    background: #ffdc36;
    color: #fff;
}
ul.associ li.associ_form{
    background: #f8f8f8;
    border-radius: 5px;
    padding: 20px 22px;
}
ul.associ li.associ_form > h4{
    color: #ffdc36;
    font-weight: 500;
    margin-bottom: 18px;
}
.modal .input_wrap h5{
    font-size: 14px;
    color: #666666;
    margin-bottom: 10px;
}
.modal .input_wrap{
    margin-bottom: 30px;
}
.modal .input_wrap:last-child{
    margin-bottom: 0;
}
.modal .input_wrap input{
    font-size: 15px;
    height: 35px;
    width: 100%;
    border: none;
    border: 1px solid #eeeeee;
    border-radius: 5px;
    padding: 0 10px;
    box-sizing: border-box;
}
.modal .input_wrap textarea{
    font-size: 15px;
    height: 200px;
    width: 100%;
    border: none;
    border: 1px solid #eeeeee;
    border-radius: 5px;
    padding: 10px 10px;
    box-sizing: border-box;
    resize: none;
}



ul.checkbox_group li{
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}
ul.checkbox_group li:first-child{
    border-bottom: 1px solid #eeeeee;
    padding-bottom: 15px;
    font-weight: bold;
    font-size: 16px;
    margin-top: 30px;

}
ul.checkbox_group li input{
    display: none;
}
ul.checkbox_group li button{
    color: #999999;
    border-bottom: 1px solid #999999;
}

/* my_detail */
.my_detail .wrap .prod {
    width: 600px;
    margin: 0 auto;
}
.my_detail .wrap .prod .prod_con{
    display: flex;
    align-items: center;
    padding: 20px;
}
.my_detail .wrap .prod .prod_con .img{
    width: 140px;
    padding-bottom: 140px;
}
.my_detail .wrap .prod .prod_con .txt{
    margin-left: 20px;
}
.my_detail .wrap .prod .prod_con .txt h2{
    font-size: 24px;
    font-weight: 700;
}
.my_detail .wrap .prod .prod_con .txt ul li{
    display: flex;
    align-items: center;
    margin-top: 15px;
}
.my_detail .wrap .prod .prod_con .txt ul li span:first-child{
    color: #666666;
    margin-right: 25px;
}
.my_detail .wrap .prod_step {
    margin-top: 40px;
    background: url(../images/step1.png) no-repeat center 80px;
}
.my_detail .wrap .prod_step.step1{
    background: url(../images/step1.png) no-repeat center 80px;
}
.my_detail .wrap .prod_step.step2{
    background: url(../images/step2.png) no-repeat center 80px;
}
.my_detail .wrap .prod_step.step3{
    background: url(../images/step3.png) no-repeat center 80px;
}
.my_detail .wrap .prod_step.step4{
    background: url(../images/step4.png) no-repeat center 80px;
}
.my_detail .wrap .prod_step.step5{
    background: url(../images/step5.png) no-repeat center 80px;
}
.my_detail .wrap .prod_step.step6{
    background: url(../images/step6.png) no-repeat center 80px;
}
.my_detail .wrap .prod_step.step7{
    background: url(../images/step7.png) no-repeat center 80px;
}
.my_detail .wrap .prod_step.step8{
    background: url(../images/step8.png) no-repeat center 80px;
}
.my_detail .wrap .prod_step ul.list{
    display: flex;
    flex-wrap: wrap;
} 
.my_detail .wrap .prod_step ul.list li{
    text-align: center;
    width: 25%;
}
.my_detail .wrap .prod_step ul.list li:nth-child(n+5){
    margin-top: 85px;
}
.my_detail .wrap .prod_step ul.list li .arrow{
    margin-bottom: 10px;
}
.my_detail .wrap .prod_step ul.list li .date{
    width: 108px;
    height: 108px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    margin: 0 auto;
    border: 1px solid #cccccc;
    background: #fff;
    outline: 5px solid #fff;
    box-sizing: border-box;
}
.my_detail .wrap .prod_step ul.list li p{
    font-size: 18px;
    margin-top: 10px;
}
.my_detail .wrap .prod_step ul.list li small{
    display: inline-block;
    font-size: 14px;
    color: #666666;
    margin-top: 5px;
}
.my_detail .wrap .prod_step ul.list li a{
    display: block;
}
.my_detail .wrap .prod_step ul.list li a button{
    border: 1px solid #ffdc36;
    color: #ffdc36;
    width: 100px;
    height: 36px;
    border-radius: 5px;
    font-weight: 700;
    margin-top: 5px;
}
.my_detail .wrap .prod_step ul.list li.before p{
    color: #999999;
}
.my_detail .wrap .prod_step ul.list li.before .arrow,
.my_detail .wrap .prod_step ul.list li.before small,
.my_detail .wrap .prod_step ul.list li.before .date span,
.my_detail .wrap .prod_step ul.list li.before a{
    opacity: 0;
    visibility: hidden;
}

.my_detail .wrap .prod_step ul.list li.complete .arrow{
    opacity: 0;
    visibility: hidden;
}
.my_detail .wrap .prod_step ul.list li.complete .date{
    background: #e3f8f0;
    border-color: #e3f8f0;
    color: #ffdc36;
}
.my_detail .wrap .prod_step ul.list li.complete a button{
    background: #ffdc36;
    color: #fff;
}

.my_detail .wrap .prod_step ul.list li.active .date{
    background: linear-gradient(315deg, #45d1c1,#38e1a5);
    border-color: #e3f8f0;
    color: #fff;
}

.canvas {
    width: 100%;
    height: 160px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

@media screen and (max-height: 860px){
    .modal_480 .modal_con{
        height: 90% !important;
        box-sizing: border-box;
    }
    .modal_680 .modal_con{
        height: 90% !important;
        box-sizing: border-box;
    }
}
@media screen and (max-width: 1240px){
    .wrap_1200{
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
        box-sizing: border-box;
    }
    header .header_bottom .wrap_1200_1200 .right nav ul li{
        margin-left: 30px;
    }
    .mo1240_only{display: block !important;}
    .pc1240_only{display: none !important;}
}

@media screen and (max-width: 1070px){
    .wrap{
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
        box-sizing: border-box;
    }
    header .header_bottom .wrap_1200 .right nav ul li{
        margin-left: 30px;
    }
    header .header_bottom .wrap_1200 .right nav ul li a{
        font-size: 13px;
    }
    header .header_bottom .wrap_1200 .logo a img{
        width: 180px;
    }
    .mo1070_only{display: block !important;}
    .pc1070_only{display: none !important;}
}

@media screen and (max-width: 750px){
    .mo_only{display: block !important;}
    .pc_only{display: none !important;}
    /* header */
    header .header_top{
        display: none;
    }
    header .header_bottom .wrap_1200 .right nav{
        /* display: none; */
    }
    header .header_bottom{
        border: none;
    }
    header .header_bottom .wrap_1200 .left .page_title a{
        display: flex;
        align-items: center;
        font-size: 16px;
        font-weight: bold;
    }
    header .header_bottom .wrap_1200 .left .page_title a i{
        margin-right: 15px;
    }
    header .header_bottom .wrap_1200 .left .page_title a i img{
        width: 8px;
    }
    header .header_bottom .wrap_1200 .right nav.mo_only{
        display: flex !important;
        align-items: center;
    }

    footer .footer_top .wrap .left ul.list li{
        margin-right: 50px;
    }
    /* modal */
    .modal_480{
        max-width: 95%;
    }
    .modal_480 .modal_con{
        max-height: 85%;
        padding: 15px;

    }
    .modal_con ul.modal_con_list > li .left{
        margin-right: 10px;
    }
    .modal_680{
        max-width: 95%;
    }
    .modal_680 .modal_con{
        max-height: 85%;
        padding: 15px;

    }
    .mo_wide .modal_content{ 
        max-width: 100% !important;
        height: 100% !important;
        max-height: 100% !important;
        border-radius: 0 !important;
    }
    .mo_wide .modal_content .modal_con{
        /* height: 100% !important; */
    }
    .modal_stepAlerm1.mo_wide .modal_content .modal_con{
        height: 100% !important;
        max-height: 100% !important;
    }
    .modal_md .modal_con{
        max-height: 85%;
        padding: 15px;
    }
    .modal_btn {
        padding-left: 15px;
        padding-right: 15px;;
    }
    .modal_btn.flex button.payment{
        width: 50% !important;
    }
    .modal_con .order_info_wrap ul.order_info li{
        display: block;
    }
    .modal_con .total{
        justify-content: space-between;
    }
    .modal_con ul.modal_con_list.basket > li .right{
        justify-content: right;
        margin-top: 15px;
    }
    .modal_con .order_info_wrap ul.order_info li .left h5{
        margin-bottom: 9px;
    }
    .modal_con ul.modal_con_list.basket > li .left .basket_product{
        /* align-items: flex-start; */
    }
    .modal_con ul.modal_con_list.basket > li .left .basket_product .name{
        margin-right: 20px;
        font-size: 14px;
    }
    .modal_con ul.modal_con_list.basket > li input[type=checkbox] + label.checkbox_style2{
        padding-left: 20px;
    }
    .modal_con .category.type2{
        flex-wrap: wrap;
    }
    .modal_con ul.category.type2 li{
        width: 49%;
        margin-right: 2%;
    }
    .modal_con ul.category.type2 li:nth-child(2n){
        margin-right: 0;
    }
    .modal_con ul.category.type2 li:nth-child(n+3){
        margin-top: 15px;
    }
    .modal_stepAlerm1 .modal_con ul.modal_con_list > li .right{
        text-align: right;
    }
    .modal_stepAlerm1 .modal_con ul.modal_con_list > li .right .btn button.w_120{
        width: 60px !important;
    }
    .modal_con ul.modal_con_list.basket > li .left .basket_product ul.price_info{
        font-size: 14px;
    }
    .modal_con ul.modal_con_list.basket > li .left .basket_product ul.price_info .price2{
        font-size: 12px;
    }

    /* footer */
    footer{
        padding: 40px 0;
    }
    footer .footer_top{
        border: none;
        height: fit-content;
        margin-bottom: 25px;
    }
    footer .footer_top .wrap{
        border: none;
    }
    footer .footer_bottom .wrap{
        display: block;
        border: none;
    }
    footer .footer_bottom .wrap ul{
        width: 100%;
        padding: 0;
    }
    footer .footer_bottom .wrap ul.info1{
        border: none;
    }
}
@media screen and (max-width: 750px){
    .mt-60{
        margin-top: 0 !important;
    }
    .boardPager{
        margin-top: 20px;
    }
}


@media screen and (max-width: 500px){
    .modal_md{
        max-width: 95%;
    }
    /* html{
        font-size: 14px;
    } */
    .modal_sm.w_480{
        max-width: 95%;
    }
}