

/* Start:/pokupatelyam/furshet/assets/css/style.css?178480217565058*/
.furshet_all_wrap {
    font-family: "Nunito", sans-serif;
    margin-top: 20px;
}

.basket_empty_title {
    font-size: 24px;
    text-align: center;
    font-weight: bold;
    margin-top: 20px;
}

.basket_empty_text {
    font-size: 16px;
    text-align: center;
    margin-top: 10px;
}

.basket_empty_image {
    background-image: url(/pokupatelyam/furshet/assets/css/../images/empty_basket.png);
    width: 220px;
    height: 195px;
    margin: 0 auto;
}

.basket_empty_button {
    background: #76B929;
    color: #FFFFFF;
    border-radius: 24px;
    line-height: 44px;
    text-align: center;
    margin-top: 15px;
    cursor: pointer;
}

.basket_fix_icon_fon {
    background-color: #D9D9D9;
    width: 40px;
    margin-left: -40px;
    transition: 0.3s;
}

.basket_fix_icon_block {
    position: fixed;
    right: 0;
    top: 50%;
    display: flex;
    z-index: 10001;
    transition: 0.3s;
}

.basket_fix_icon_circle {
    width: 80px;
    height: 80px;
    border-radius: 40px;
    background-color: #E9E9EB;
    background-image: url(/pokupatelyam/furshet/assets/css/../images/Basket.png);
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    position: relative;
    transition: 0.3s;
}

.basket_fix_icon_block:hover .basket_fix_icon_circle {
    background-color: #D0EBB5;
}

.basket_fix_icon_block:hover .basket_fix_icon_fon {
    background-color: #62A515;
    width: 60px;
}

.basket_fix_icon_block.have_items .basket_fix_icon_circle {
    background-color: #D0EBB5;
}

.basket_fix_icon_block.have_items .basket_fix_icon_fon {
    background-color: #62A515;
}

.basket_block {
    display: none;
}

.basket_block.open_basket {
    display: block;
}

.basket_block_wrapp {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 100050;
    display: flex;
    align-items: center;
    justify-content: center;
}

