div.sticky_header{
    /* border-bottom:1px solid #e1e1e1; */
    position: sticky;
    top: 65px;
    left: 0;
    width: 860px;
    z-index: 1;
    background-color: #fff;
    padding-top: 10px;
    padding-bottom: 0;
    display: none;
}
div.sticky_header_body{
    max-width: 1200px;
    margin: auto;
}
div.sticky_header_top{
    display: none;
}
div.sticky_header_top_image{
    width: 60px;
    height: 60px;
}
img.sticky_header_top_image{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
div.sticky_header_top_buy a.purchase, div.sticky_header_top_buy button.purchase{
    background-color: #0B318F;
    color: white;
    flex: 1;
}
div.sticky_header_top_item_info{
    width: calc(100% - 350px);
    padding-left: 20px;
}
div.sticky_header_top_buy{
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
}
div.sticky_header_top_buy a, div.sticky_header_top_buy button{
    white-space: nowrap;
    height: 45px;
    line-height: 45px;
    cursor: pointer;
}
.sticky_header_top_buy span{
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: #0b318f;
}
div.sticky_header_top_item_info_title{
    font-size: 18px;
    font-weight: bold;
    color: #000;
}
div.sticky_header_top_item_info_price{
    font-size: 18px;
    margin-top: 5px;
    font-weight: bold;
    color: #025fbd;
}
div.nav_area.sticky_nav{
    margin-top: 15px;
}
ul.nav_area.sticky_nav{
    margin: 0;
    padding: 0;
}


/* 모바일 1200px 이하 */
@media screen and (max-width: 1200px){
    div.sticky_header{
        width: 100%;
        padding: 0;
        top: 42px !important;
    }
    div.sticky_header_top{
        display: block;
        flex-wrap: wrap;
        gap: 5px;
        /* padding: 5px; */
    }
    div.sticky_header_top_item_info{
        padding-left: 0;
        display: none;
    }
    div.sticky_header_top_image{
        width: 50px;
        height: 50px;
        display: none;
    }
    div.sticky_header .sticky_header_top_buy {
        width: 100%;
        padding: 10px 20px;
        justify-content: flex-end;
        position: fixed;
        bottom: 0;
        left: 0;
        background: #fff;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
    }
    div.sticky_header.show_buy_motion .sticky_header_top_buy {
        opacity: 1;
        transform: translateY(0);
    }
    div.sticky_header_top_item_info{
        width: calc(100% - 60px);
    }
    div.sticky_header_body{
        width: 100%;
        max-width: 100%;
    }
    div.sticky_header_top_item_info_title{
        font-size: 15px;
    }
    div.sticky_header_top_item_info_price{
        font-size: 15px;
    }
    div.sticky_header_top_buy a, div.sticky_header_top_buy button{
        height: 50px;
        width: auto;
        background: #fff;
        padding: 0 12px;
        gap:4px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 12px;
        border-radius: 5px;
        border: 1px solid #e1e1e1;
    }
    div.sticky_header_top_buy a.purchase, div.sticky_header_top_buy button.purchase{
        border: none;
        font-size: 14px;
        font-weight: 600;
        gap: 4px;
    }
    div.sticky_header_top_buy button.purchase img{
        width: 14px;
    }
    ul.nav_area li{
        padding: 5px 0;
        font-size: 14px;
    }
    div.nav_area.sticky_nav{
        margin-top: 5px;
    }
}