.block_catalog_b{
    display: flex;
    flex-wrap: wrap;
}
.block_catalog_bb{
    width: 285px;
    margin-right: 20px;
    margin-bottom: 20px;
    box-shadow: 0 .6rem 2.5rem rgb(97 28 25 / 13%);
    transition: box-shadow 0.3s ease;
}
.block_catalog_bb:hover{
    box-shadow: 0 .6rem 2.5rem rgb(97 28 25 / 25%);
}
.block_catalog_bb:nth-child(4n){
    margin-right: unset;
}
.block_catalog_bb_i{
    width: 80%;
    height: 200px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    margin-bottom: 10px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 50% 50%;
}
.block_catalog_bb_tz{
    text-align: center;
    font-size: 1.2rem;
    margin-top: 10px;
    padding: 0px 10px;
    display: block;
    color: inherit;
    height: 50px;
}

.block_catalog_bb_tp{
    text-align: center;
    font-size: 1.1rem;
    font-weight: 800;
    width: 80%;
    margin-top: 15px;
    margin-left: auto;
    margin-right: auto;
}
.block_catalog_bb_tb{
    background-color: #ffd772;
    width: max-content;
    margin-left: auto;
    margin-right: auto;
    padding: 10px 34px;
    margin-bottom: 30px;
    margin-top: 18px;
    border-radius: 24px;
    cursor: pointer;
    caret-color: transparent;
}
.block_catalog_bb_tb:hover{
    background-color: #ffcc4b;
}
.block_catalog_bb_tb.no_product{
    width: 100%;
    border-radius: 0px;
    text-align: center;
    background-color: #e7e7e7;
    cursor: default;
}


.popup_catalog_list{
    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_list.display_1{
    display: flex;
}
.popup_catalog_list.opacity_1{
    opacity: 1;
}
.popup_catalog_list_b{
    width: 550px;
    height: 270px;
    background-color: #fff;
    border-radius: 5px;
    padding: 20px;
}
.popup_catalog_list_bz{
    font-size: 1.15rem;
    line-height: 30px;
    text-align: center;
}
.popup_catalog_list_buttons{
    display: flex;
    gap: 20px;
    margin-top: 120px;
    margin-left: auto;
    margin-right: auto;
    width: max-content;
}
.popup_catalog_list_button {
    color: #fff;
    padding: 10px 40px;
    border-radius: 5px;
    width: 110px;
    text-align: center;
    cursor: pointer;
}
.popup_catalog_list_button.no{
    background-color: #b12424;
}
.popup_catalog_list_button.yes{
    background-color: #83b124;
}
.popup_catalog_list_button.no:hover{
    background-color: #c52121;
}
.popup_catalog_list_button.yes:hover{
    background-color: #8bbf20;
}