.basket_bg {
    background: rgba(0, 0, 0, 0.3);
    position: absolute;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.basket_content_wrapp {
    width: 744px;
    background-color: #FFFFFF;
    border-radius: 28px;
    padding: 30px;
    position: relative;

}

.basket_clear {
    background-image: url(/pokupatelyam/furshet/assets/css/../images/delete_cart.png);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding-right: 28px;
    line-height: 20px;
    background-repeat: no-repeat;
    background-position: right center;
    cursor: pointer;
    color: #6D6D6E;
    font-size: 16px;
    transition: color .3s, opacity .3s;
}

.basket_clear:hover {
    color: #303030;
    opacity: 0.85;
}

.basket_clear_block {
    display: flex;
    width: 100%;
    justify-content: flex-end;
    margin-top: 16px;
}

.basket_info_list {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.basket_info_item {
    background-color: #F4F5F7;
    border-radius: 28px;
    padding: 20px;
    width: calc((100% - 30px) / 2);
    display: flex;
    gap: 10px;
}

.basket_info_item_icon {
    width: 24px;
    min-width: 24px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.time_icon {
    background-image: url(/pokupatelyam/furshet/assets/css/../images/time.png);
}

.location_icon {
    background-image: url(/pokupatelyam/furshet/assets/css/../images/Location.png);
}

.basket_info_item_title {
    font-size: 20px;
    font-weight: bold;
}

.basket_info_item_text {
    font-size: 16px;
    margin-top: 10px;
    color: #4E4E4E;
}

.basket_list_wrapp {
    overflow-y: auto;
    max-height: calc(100vh - 360px);
    scrollbar-width: thin;
    scrollbar-color: #76B929 #F4F5F7;
}

.basket_list_wrapp::-webkit-scrollbar {
    width: 6px;
}

.basket_list_wrapp::-webkit-scrollbar-track {
    background: #F4F5F7;
    border-radius: 6px;
}

.basket_list_wrapp::-webkit-scrollbar-thumb {
    background: #76B929;
    border-radius: 6px;
}

.basket_list_wrapp::-webkit-scrollbar-thumb:hover {
    background: #5F9620;
}

.basket_title {
    font-size: 44px;
    font-weight: bold;
}

.basket_count {
    color: #4E4E4E;
    font-size: 16px;
}

.basket_list {
    margin-top: 20px;
    display: flex;
    gap: 20px;
    flex-direction: column;
}

.basket_item {
    border-bottom: 1px solid #737373;
    padding-bottom: 20px;
    display: flex;
    gap: 20px;
}

.basket_item_info_name {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    align-items: center;
}

.basket_item_info_name_value {
    font-size: 20px;
    font-weight: bold;
}

.basket_item_image {
    width: 100px;
    min-width: 100px;
    height: 100px;
    background-color: #F4F5F7;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
}

.basket_item_info_block {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.basket_item_info_min_count_title {
    font-weight: bold;
    font-size: 16px;
}

.basket_item_info_min_count_value {
    color: #4E4E4E;
    font-size: 12px;
}

.basket_item_info_change_count {
    width: 200px;
    background-color: #76B929;
    border-radius: 24px;
    height: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.basket_item_info_change_count_value {
    background-color: #F4F5F7;
    line-height: 40px;
    width: 88px;
    text-align: center;
    border-radius: 24px;
    color: #303030;
    font-size: 16px;
}

.basket_item_info_summ {
    font-size: 16px;
    font-weight: bold;
}

.basket_item_info_change_count_minus {
    width: 56px;
    color: #FFFFFF;
    text-align: center;
    font-size: 40px;
    cursor: pointer;
}

.basket_item_info {
    flex-grow: 100;
}

.basket_item_info_change_count_plus {
    width: 56px;
    color: #FFFFFF;
    text-align: center;
    font-size: 40px;
    cursor: pointer;
}

.basket_item_info_name_delete {
    background-color: #E9E9EB;
    width: 44px;
    min-width: 44px;
    height: 44px;
    background-position: center;
    border-radius: 28px;
    background-image: url(/pokupatelyam/furshet/assets/css/../images/delete_item.png);
    background-repeat: no-repeat;
    cursor: pointer;
    transition: all .3s;
}

.basket_item_info_name_delete:hover {
    background-color: #DCDCDE;
}

.basket_item_info_name_delete:active {
    background-color: #DCDCDE;
}

.basket_remove_confirm {
    display: none;
}

.basket_remove_confirm.open_confirm {
    display: block;
}

.basket_remove_confirm_wrapp {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 100060;
    display: flex;
    align-items: center;
    justify-content: center;
}

.basket_remove_confirm_bg {
    background: rgba(0, 0, 0, 0.3);
    position: absolute;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.basket_remove_confirm_content {
    width: 552px;
    max-width: calc(100% - 32px);
    background: #FFFFFF;
    border-radius: 28px;
    padding: 40px;
    position: relative;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.basket_remove_confirm_close {
    width: 44px;
    height: 44px;
    background-position: center;
    border-radius: 28px;
    background-image: url(/pokupatelyam/furshet/assets/css/../images/Close.png);
    background-repeat: no-repeat;
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
}

.basket_remove_confirm_title {
    width: 100%;
    max-width: 424px;
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    line-height: 1.1;
    color: #303030;
}

.basket_remove_confirm_actions {
    width: 100%;
    display: flex;
    gap: 12px;
}

.basket_remove_confirm_btn {
    flex: 1 1 0;
    min-width: 0;
    height: 44px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.2;
    cursor: pointer;
    box-sizing: border-box;
    transition: all .3s;
    text-align: center;
    padding: 13.5px 16px;
}

.basket_remove_confirm_btn_delete {
    background: #76B929;
    color: #FFFFFF;
}

.basket_remove_confirm_btn_delete:hover {
    background: #5F9620;
}

.basket_remove_confirm_btn_delete:active {
    background: #4E7C1A;
}

.basket_remove_confirm_btn_keep {
    background: #FFFFFF;
    color: #76B929;
    border: 1px solid #76B929;
}

.basket_remove_confirm_btn_keep:hover {
    background: #F4F5F7;
}

.basket_remove_confirm_btn_keep:active {
    background: #E9E9EB;
}

.close_popup {
    width: 24px;
    height: 24px;
    background-position: center;
    border-radius: 28px;
    background-image: url(/pokupatelyam/furshet/assets/css/../images/Close.png);
    background-repeat: no-repeat;
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
}

.basket_itogo_block {
    background: #F4F5F7;
    margin: 30px -30px -30px -30px;
    padding: 20px 30px 30px 30px;
    border-radius: 0 0 28px 28px;
    box-shadow: -0.05px -0.52px 1.39px 0px #27392702, -0.23px -2.39px 3.9px 0px #27392706, -0.58px -6.05px 10.46px 0px #27392705, -1.14px -11.95px 24px 0px #2739270A;

}

.basket_itogo_title {
    font-size: 26px;
    font-weight: bold;
}

.basket_itogo_item {
    display: flex;
    font-size: 16px;
    font-weight: bold;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-top: 5px;
}

.basket_itogo_button {
    background: #76B929;
    color: #FFFFFF;
    border-radius: 24px;
    line-height: 40px;
    font-size: 16px;
    text-align: center;
    margin-top: 15px;
    cursor: pointer;
    transition: all .3s;
}

.basket_itogo_button:hover {
    background: #62A515;
}

.basket_itogo_text {
    color: #737373;
    font-size: 14px;
    margin-top: 10px;
}

.furshet_catalog_item_detail_kbgu_item {
    background-color: #F4F5F7;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    height: 74px;
    width: calc((100% - 15px) / 4);
    justify-content: center;
    padding-left: 10px;
    font-size: 16px;
    line-height: 120%;
}

.basket_itogo_item_line {
    border-bottom: 2px dotted #737373;
    flex-grow: 100;
    margin-top: 8px;
}

.basket_itogo_item_value {
    text-align: right;
    min-width: 110px;
}

.all_summ {
    font-size: 20px;
}

.furshet_catalog_item_detail_kbgu_item_title {
    font-weight: bold;
}

.furshet_catalog_item_detail_kbgu_list {
    display: flex;
    gap: 5px;
    margin-top: 15px;
}

.furshet_catalog_item_detail_kbgu_title {
    font-size: 20px;
    font-weight: bold;
    line-height: 120%;
}

.furshet_catalog_item_detail_info_sostav_text {
    font-size: 16px;
    line-height: 120%;
    margin-top: 10px;
}

.furshet_catalog_item_detail_min_count {
    background-color: #F4F5F7;
    border-radius: 16px;
    padding: 5px 15px;
    font-size: 14px;
    line-height: 120%;
    position: relative;
    margin-top: 10px;
}

.furshet_catalog_item_detail_min_count_value {
    font-weight: bold;
}

.furshet_catalog_item_detail_info_sostav {
    margin-top: 20px;
}

.furshet_catalog_item_detail_info_sostav_title {
    font-size: 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
}

.furshet_catalog_item_detail_info_basket_button_empty {
    background: #76B929;
    color: #FFFFFF;
    border-radius: 24px;
    line-height: 44px;
    text-align: center;
    margin-top: 15px;
    cursor: pointer;
}

.furshet_catalog_item_detail_wrapp {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 100050;
    display: flex;
    align-items: center;
    justify-content: center;
}

.furshet_catalog_item_detail_image {
    background-color: #FAF7F3;
    width: 380px;
    height: 360px;
    border-radius: 20px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.furshet_catalog_item_bg {
    background: rgba(0, 0, 0, 0.3);
    position: absolute;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.furshet_catalog_item_detail {
    display: flex;
    flex-wrap: wrap;
    background: #FFFFFF;
    border-radius: 30px;
    padding: 30px;
    position: relative;
    gap: 20px;
    width: 936px;
}

.open_detail .furshet_catalog_item_detail_block {
    display: block;
}

.furshet_catalog_item_detail_close {
    width: 24px;
    height: 24px;
    background-position: center;
    border-radius: 28px;
    background-image: url(/pokupatelyam/furshet/assets/css/../images/Close.png);
    background-repeat: no-repeat;
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
}

.furshet_catalog_item_detail_info {
    width: 450px;
}

.furshet_catalog_item_detail_kbgu {
    width: 856px;
    padding-top: 10px;
}

body .wrapper {
    width: calc(100% - 40px);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.furshet_banner_bg {
    width: 100%;
    background-image: url(/pokupatelyam/furshet/assets/css/../images/banner.jpg);
    height: 560px;
    clip-path: polygon(0 163px, 571px 163px, 571px 0, 100% 0, 100% 100%, 0 100%);
    margin: 0 auto;
    background-position: 0px -36px;
    background-size: 1450px;
}

.flt_svg {
    visibility: hidden;
    position: absolute;
    width: 0px;
    height: 0px;
}

.furshet_banner_bg_wrapp {
    filter: url('#flt_tag');
}

.furshet_banner_title {
    font-weight: 800;
    font-size: 64px;
    line-height: 110.00000000000001%;
    width: 430px;
    position: absolute;
    margin-left: 100px;
}

.furshet_banner_text_block {
    background: #51542566;
    padding: 20px;
    border-radius: 28px;
    position: absolute;
    top: 200px;
    left: 116px;
    color: #FFFFFF;
    width: 455px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.furshet_banner_text1 {
    font-size: 22px;
    line-height: 120%;
}

.furshet_banner_text2 {
    font-size: 24px;
    line-height: 130%;
    font-weight: bold;
}

.furshet_preimushestva_item_bg_wrapp {
    filter: url('#flt_tag');
}

.furshet_preimushestva_item_bg {
    clip-path: polygon(0 0, calc(100% - 60px) 0, calc(100% - 60px) 60px, 100% 60px, 100% 100%, 0 100%);
    background: linear-gradient(195deg, #ECC27B -44.36%, #E1B97A 1.03%, #C08116 49.95%, #E6B771 107.93%, #EFDEC9 136.94%);
    width: 100%;
    height: 180px;
    position: relative;
}

.furshet_preimushestva_item {
    width: calc((100% - 60px) / 3);
    position: relative;
}

.furshet_preimushestva {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}

.furshet_preimushestva_item_icon_star {
    background-image: url(/pokupatelyam/furshet/assets/css/../images/fursher_star.png);
    width: 148px;
    height: 97px;
    position: absolute;
    background-size: cover;
    right: 0;
    bottom: 0;
}

.furshet_preimushestva_item_icon_ellipse {
    background-image: url(/pokupatelyam/furshet/assets/css/../images/furshet_ellipse.png);
    width: 206px;
    height: 80px;
    position: absolute;
    background-size: cover;
    right: 10px;
    bottom: 0;
}

.furshet_preimushestva_item_star {
    background-image: url(/pokupatelyam/furshet/assets/css/../images/star.png);
    position: absolute;
    width: 44px;
    height: 44px;
    top: 4px;
    right: 2px;
    background-size: contain;
}

.furshet_preimushestva_item_title {
    font-size: 26px;
    line-height: 120%;
    color: #FFFFFF;
    font-weight: bold;
    padding: 16px 0 0 30px;
}

.furshet_preimushestva_item_text {
    font-size: 16px;
    line-height: 120%;
    padding: 10px 0 0 30px;
    color: #FFFFFF;
    width: 230px;
}

.furshet_for_title {
    font-size: 44px;
    line-height: 110%;
    font-weight: bold;
}

.furshet_for_list {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.furshet_for_item {
    width: calc((100% - 60px) / 3);
    background: #F4F5F7;
    border-radius: 28px;
    font-size: 24px;
    line-height: 120%;
    font-weight: bold;
    height: 98px;
    padding: 20px 28px;
}

.furshet_for {
    margin-top: 100px;
}

.furshet_kak_zakazat {
    margin-top: 100px;
}

.furshet_kak_zakazat_item_number {
    font-size: 64px;
    font-weight: bolder;
    background: linear-gradient(131.98deg, #ECC27B 22.97%, #E1B97A 37.34%, #C08116 68.37%, #E6B771 86.54%, #ECC07F 88.81%, #EFDEC9 98.65%);
    background-repeat: repeat;
    background-clip: text;
    color: transparent;
    line-height: 48px;
}

.furshet_kak_zakazat_item_icon {
    background-image: url(/pokupatelyam/furshet/assets/css/../images/zakaz_star.png);
    position: absolute;
    width: 60px;
    height: 60px;
    background-size: contain;
    top: 0;
    left: 0;
}

.furshet_kak_zakazat_item_line {
    border-bottom: 2px solid #C58925;
    position: absolute;
    width: calc(100% - 80px);
    right: 0;
    top: 29px;
}

.furshet_kak_zakazat_item {
    width: calc((100% - 60px) / 3);
    position: relative;
    display: flex;
    gap: 30px;
    padding-top: 50px;
    padding-left: 40px;
}

.furshet_kak_zakazat_list {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.furshet_kak_zakazat_title {
    font-size: 44px;
    line-height: 110%;
    font-weight: bold;
}

.furshet_kak_zakazat_item_text {
    font-size: 20px;
    line-height: 120%;
}

.furshet_forma_wrapp {
    filter: url('#flt_tag');
}

.furshet_forma_bg {
    clip-path: polygon(0 0, 500px 0, 500px 80px, 100% 80px, 100% 100%, 0 100%);
    background: #F4F5F7;
    padding: 20px 40px 40px 40px;
}

.furshet_forma_title {
    font-size: 44px;
    line-height: 110%;
    font-weight: bold;
}

.furshet_forma_block {
    margin-top: 40px;
    display: flex;
    gap: 100px;
}

.furshet_forma_block_info {
    width: 420px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.furshet_forma_block_info_text1 {
    font-size: 24px;
    line-height: 120%;
}

.furshet_forma_block_info_text2 {
    font-size: 16px;
    line-height: 120%;
    color: #7B7B7B;
}

.furshet_forma_block_field_input_name {
    font-size: 16px;
    line-height: 120%;
    color: #4E4E4E;
}

.furshet_forma_block_field_input {
    margin-bottom: 10px;
}

.furshet_forma_block_field_input_value {
    border: 0;
    line-height: 48px;
    border-radius: 48px;
    padding: 0 20px;
    margin-top: 5px;
    width: 100%;
    font-size: 16px;
}

.furshet_forma_block_fields {
    flex-grow: 100;
}

.furshet_forma_block_field_soglasie {
    display: flex;
    align-items: center;
    gap: 10px;
}

.furshet_forma_block_field_soglasie.is-multiline {
    align-items: flex-start;
}

.furshet_forma_block_field_soglasie_input_checkbox {
    width: 24px;
    height: 24px;
    min-width: 24px;
    accent-color: #76B929;
    cursor: pointer;
    display: block;
}

.furshet_forma_block_field_soglasie_text {
    font-size: 16px;
    line-height: 120%;
}

.furshet_forma_block_field_soglasie_text a {
    text-decoration: underline;
    color: #126df7;
}

.furshet_forma_block_field_button {
    background: #CBCCCD;
    border-radius: 44px;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
    margin-top: 25px;
    color: #7B7B7B;
    font-weight: bold;
    font-size: 16px;
}

.furshet_forma {
    margin-top: 100px;
}

.furshet_photo {
    margin-top: 100px;
}

.furshet_photo_title {
    font-size: 44px;
    line-height: 110%;
    font-weight: bold;
}

.furshet_photo_list {
    display: flex;
    gap: 30px 2%;
    flex-wrap: wrap;
    margin-top: 40px;
}

.furshet_photo_item1 {
    background-image: url(/pokupatelyam/furshet/assets/css/../images/photo1-min.png);
    border-radius: 28px;
    width: 31.9%;
    aspect-ratio: 1;
    background-size: cover;
    background-position: center;
}

.furshet_photo_item2 {
    background-image: url(/pokupatelyam/furshet/assets/css/../images/photo2-min.png);
    border-radius: 28px;
    width: 40.4%;
    aspect-ratio: 1.266;
    background-size: cover;
    background-position: center;
}

.furshet_photo_item3 {
    background-image: url(/pokupatelyam/furshet/assets/css/../images/photo3-min.png);
    border-radius: 28px;
    width: 23.4%;
    aspect-ratio: 0.733;
    background-size: cover;
    background-position: center;
}

.furshet_photo_item4 {
    background-image: url(/pokupatelyam/furshet/assets/css/../images/photo4-min.png);
    border-radius: 28px;
    width: 40.4%;
    aspect-ratio: 1.266;
    background-size: cover;
    background-position: center;
}

.furshet_photo_item5 {
    background-image: url(/pokupatelyam/furshet/assets/css/../images/photo5-min.png);
    border-radius: 28px;
    width: 57.4%;
    aspect-ratio: 1.8;
    background-size: cover;
    background-position: center;
}

.furshet_photo_pagination {
    display: none;
}

.furshet_catalog {
    margin-top: 100px;
}

.furshet_catalog_title {
    font-size: 44px;
    line-height: 110%;
    font-weight: bold;
}

.furshet_catalog_section_bar {
    margin-top: 40px;
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.furshet_catalog_section_list {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    flex: 1;
    min-width: 0;
}

.furshet_catalog_section_item {
    background-color: #F4F5F7;
    border-radius: 28px;
    font-size: 16px;
    background-image: url(/pokupatelyam/furshet/assets/css/../images/section_star.png);
    line-height: 44px;
    padding: 0 20px 0 50px;
    background-size: 24px;
    background-position: 20px;
    background-repeat: no-repeat;
    cursor: pointer;
}

.furshet_catalog_section_item.active_section {
    background-color: #E0F5CB;
    font-weight: bold;
}

.furshet_catalog_filter_btn {
    display: none;
    flex-shrink: 0;
    width: 51px;
    height: 40px;
    border-radius: 20px;
    background-color: #F4F5F7;
    background-image: url(/pokupatelyam/furshet/assets/css/../images/filter.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 19px 18px;
    cursor: pointer;
}

.furshet_catalog_filters_modal {
    display: none;
}

.furshet_catalog_filters_modal.open_filters {
    display: block;
}

.furshet_catalog_filters_modal_wrapp {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 100050;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 66px 16px 16px;
    box-sizing: border-box;
}

.furshet_catalog_filters_modal_bg {
    background: rgba(78, 78, 78, 0.6);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    cursor: pointer;
}

.furshet_catalog_filters_modal_content {
    position: relative;
    width: 100%;
    max-width: 328px;
    background: #FFFFFF;
    border-radius: 20px;
    padding: 16px;
    box-sizing: border-box;
    max-height: calc(100vh - 82px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.furshet_catalog_filters_modal_header {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-right: 32px;
    flex-shrink: 0;
}

.furshet_catalog_filters_modal_title {
    font-size: 32px;
    font-weight: bold;
    line-height: 110%;
    color: #4D4D4E;
}

.furshet_catalog_filters_modal_reset {
    color: #76B929;
    font-size: 14px;
    font-weight: bold;
    line-height: 120%;
    cursor: pointer;
    padding: 4px 0;
}

.furshet_catalog_filters_modal_reset.disabled {
    color: #949596;
    cursor: default;
    pointer-events: none;
}

.furshet_catalog_filters_modal_close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 24px;
    height: 24px;
    background-image: url(/pokupatelyam/furshet/assets/css/../images/Close.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    cursor: pointer;
}

.furshet_catalog_filters_modal_list {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
    flex: 1;
    min-height: 0;
    padding-right: 2px;
}

.furshet_catalog_filters_modal_list .furshet_catalog_section_item {
    width: 100%;
    box-sizing: border-box;
    font-size: 14px;
    line-height: 40px;
    padding: 0 16px 0 44px;
    background-size: 24px;
    background-position: 16px center;
    border-radius: 24px;
}

.furshet_catalog_filters_modal_actions {
    margin-top: 16px;
    flex-shrink: 0;
}

.furshet_catalog_filters_modal_apply {
    width: 100%;
    border-radius: 24px;
    line-height: 40px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    box-sizing: border-box;
    background: #76B929;
    color: #FFFFFF;
}

.furshet_catalog_filters_modal_apply.disabled {
    background: #CBCCCD;
    color: #949596;
    cursor: default;
    pointer-events: none;
}

.furshet_catalog_legenda {
    margin-top: 20px;
    display: flex;
    gap: 30px;
    align-items: center;
}

.furshet_catalog_legenda_count {
    font-size: 14px;
    line-height: 20px;
}

.furshet_catalog_legenda_allergiya {
    background-image: url(/pokupatelyam/furshet/assets/css/../images/info.png);
    padding-left: 20px;
    font-size: 14px;
    background-size: 18px;
    background-repeat: no-repeat;
    line-height: 20px;
}

.furshet_catalog_item {
    background: #FAF7F3;
    border-radius: 28px;
    padding: 20px;
    width: auto;
    min-width: 0;
    display: none;
    height: 470px;
    position: relative;
    box-sizing: border-box;
}

.furshet_catalog_item.selected_item {
    display: flex;
    flex-direction: column;
}

.furshet_catalog_item.big_item {
    grid-column: span 2;
}

.furshet_catalog_list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.furshet_catalog_item_min_count {
    background-color: #FFFFFF;
    border-radius: 16px;
    padding: 5px 15px;
    font-size: 12px;
    line-height: 120%;
    position: relative;
}

.furshet_catalog_item_min_count_value {
    font-weight: bold;
}

.furshet_catalog_item_image {
    margin-top: 10px;
    height: 172px;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    cursor: pointer;
}

.big_item .furshet_catalog_item_image {
    margin: -59px -20px 0 -20px;
    border-radius: 28px 28px 0 0;
    width: calc(100% + 40px);
    height: 241px;
    background-size: cover;
}

.furshet_catalog_item_weight {
    font-size: 12px;
    line-height: 120%;
    color: #7B7B7B;
    margin-top: 10px;
    height: 15px;
}

.furshet_catalog_item_name {
    font-size: 20px;
    line-height: 120%;
    font-weight: bold;
    width: calc(100% - 28px);
    cursor: pointer;
}

.furshet_catalog_item_name_block {
    display: flex;
    gap: 10px;
    margin-top: 10px;

}

.furshet_catalog_item:hover .furshet_catalog_item_detail_button {
    opacity: 1;
    pointer-events: auto;
}

.furshet_catalog_item:hover .furshet_catalog_item_desc {
    display: none;
}

.furshet_catalog_item_name_allergiya.active_allergiya {
    background-image: url(/pokupatelyam/furshet/assets/css/../images/info.png);
    height: 24px;
    width: 24px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.furshet_catalog_item_detail_info_price_weight {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
}

.furshet_catalog_item_detail_info_price {
    font-size: 16px;
    line-height: 120%;
    font-weight: bold;
}

.furshet_catalog_item_detail_info_weight {
    font-size: 12px;
    line-height: 120%;
    color: #7B7B7B;
}

.furshet_catalog_item_detail_button {
    color: #76B929;
    padding: 10px 0;
    border: 1px solid #76B929;
    border-radius: 24px;
    text-align: center;
    cursor: pointer;
    position: absolute;
    font-size: 14px;
    font-weight: bold;
    left: 20px;
    right: 20px;
    bottom: 20px;
    width: auto;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    box-sizing: border-box;
}

.furshet_catalog_item:hover .furshet_catalog_item_detail_button {
    opacity: 1;
    pointer-events: auto;
}

.furshet_catalog_item_detail_info_name {
    font-size: 32px;
    line-height: 110%;
    font-weight: bold;
}

.furshet_catalog_item_desc {
    color: #7B7B7B;
    font-size: 16px;
    margin-top: 10px;
    line-height: 120%;
}

.furshet_catalog_item_price {
    font-size: 16px;
    line-height: 120%;
    font-weight: bold;
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    width: auto;
    transition: bottom 0.3s;
}

.furshet_catalog_item:hover .furshet_catalog_item_price {
    bottom: calc(20px + 44px + 20px);
}

.big_item .furshet_catalog_item_min_count {
    width: 50%;
}

.furshet_catalog_item_detail_block {
    display: none;
}

@media (max-width: 1200px) {
    .furshet_catalog_list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .furshet_catalog_list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .furshet_catalog_item {
        height: 420px;
        border-radius: 20px;
    }

    .furshet_catalog_item_image {
        height: 150px;
    }

    .furshet_catalog_item_name {
        font-size: 16px;
    }
}

.loyalnost_catalog_item_detail_info_text_select_city_block {
    margin-top: 5px;
    position: relative;
}

.loyalnost_catalog_item_detail_info_text_select_city_selected_item {
    line-height: 38px;
    font-size: 14px;
}

.loyalnost_catalog_item_detail_info_text_select_city_block.open_list .loyalnost_catalog_item_detail_info_text_select_city_list {
    padding: 10px 10px;
}

.loyalnost_catalog_item_detail_info_text_select_city_item {
    padding: 5px 0 5px 35px;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.loyalnost_catalog_item_detail_info_text_select_city_list {
    display: none;
}

.order_make_title {
    font-size: 44px;
    font-weight: bold;
    text-align: center;
}

.order_make_summ {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    margin-top: 5px;
}

.order_make_field_name {
    color: #303030;
    font-size: 16px;
    line-height: 1.2;
}

.order_make_field_value input,
.order_make_field_value textarea {
    width: 100%;
    min-height: 48px;
    border: 1px solid transparent;
    border-radius: 48px;
    padding: 0 24px;
    background-color: #F4F5F7;
    color: #303030;
    font: inherit;
    font-size: 16px;
    line-height: 1.2;
    box-sizing: border-box;
    outline: none;
    transition: border-color .3s ease, background-color .3s ease;
}

.order_make_field_value input {
    height: 48px;
}

.order_make_field_value textarea {
    padding: 14px 24px;
    line-height: 1.2;
    resize: vertical;
}

.order_make_field_value input::placeholder,
.order_make_field_value textarea::placeholder {
    color: #949596;
}

.order_make_field_value input:hover,
.order_make_field_value textarea:hover {
    border-color: #CBCCCD;
}

.order_make_field_value input:focus,
.order_make_field_value textarea:focus {
    border-color: #99BC3A;
    background-color: #FFFFFF;
}

.show_error .order_make_field_value input,
.show_error .order_make_field_value textarea {
    border-color: #CA3611;
    background-color: #F4F5F7;
}

.order_make_field_value {
    margin-top: 4px;
}

.order_make_field {
    margin-bottom: 20px;
}

.order_make_field_desc {
    color: #6E6E6E;
    font-size: 12px;
    margin-top: 5px;
}

.loyalnost_catalog_item_detail_info_text_select_city_selected_item {
    background-image: url(/pokupatelyam/furshet/assets/css/../images/Dropdown.png);
    background-repeat: no-repeat;
    background-position: calc(100% - 20px);
    border: 1px solid #CBCCCD;
    border-radius: 48px;
    line-height: 48px;
    background-color: #F4F5F7;
    color: #7B7B7B;
    padding-left: 20px;
    margin-top: 5px;
    cursor: pointer;
}

.loyalnost_catalog_item_detail_info_text_select_city_block.open_list .loyalnost_catalog_item_detail_info_text_select_city_selected_item {
    border: 1px solid #99BC3A;
    background-image: url(/pokupatelyam/furshet/assets/css/../images/Dropdown-rev.png);
}

.loyalnost_catalog_item_detail_info_text_select_city_name_value {
    color: #7D953C;
    font-size: 16px;
}

.loyalnost_catalog_item_detail_info_text_select_city_name_line {
    border-bottom: 1px solid #7D953C;
    height: 0;
    flex-grow: 100;
}

.loyalnost_catalog_item_detail_info_text_select_city_name {
    display: flex;
    gap: 10px;
    align-items: center;
}

.loyalnost_catalog_item_detail_info_text_select_city_item {
    display: flex;
    justify-content: space-between;
    background-image: url(/pokupatelyam/furshet/assets/css/../images/dotlist.png);
    background-repeat: no-repeat;
    background-position: left;
    background-size: 20px;
    padding: 5px 0 5px 35px;
    align-items: center;
}

.loyalnost_catalog_item_detail_info_text_select_city_list {
    display: none;
}

.loyalnost_catalog_item_detail_info_text_select_city_block.open_list .loyalnost_catalog_item_detail_info_text_select_city_list {
    display: block;
    height: 220px;
    position: absolute;
    z-index: 1;
    width: 100%;
    margin-top: 5px;
    background: #FFFFFF;
    box-shadow: 0px 0px 10px 0px #1a200c45;
    border-radius: 12px;
    padding: 10px 20px;
}

.loyalnost_catalog_item_detail_info_text_select_city_list_wrapp {
    overflow-x: hidden;
    overflow-y: scroll;
    height: 200px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.order_make_field_value_soglasie {
    display: flex;
    align-items: center;
    gap: 10px;
}

.order_make_field_value_soglasie.is-multiline {
    align-items: flex-start;
}

.order_make_field_value_soglasie_input_checkbox {
    width: 20px;
    height: 20px!important;
    min-height: 20px!important;
    min-width: 20px;
    accent-color: #76B929;
    cursor: pointer;
    display: block;
    margin: 0;
}

.order_make_field_value_soglasie_text {
    font-size: 16px;
    line-height: 120%;
}

.order_make_field_value_soglasie_text a {
    color: #126DF7;
    text-decoration: underline;
}

.order_make_button {
    border-radius: 24px;
    background-color: #F4F5F7;
    line-height: 40px;
    color: #CBCCCD;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
}

.order_make_button.active_button {
    background-color: #76B929;
    color: #FFFFFF;
}

.order_make_bottom_text {
    color: #6E6E6E;
    font-size: 14px;
}

.basket_content {
    max-height: calc(100vh - 70px);
    padding: 0 20px;
    margin: 0 -20px;
}

.order_make_fields {
    overflow-y: auto;
    max-height: calc(100vh - 160px);
    scrollbar-width: thin;
    scrollbar-color: #76B929 #F4F5F7;
}

.order_make_fields::-webkit-scrollbar {
    width: 6px;
}

.order_make_fields::-webkit-scrollbar-track {
    background: #F4F5F7;
    border-radius: 6px;
}

.order_make_fields::-webkit-scrollbar-thumb {
    background: #76B929;
    border-radius: 6px;
}

.order_make_fields::-webkit-scrollbar-thumb:hover {
    background: #5F9620;
}

.dropdown-select {
    position: relative;
}

.dropdown-select__trigger {
    width: 100%;
    min-height: 48px;
    height: 48px;
    padding: 0 24px;
    border-radius: 48px;
    border: 1px solid transparent;
    background: #F4F5F7;
    color: #949596;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    cursor: pointer;
    font: inherit;
    font-size: 16px;
    line-height: 1.2;
    box-sizing: border-box;
    outline: none;
    transition: border-color .3s ease, background-color .3s ease, color .3s ease;
}

.dropdown-select.is-filled .dropdown-select__trigger {
    color: #303030;
    background: #F4F5F7;
}

.dropdown-select__trigger:hover {
    border-color: #CBCCCD;
}

.dropdown-select.is-open .dropdown-select__trigger,
.dropdown-select.is-open .dropdown-select__trigger:hover {
    border-color: #99BC3A;
    background: #FFFFFF;
    color: #6D6D6E;
}

.dropdown-select.is-open.is-filled .dropdown-select__trigger {
    color: #303030;
}

.show_error .dropdown-select__trigger,
.show_error .dropdown-select__trigger:hover {
    border-color: #CA3611;
    background: #F4F5F7;
}

.show_error .dropdown-select.is-open .dropdown-select__trigger {
    border-color: #CA3611;
    background: #FFFFFF;
}

.dropdown-select__arrow {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    transform-origin: center center;
    transition: transform .2s ease;
    pointer-events: none;
}

.dropdown-select__arrow svg {
    display: block;
    width: 18px;
    height: 10px;
}

.dropdown-select.is-open .dropdown-select__arrow {
    transform: rotate(180deg);
}

.dropdown-select__menu {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    z-index: 40;
    padding: 8px;
    border-radius: 24px;
    border: 1px solid #E9E9EB;
    background: #FFFFFF;
    box-shadow: 0 8px 24px rgba(39, 57, 39, 0.12);
}

.dropdown-select.is-open .dropdown-select__menu {
    display: block;
}

[data-order-dropdown="date"] .dropdown-select__menu {
    width: 320px;
    max-width: 100%;
    left: auto;
    right: 0;
}

.dropdown-select__options {
    max-height: 196px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 4px;
    scrollbar-width: thin;
    scrollbar-color: #76B929 #F4F5F7;
}

.dropdown-select__options::-webkit-scrollbar {
    width: 6px;
}

.dropdown-select__options::-webkit-scrollbar-track {
    background: #F4F5F7;
    border-radius: 6px;
}

.dropdown-select__options::-webkit-scrollbar-thumb {
    background: #76B929;
    border-radius: 6px;
}

.dropdown-select__options::-webkit-scrollbar-thumb:hover {
    background: #5F9620;
}

.dropdown-select__option,
.dropdown-select__empty {
    width: 100%;
    padding: 10px 12px;
    border-radius: 24px;
    border: 1px solid transparent;
    background: transparent;
    text-align: left;
    font: inherit;
    color: #303030;
    box-sizing: border-box;
}

.dropdown-select__option {
    cursor: pointer;
    transition: background .2s ease, border-color .2s ease;
}

.dropdown-select__option:hover {
    background: #F4F5F7;
}

.dropdown-select__option.is-selected {
    background: #FFFFFF;
    border-color: #99BC3A;
}

.dropdown-select__empty {
    color: #6D6D6E;
    font-size: 13px;
}

.dropdown-select__options--calendar {
    max-height: none;
    overflow: visible;
    display: block;
}

.calendar-dropdown {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.calendar-dropdown__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.calendar-dropdown__title {
    font-size: 16px;
    font-weight: 600;
    color: #303030;
    text-align: center;
    flex: 1 1 auto;
}

.calendar-dropdown__nav {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #E9E9EB;
    background: #FFFFFF;
    color: #303030;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s ease, border-color .2s ease, opacity .2s ease;
}

.calendar-dropdown__nav:hover {
    background: #E0F5CB;
    border-color: #76B929;
}

.calendar-dropdown__nav:disabled {
    opacity: .35;
    cursor: default;
    pointer-events: none;
}

.calendar-dropdown__weekdays,
.calendar-dropdown__grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 6px;
}

.calendar-dropdown__weekday {
    font-size: 12px;
    line-height: 1.2;
    font-weight: 600;
    color: #6D6D6E;
    text-align: center;
    padding: 4px 0;
}

.calendar-dropdown__day {
    width: 36px;
    height: 36px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    border: 1px solid transparent;
    border-radius: 50%;
    background: #E0F5CB;
    color: #303030;
    font: inherit;
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
    transition: background .2s ease, border-color .2s ease, color .2s ease, opacity .2s ease;
}

.calendar-dropdown__day:hover {
    background: #D0EBB5;
    border-color: #76B929;
}

.calendar-dropdown__day.is-selected {
    background: #76B929;
    border-color: #76B929;
    color: #FFFFFF;
    font-weight: 600;
}

.calendar-dropdown__day.is-today:not(.is-selected):not(.is-disabled) {
    border-color: #76B929;
}

.calendar-dropdown__day.is-disabled {
    background: #F4F5F7;
    color: #A7A19B;
    cursor: default;
}

.calendar-dropdown__day.is-outside {
    background: transparent;
    color: #D0CAC4;
}

.calendar-dropdown__hint {
    font-size: 12px;
    line-height: 1.4;
    color: #6D6D6E;
}

.furshet_catalog_item_detail_info_basket_button_inn_del {
    background-image: url(/pokupatelyam/furshet/assets/css/../images/Trash.png);
    width: 25%;
    height: 44px;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    display: none;
}

.furshet_catalog_item_detail_info_basket_button_inn_minus {
    background-image: url(/pokupatelyam/furshet/assets/css/../images/Minus.png);
    width: 25%;
    height: 44px;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    display: none;
}

.show_del .furshet_catalog_item_detail_info_basket_button_inn_del {
    display: block;
}

.show_minus .furshet_catalog_item_detail_info_basket_button_inn_minus {
    display: block;
}

.min_count_reached .furshet_catalog_item_detail_info_basket_button_inn_minus {
    opacity: 0.35;
    filter: grayscale(1);
    pointer-events: none;
}

.furshet_catalog_item_detail_info_basket_button_inn_count {
    width: 50%;
    background: #F4F5F7;
    border-radius: 24px;
    line-height: 44px;
    text-align: center;
}

.furshet_catalog_item_detail_info_basket_button_inn_add {
    background-image: url(/pokupatelyam/furshet/assets/css/../images/Plus.png);
    width: 25%;
    height: 44px;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
}

.furshet_catalog_item_detail_info_basket_button_inn_count .basket_count {

}

.furshet_catalog_item_detail_info_basket_button_block.this_count_block.in_basket .furshet_catalog_item_detail_info_basket_button_empty {
    display: none;
}

.furshet_catalog_item_detail_info_basket_button_inn {
    display: none;
}

.furshet_catalog_item_detail_info_basket_button_block.this_count_block.in_basket .furshet_catalog_item_detail_info_basket_button_inn {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    background: #76B929;
    border-radius: 24px;
    height: 44px;
    margin-top: 15px;
}

.basket_item_info_change_count_del {
    background-image: url(/pokupatelyam/furshet/assets/css/../images/Trash.png);
    width: 25%;
    height: 44px;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
}

.basket_item_info_change_count_minus {
    background-image: url(/pokupatelyam/furshet/assets/css/../images/Minus.png);
    width: 25%;
    height: 40px;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
}

.basket_item_info_change_count.min_count_reached .basket_item_info_change_count_minus {
    opacity: 0.35;
    filter: grayscale(1);
    pointer-events: none;
    cursor: default;
}

.basket_item_info_change_count_plus {
    background-image: url(/pokupatelyam/furshet/assets/css/../images/Plus.png);
    width: 25%;
    height: 40px;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
}

.order_make_field_error {
    display: none;
    color: #CA3611;
    margin-top: 4px;
    padding-left: 28px;
    background-image: url(/pokupatelyam/furshet/assets/css/../images/Icon_error.png);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 16px;
    font-size: 12px;
    line-height: 1.2;
}

.show_error .order_make_field_error {
    display: block;
}

.basket_action_icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 28px;
    background-color: #D0EBB5;
    background-image: url(/pokupatelyam/furshet/assets/css/../images/Basket.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 28px;
    position: relative;
}

.basket_action_block {
    position: fixed;
    right: 0;
    top: 50%;
    display: flex;
    background: #62A515;
    border-radius: 28px 0 0 28px;
    padding: 14px 16px;
    transition: transform 0.5s ease, opacity 0.5s ease;
    opacity: 0;
    z-index: 100060;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #FFFFFF;
    width: 244px;
    transform: translateX(calc(100% - 72px));
    pointer-events: none;
}

.basket_action_block.show_action {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.basket_fix_icon_block.show_action {
    opacity: 0;
}

.basket_action_text {
    width: 160px;
    line-height: 120%;
}

.basket_action_mobile {
    display: none;
}

.furshet_session_toast {
    position: fixed;
    right: 0;
    top: 50%;
    z-index: 100060;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 14px 16px;
    width: 280px;
    background: #FFFFFF;
    border-radius: 28px 0 0 28px;
    color: #303030;
    font-size: 14px;
    line-height: 1.2;
    box-shadow:
            0.96px 1.52px 1.96px rgba(0, 0, 0, 0.03),
            4.53px 7.16px 7.64px rgba(0, 0, 0, 0.04),
            11.76px 18.6px 24px rgba(0, 0, 0, 0.07);
    box-sizing: border-box;
    transform: translateX(calc(100% - 72px));
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
    pointer-events: none;
}

.furshet_session_toast.show_action {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}

.furshet_session_toast_title {
    font-weight: bold;
    width: 100%;
}

.furshet_session_toast_text {
    font-weight: normal;
    width: 100%;
    margin-top: 2px;
}

.basket_fix_icon_block.show_session {
    opacity: 0;
}

#basket_action_mobile_anchor {
    height: 0;
    overflow: visible;
    pointer-events: none;
}

.order_finish_title {
    font-size: 44px;
    font-weight: bold;
    text-align: center;
}

.order_finish_number {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    margin-top: 10px;
}

.order_finish_text1 {
    font-size: 16px;
    margin-top: 20px;
}

.order_finish_text2 {
    font-size: 16px;
    margin-top: 10px;
}

.order_finish_text3 {
    font-size: 16px;
    margin-top: 30px;
}

.order_finish_image {
    width: 304px;
    height: 180px;
    margin: 20px auto;
    background: url(/pokupatelyam/furshet/assets/css/../images/order_finish.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.html_fixed {
    overflow: hidden;
}

html.html_fixed .basket_fix_icon_block {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

html.html_fixed .b24-widget-button-wrapper,
html.html_fixed .b24-widget-button-position-bottom,
html.html_fixed .b24-widget-button-position-bottom-right,
html.html_fixed .b24-widget-button-position-bottom-left,
html.html_fixed .bx-livechat-button,
html.html_fixed #bx-livechat-button,
html.html_fixed .callback-widget,
html.html_fixed .callback_widget,
html.html_fixed .phone-callback,
html.html_fixed .call-back-button {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

.furshet_catalog_item_detail_info_weight {
    display: none;
}
@media (min-width: 1366px) {
    .furshet_banner {
        position: relative;
        width: 1360px;
        max-width: calc(100vw - 30px);
        left: 50%;
        transform: translateX(-50%);
    }
}
@media (max-width: 768px) {
    .basket_action_block {
        display: none !important;
    }

    .basket_list_wrapp {
        padding: 0 16px 20px;
    }

    .furshet_catalog_item_name {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .furshet_catalog_item_detail_button {
        display: block;
        opacity: 1;
        pointer-events: auto;
        left: 10px;
        right: 10px;
        bottom: 10px;
    }

    .furshet_catalog_item:hover .furshet_catalog_item_desc {
        display: none;
    }

    .furshet_catalog_item_desc {
        display: none;
    }

    .furshet_catalog_item_price,
    .furshet_catalog_item:hover .furshet_catalog_item_price {
        left: 10px;
        right: 10px;
        bottom: calc(10px + 44px + 20px);
    }

    .basket_fix_icon_circle {
        width: 60px;
        height: 60px;
        border-radius: 34px;
        background-size: 32px;
    }

    .basket_fix_icon_fon {
        width: 24px;
        margin-left: -24px;
    }

    .basket_fix_icon_block:hover .basket_fix_icon_fon {
        width: 36px;
    }

    .basket_action_mobile {
        position: fixed;
        top: 16px;
        left: 16px;
        right: 16px;
        z-index: 100070;
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 16px;
        background: #62A515;
        border-radius: 20px;
        box-shadow:
                0 0.96px 1.52px rgba(0, 0, 0, 0.03),
                0 4.53px 7.16px rgba(0, 0, 0, 0.04),
                0 11.76px 18.6px rgba(0, 0, 0, 0.07);
        transform: translateY(calc(-100% - 24px));
        opacity: 0;
        transition: transform 0.35s ease, opacity 0.35s ease;
        pointer-events: none;
        box-sizing: border-box;
        max-width: 304px;
        margin: 0 auto;
    }

    .basket_action_mobile.in_product_modal {
        position: absolute;
        z-index: 5;
        max-width: none;
        margin: 0;
    }

    .furshet_session_toast {
        position: fixed;
        top: 16px;
        left: 16px;
        right: 16px;
        width: auto;
        max-width: 304px;
        margin: 0 auto;
        border-radius: 20px;
        padding: 16px;
        transform: translateY(calc(-100% - 24px));
        transition: transform 0.35s ease, opacity 0.35s ease;
    }

    .furshet_session_toast.show_action {
        transform: translateY(0);
    }

    .furshet_session_toast.in_product_modal {
        position: absolute;
        z-index: 5;
        max-width: none;
        margin: 0;
    }

    #basket_action_mobile_anchor {
        height: 0;
        overflow: visible;
        pointer-events: none;
    }

    .basket_action_mobile.show_action {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .basket_action_mobile_icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        border-radius: 20px;
        background: #D0EBB5 url(/pokupatelyam/furshet/assets/css/../images/Basket.png) no-repeat center;
        background-size: 22px;
    }

    .basket_action_mobile_text {
        color: #FFFFFF;
        font-size: 14px;
        line-height: 120%;
        min-width: 0;
    }

    .basket_action_mobile_title {
        font-weight: bold;
    }

    .basket_action_mobile_name {
        font-weight: normal;
        margin-top: 2px;
    }

    .order_make_fields {
        padding: 20px 16px 0;
    }

    .order_make_title {
        padding-top: 16px;
    }

    .basket_content {
        max-height: calc(100vh - 59px);
    }

    .close_popup {
        top: 16px;
        right: 16px;
    }

    .furshet_banner_title {
        font-weight: 800;
        font-size: 32px;
        line-height: 110.00000000000001%;
        width: 220px;
        position: absolute;
        margin-left: 20px;
        top: 8px;
    }

    .furshet_preimushestva {
        flex-direction: column;
        gap: 12px;
    }

    .furshet_preimushestva_item_text {
        padding: 10px 0 0 20px;
    }

    .furshet_preimushestva_item_title {
        font-size: 22px;
        padding: 16px 0 0 20px;
    }

    .furshet_preimushestva_item {
        width: 100%;
    }

    .furshet_for_title {
        font-size: 32px;
    }

    .furshet_for {
        margin-top: 60px;
    }

    .furshet_for_list {
        flex-direction: column;
        margin-top: 20px;
        gap: 12px;
    }

    .furshet_for_item {
        width: 100%;
        padding: 16px 20px;
        font-size: 22px;
        height: 92px;
    }

    .furshet_kak_zakazat_title {
        font-size: 32px;
    }

    .furshet_kak_zakazat {
        margin-top: 60px;
    }

    .furshet_kak_zakazat_list {
        margin-top: 20px;
        gap: 14px;
        flex-direction: column;
    }

    .furshet_kak_zakazat_item_number {
        font-size: 52px;
    }

    .furshet_kak_zakazat_item_icon {
        width: 40px;
        height: 40px;
    }

    .furshet_kak_zakazat_item {
        width: 100%;
    }

    .furshet_kak_zakazat_item_text {
        font-size: 16px;
    }

    .furshet_kak_zakazat_item {
        width: 100%;
        align-items: center;
        padding-top: 40px;
        padding-left: 5px;
    }

    .furshet_kak_zakazat_item_line {
        width: calc(100% - 50px);
        right: 0;
        top: 19px;
    }

    .furshet_catalog_title {
        font-size: 32px;
    }

    .furshet_catalog {
        margin-top: 60px;
    }

    .furshet_catalog_section_bar {
        margin-top: 20px;
        gap: 12px;
    }

    .furshet_catalog_section_list {
        gap: 4px;
    }

    .furshet_catalog_section_item {
        font-size: 14px;
        line-height: 40px;
        padding: 0 16px 0 44px;
        background-size: 24px;
        background-position: 16px center;
        border-radius: 24px;
    }

    .furshet_catalog_section_list .furshet_catalog_section_item:not(.active_section) {
        display: none;
    }

    .furshet_catalog_filter_btn {
        display: block;
    }

    .furshet_catalog_item {
        border-radius: 16px;
        padding: 10px;
        width: auto;
        height: 360px;
    }

    .furshet_catalog_item_image {
        height: 140px;
    }

    .furshet_catalog_item_name {
        font-size: 14px;
    }

    .furshet_catalog_item.big_item {
        grid-column: span 2;
        height: 372px;
    }

    .big_item .furshet_catalog_item_image {
        margin: -48px -10px 0 -10px;
        border-radius: 16px 16px 0 0;
        width: calc(100% + 20px);
        height: 241px;
        background-size: cover;
    }

    .furshet_catalog_list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .furshet_photo_title {
        font-size: 32px;
    }

    .furshet_forma_title {
        font-size: 32px;
        width: 240px;
    }

    .furshet_forma_block {
        margin-top: 30px;
        display: flex;
        gap: 20px;
        flex-direction: column;
    }

    .furshet_forma_block_info {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 10px;
    }

    .furshet_forma_block_info_text1 {
        font-size: 14px;
        line-height: 120%;
    }

    .furshet_forma_block_info_text2 {
        font-size: 14px;
        line-height: 120%;
        color: #7B7B7B;
    }

    .furshet_forma_block_field_input_name {
        font-size: 14px;
    }

    .furshet_forma_block_field_soglasie_text {
        font-size: 14px;
    }

    .furshet_forma_bg {
        clip-path: polygon(0 0, 240px 0, 240px 80px, 100% 80px, 100% 100%, 0 100%);
        background: #F4F5F7;
        padding: 20px 20px 20px 20px;
    }

    .basket_block_wrapp {
        padding: 0 10px;
    }

    .furshet_catalog_item_detail_wrapp {
        padding: 16px;
        align-items: center;
        box-sizing: border-box;
    }

    .furshet_catalog_item_detail {
        display: flex;
        flex-wrap: nowrap;
        background: #FFFFFF;
        border-radius: 16px;
        padding: 16px;
        position: relative;
        gap: 10px;
        width: 100%;
        flex-direction: column;
        max-height: calc(100vh - 20px);
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        box-sizing: border-box;
    }

    .furshet_catalog_item_detail_image {
        background-color: #FAF7F3;
        width: 100%;
        min-height: 260px;
        height: 260px;
        border-radius: 16px;
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
    }

    .furshet_catalog_item_detail_info_name {
        font-size: 24px;
        line-height: 110%;
        font-weight: bold;
    }

    .furshet_catalog_item_detail_info {
        width: 100%;
    }

    .furshet_catalog_item_detail_info_sostav_text {
        font-size: 14px;

    }

    .furshet_catalog_item_detail_kbgu {
        width: 100%;
        padding-top: 10px;
    }

    .furshet_catalog_item_detail_kbgu_list {
        display: flex;
        gap: 5px;
        margin-top: 10px;
        flex-wrap: wrap;
    }

    .furshet_catalog_item_detail_kbgu_item {
        background-color: #F4F5F7;
        border-radius: 12px;
        display: flex;
        flex-direction: column;
        height: 74px;
        width: calc((100% - 5px) / 2);
        justify-content: center;
        padding-left: 10px;
        font-size: 16px;
        line-height: 120%;
    }

    .basket_content_wrapp {
        width: 100%;
        background-color: #FFFFFF;
        border-radius: 16px;
        padding: 0;
        position: relative;
    }

    .basket_item_info_min_count_title {
        font-size: 12px;
    }

    .basket_remove_confirm_content {
        width: 100%;
        padding: 28px 20px 20px;
        border-radius: 20px;
        gap: 16px;
    }

    .basket_remove_confirm_close {
        top: 12px;
        right: 12px;
        width: 40px;
        height: 40px;
    }

    .basket_remove_confirm_title {
        font-size: 24px;
        max-width: none;
        padding: 0 24px;
    }

    .basket_remove_confirm_actions {
        flex-direction: column;
    }

    .basket_remove_confirm_btn {
        width: 100%;
    }

    .basket_item_info_name_value {
        font-size: 14px;
        font-weight: bold;
    }

    .basket_title {
        font-size: 32px;
        font-weight: bold;
        padding: 16px 0 0 16px;
    }

    .basket_count {
        padding: 0 16px;
    }

    .basket_item_info_block {
        margin-top: 10px;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .basket_item_info_change_count {
        width: 100%;
    }

    .basket_info_list {
        display: flex;
        gap: 10px;
        margin-top: 10px;
        flex-direction: column;
    }

    .basket_info_item {
        width: 100%;
    }

    .basket_itogo_block {
        background: #F4F5F7;
        margin: 0;
        padding: 20px 20px 20px 20px;
        border-radius: 0 0 16px 16px;
    }

    .order_make_title {
        font-size: 32px;
        font-weight: bold;
        text-align: center;
        line-height: 100%;
        width: 200px;
        margin: 0 auto;
    }

    .order_make_summ {
        font-size: 14px;
        font-weight: bold;
        text-align: center;
        margin-top: 5px;
    }

    .furshet_banner_bg {
        width: 100%;
        background-image: url(/pokupatelyam/furshet/assets/css/../images/mobile_banner.jpg);
        height: 480px;
        clip-path: polygon(0 90px, 240px 90px, 240px 0, 100% 0, 100% 100%, 0 100%);
        margin: 0 auto;
        background-position: 0px 0px;
        background-size: 100%;
        padding-top: 480px;
        overflow: visible;
    }

    .furshet_banner_text_block {
        position: relative;
        top: unset;
        left: unset;
        margin-top: 12px;
        width: 100%;
        background: #384614;
        gap: 16px;
    }

    .furshet_banner_text1 {
        font-size: 14px;
    }

    .furshet_banner_text2 {
        font-size: 16px;
        line-height: 120%;
    }

    .furshet_photo {
        margin-top: 60px;
    }

    .furshet_photo_list {
        margin-top: 20px;
        flex-wrap: nowrap;
        gap: 16px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-padding-inline: calc((100vw - 242px) / 2);
        margin-left: -20px;
        margin-right: -20px;
        width: calc(100% + 40px);
        padding: 0 20px;
        box-sizing: border-box;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .furshet_photo_list::-webkit-scrollbar {
        display: none;
    }

    .furshet_photo_list > div {
        width: 242px;
        min-width: 242px;
        height: 242px;
        aspect-ratio: 1;
        flex-shrink: 0;
        scroll-snap-align: center;
        border-radius: 28px;
        background-size: cover;
        background-position: center;
    }

    .furshet_photo_pagination {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        margin-top: 16px;
        min-height: 8px;
    }

    .furshet_photo_pagination_dot {
        width: 8px;
        height: 8px;
        border-radius: 8px;
        background: #CBCCCD;
        cursor: pointer;
        flex-shrink: 0;
        transition: background-color 0.2s ease;
    }

    .furshet_photo_pagination_dot.active {
        background: #76B929;
    }

    .furshet_forma_block_field_input_value {
        font-size: 14px;
        line-height: 40px;
    }

    .furshet_catalog_item_price, .furshet_catalog_item:hover .furshet_catalog_item_price{
        bottom: calc(10px + 44px + 10px);
    }

    .order_make_field_value input {
        height: 40px;
    }

    .order_make_field_value input, .order_make_field_value textarea {
        min-height: 40px;
        font-size: 14px;
    }

    .dropdown-select__trigger {
        height: 40px;
        min-height: 40px;
        font-size: 14px;
    }

    .order_make_field_name {
        font-size: 14px;
    }

    .order_make_field_value_soglasie_text {
        font-size: 14px;
    }
}

@media (max-width: 560px) {
    .furshet_catalog_legenda {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .furshet_catalog_list {
        gap: 12px;
    }

    .furshet_catalog_item_name {
        font-size: 12px;
    }

    .furshet_catalog_item {
        min-height: 300px;
    }

    .furshet_catalog_item_min_count {
        font-size: 10px;
    }

    .furshet_catalog_item_min_count_value {
        font-size: 12px;
    }

    .furshet_catalog_item_price {
        font-size: 14px;
    }

    .furshet_catalog_item,
    .furshet_catalog_item.big_item {
        width: auto;
        height: auto;
    }

    .furshet_catalog_item_price, .furshet_catalog_item:hover .furshet_catalog_item_price{
        bottom: calc(10px + 44px);
    }

    .furshet_catalog_item_image {
        height: 112px;
    }

    .big_item .furshet_catalog_item_image {
        height: 200px;
    }

    .big_item .furshet_catalog_item_min_count {
        width: auto;
        max-width: 70%;
    }
}

/* End */
/* /pokupatelyam/furshet/assets/css/style.css?178480217565058 */
