.block_catalog_detail_b{
    display: flex;
}
.bcd_mini_img{
    width: 120px;
}
.bcd_mini_img img{
    width: 100%;
}
.block_catalog_detail_bi{
    display: flex;
}
.bcd_img{
    display: flex;
    justify-content: center;
    width: 500px;
    height: 310px;
    border-radius: 10px;
    overflow: hidden;
}
.bcd_img img{
    max-width: 100%;
    object-fit: cover;
}
.bcd_mini_img_b{
    display: flex;
    align-items: center;
    justify-content: center;
    border: #cfcfcf solid 2px;
    padding: 5px;
    border-radius: 3px;
    margin-bottom: 10px;
    width: 80px;
    height: 70px;
    cursor: pointer;
}
.bcd_mini_img_b:hover{
    border: #f04a0f solid 2px
}
.bcd_mini_img_b.active,
.bcd_mini_img_b.active:hover{
    border: #7a1f11 solid 2px;
    cursor: default;
}
.block_catalog_detail_bt{
    padding-left: 40px;
    padding-top: 0px;
}
.bcd_p{
    font-size: 1.4rem;
    margin-bottom: 20px;
}
.block_catalog_detail_bt .block_catalog_bb_tc{
    margin-left: unset;
    margin-right: unset;
    margin-bottom: 15px;
    height: 28px;
    margin-top: 0px;
    margin-bottom: 0px;
}
.block_catalog_detail_bt .block_catalog_bb_tc_m.minus {
    line-height: 22px;
}
.block_catalog_detail_bt .block_catalog_bb_tc_m.plus {
    line-height: 26px;
}
.block_catalog_detail_bt .block_catalog_bb_tc_v input[name="product_count"]{
    font-size: 1rem;
}
.bcd_sale{
    background-color: #ffd772;
    width: max-content;
    height: 40px;
    margin-left: -5px;
    padding: 10px 34px;
    border-radius: 24px;
    cursor: pointer;
    caret-color: transparent;
    margin-top: 30px;
    margin-bottom: 30px;
}
.bcd_sale:hover{
    background-color: #ffcc4b;
}
.bcd_specifications_z{
    margin-bottom: 15px;
    font-weight: 600;
}
.bcd_specifications_bb{
    display: flex;
    margin-bottom: 4px;
    font-size: 1rem;
}
.bcd_specifications_bbz{
    margin-right: 10px;
}
.block_catalog_detail_dt{
    font-size: 1rem;
    line-height: 24px;
    margin-top: 25px;
}
.bcd_p_no_count{
    width: max-content;
    padding: 10px 34px;
    margin-bottom: 30px;
    margin-top: 18px;
    border-radius: 3px;
    background-color: #e7e7e7;
}



.popup_catalog_detail{
    display: none;
    opacity: 0;
    position: fixed;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    top: 0px;
    left: 0px;
    background-color: rgb(124 31 17 / 95%);
    transition: opacity 0.3s ease;
}
.popup_catalog_detail.display_1{
    display: flex;
}
.popup_catalog_detail.opacity_1{
    opacity: 1;
}
.popup_catalog_detail_b{
    width: 550px;
    height: 270px;
    background-color: #fff;
    border-radius: 5px;
    padding: 20px;
}
.popup_catalog_detail_bz{
    font-size: 1.15rem;
    line-height: 30px;
    text-align: center;
}
.popup_catalog_detail_buttons{
    display: flex;
    gap: 20px;
    margin-top: 120px;
    margin-left: auto;
    margin-right: auto;
    width: max-content;
}
.popup_catalog_detail_button {
    color: #fff;
    padding: 10px 40px;
    border-radius: 5px;
    width: 110px;
    text-align: center;
    cursor: pointer;
}
.popup_catalog_detail_button.no{
    background-color: #b12424;
}
.popup_catalog_detail_button.yes{
    background-color: #83b124;
}
.popup_catalog_detail_button.no:hover{
    background-color: #c52121;
}
.popup_catalog_detail_button.yes:hover{
    background-color: #8bbf20;
}