@font-face {
  font-family: 'font'; /* Название шрифта */
  src: url('/static/fonts/font_thin.woff2') format('woff2'); /* Путь к файлу */
  font-display: swap; /* Оптимизация загрузки */
}

@font-face {
  font-family: 'font-reg'; /* Название шрифта */
  src: url('/static/fonts/font_regular.woff2') format('woff2'); /* Путь к файлу */
  font-display: swap; /* Оптимизация загрузки */
}

@font-face {
  font-family: 'citilink-reg'; /* Название шрифта */
  src: url('/static/fonts/citilink_reg.woff2') format('woff2'); /* Путь к файлу */
  font-display: swap; /* Оптимизация загрузки */
}

@font-face {
  font-family: 'font-bold'; /* Название шрифта */
  src: url('/static/fonts/font_bold.woff2') format('woff2'); /* Путь к файлу */
  font-display: swap; /* Оптимизация загрузки */
}

* {
    margin: unset;
    padding: unset;
    box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    scroll-behavior: smooth;
    overscroll-behavior-y: auto;
    font-size: unset;
    font-family: font, sans-serif;
    text-decoration: unset;
    color: unset;
}

:root {
    --border: rgb(254, 114, 0);
    --text-primary: rgb(254, 114, 0);
    --text-secondary: rgb(21, 21, 40);
    --text-3: rgb(179, 179, 183);
    --white: #fff;
    --bg-color-2: #f5f5f6;
    --text-4: #2b2a29;
    --text-5: rgb(131 131 131);
    --text-6: rgb(81 81 81);
}

::-webkit-scrollbar {
    width: 0;
    -ms-overflow-style: none;
}

header {
    padding: 1rem 4rem;
    position: sticky;
    top: 0;
    width: 100svw;
    z-index: 20;
    max-height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    transition: box-shadow .2s ease-in-out;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100svh;
}

.main {
    flex-grow: 1;
}

.header {
    display: grid;
    grid-template-columns: 1fr 4fr 2fr;
    width: 100%;
    gap: 4rem;
}

.logo_wrapper {
    display: flex;
    width: 30%;
    height: 100%;
}

.logo {
    height: 100%;
    object-fit: contain;
}

.catalog_wrapper {
    display: flex;
    width: 100%;
    min-width: 166px;
}

.catalog {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

.catalog_inner {
    display: flex;
    gap: 0.3rem;
    padding: 0.5rem 0.8rem;
    color: var(--text-primary);
    border: 1px var(--border) solid;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    fill: var(--text-primary);
    transition: color .2s ease-in-out, fill .2s ease-in-out, background-color .2s ease-in-out;
    cursor: pointer;
}

.catalog_inner:hover {
    color: var(--white);
    fill: var(--white);
    background-color: var(--text-primary);
}

.catalog_inner svg {
    display: block;
    width: 1.3rem;
    height: 1.3rem;
}

.catalog_text {
    font-size: 15px;
    font-weight: 700;
}

.seacrh {
    display: flex;
    width: 100%;
    align-items: flex-end;
    position: relative;
    fill: var(--text-3);
    padding-bottom: 1px;
}

.seacrh:hover {
    fill: var(--text-primary);
}

.seacrh:focus-visible {
    fill: var(--text-primary);
}

#seacrh_input,
#seacrh_category_input {
    border: none;
    border-bottom: 1px solid rgb(223, 223, 225);
    fill: var(--text-3);
    width: 100%;
    height: 50%;
    color: var(--text-secondary);
    font-size: 18px;
    font-weight: 400;
}

#seacrh_input:hover,
#seacrh_category_input:hover {
    border-bottom: 1px var(--text-primary) solid;
    fill: var(--text-primary);
}

#seacrh_input:focus-visible,
#seacrh_category_input:focus-visible {
    outline: none;
    border-bottom: 1px var(--text-primary) solid;
    fill: var(--text-primary);
}

.submit_seacrh {
    position: absolute;
    width: 1.3rem;
    height: 1.3rem;
    border: none;
    background: none;
    top: 40%;
    right: 0;
    cursor: pointer;
}

.cart {
    display: flex;
    width: 100%;
    flex-direction: column;;
    height: 100%;
    align-items: center;
    justify-content: flex-end;
    color: var(--text-3);
    fill: var(--text-3);
}

.cart:hover {
    fill: var(--text-primary);
    color: var(--text-primary);
}

.cart_img {

}

.cart_img svg {
    width: 1.3rem;
    height: 1.3rem;
}

.cart_text {

}

.login {
    fill: rgb(93, 93, 100);
    color: rgb(93, 93, 100);
    cursor: pointer;
    user-select: none;
    letter-spacing: 0.02em;
    display: flex;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
    justify-content: flex-end;
    transition: color .2s ease-in-out, fill .2s ease-in-out;
}

.login_img_wrapper {
    cursor: pointer;
    user-select: none;
    letter-spacing: 0.02em;
    position: relative;
    display: flex;
    color: inherit;
    margin-bottom: 2px;
}

.login_text {
    cursor: pointer;
    letter-spacing: 0.02em;
    font-weight: 400;
    user-select: text;
    overflow: hidden;
    width: 100%;
    color: inherit;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14px;
    line-height: 18px;
}

.login_img {
    width: 1.2rem;
    height: 1.2rem;
}

.header_buttons {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-around;
    min-width: 253px;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 21;
}

.overlay.active {
    display: block;
}

.overlay_m {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal {
    min-width: 300px;
    max-width: 500px;
    background: #fff;
    padding: 20px 30px;
    border-radius: 12px;
    top: 50%;
    gap: 24px;
    left: 50%;
    display: flex;
    transform: translate(-50%, -50%);
    text-align: center;
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
    position: absolute;
    z-index: 1001;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.modal p {
    font-family: 'font', sans-serif;
    font-size: 18px;
}

.modal button {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    background: var(--text-5);
    color: white;
    cursor: pointer;
    width: 100%;
    font-family: 'citilink-reg', sans-serif;
    font-size: 18px;
    transition: background .2s;
}

.modal button:hover {
    background: var(--text-primary);
    transition: background .2s;
}

.folder_wrapper {
    position: fixed;
    z-index: 22;
    width: calc(288px * 4);
    height: 100svh;
    border-radius: 0 12px 12px 0;
    top: 0;
    left: calc(288px * -4);
    background-color: #fff;
    transition: left 0.3s ease;
    overflow: hidden;
}

.folder_wrapper.active {
    left: 0;
}

body.catalog-open {
    overflow: hidden;
}

.no-scroll {
    overflow: hidden;
}

.folder {
    display: grid;
    grid-template-columns: 1fr 3fr;
    width: 100%;
    height: 100%;
    position: relative;
    background-color: var(--white);
}

.folder_category_wrapper {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0.5rem 1.5rem;
    gap: 1rem;
}

.folder_category_wrapper h2 {
    font-size: 26px;
    line-height: 30px;
    font-weight: 500;
    font-family: citilink-reg, sans-serif;
}

.folder_category_link {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    justify-content: center;
    align-items: flex-start;
    font-size: 18px;
    font-weight: 400;;
}

.selected_category_wrapper {
    height: 100%;
    width: 100%;
    overflow: scroll;
    padding: 2rem 4rem 0 2rem;
    display: flex;
    border-left: 5px solid rgb(245, 245, 246);
}

.selected_category {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.selected_category h2 {
    font-size: 24px;
    line-height: 30px;
    font-weight: 500;
    font-family: 'citilink-reg', sans-serif;
    margin-top: 1rem;
}

.brands_images_wrapper {
    height: 10rem;
    padding: 1rem 0;
    position: relative;
}

.brands_images {
    padding: 0;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    height: 100px;
    gap: 15px;
}

.brands_images::-webkit-scrollbar {
    display: none;
}

.brand {
    flex: 0 0 160px;
    scroll-snap-align: center;
    min-width: 0;
    padding: 0.5rem;
    border-radius: 8px;
    background-color: var(--bg-color-2);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
}

.brand_img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.nav-arrow:hover {
    background-color: white;
    transform: translateY(-50%) scale(1.1);
}

.nav-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.arrow-left {
    left: 20px;
}

.arrow-right {
    right: 20px;
}

.arrow-icon {
    width: 24px;
    height: 24px;
    fill: #333;
}

.selected_category_products {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    column-gap: 3rem;
    row-gap: 2rem;
    padding-top: 0.5rem;
}

.category_product {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    gap: 0.5rem;
}

.category_product_a_header {
    font-family: 'citilink-reg', sans-serif;
    font-size: 16px;
    line-height: 23px;
    font-weight: 500;
    transition: color .1s ease-in-out;
}

.category_product_a_header:hover {
    color: var(--text-primary);
}

.category_product_a_footer {
    font-size: 14px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 0.2rem;
    transition: color .1s ease-in-out;
}

.category_product_a_footer:hover {
    color: var(--text-primary);
}

.category_product_a_footer span {
    align-self: flex-start;
    height: 20px;
}

.close-catalog {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    cursor: pointer;
    z-index: 23;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: color 0.2s ease;
}

.close-catalog:hover {
    color: var(--text-primary);
}

.close-catalog svg {
    width: 1.5rem;
    height: 1.5rem;
}

.search_in_category {
    width: calc(100% - 3rem);
    position: relative;
    fill: var(--text-3);
}

.search_in_category:hover {
    fill: var(--text-primary);
}

#seacrh_category_input {
    height: 100%;
    font-size: 16px;
    line-height: 23px;
}

.search_in_category .submit_seacrh {
    top: -0.3rem;
}

.folder_logo_wrapper {
    width: 100%;
    height: 3rem;
}

.folder_logo {
    height: 100%;
    object-fit: contain;
}

.category_link {
    font-family: font, sans-serif;
    font-size: 15px;
    line-height: 18px;
    font-weight: 400;
    letter-spacing: 0.02em;
    transition-property: color, font-weight, border-bottom;
    transition-duration: 150ms;
    transition-timing-function: ease-in-out;
    color: rgb(21, 21, 40);
}

.category_link.selected_category_active {
    font-family: font-reg, sans-serif;
    font-size: 15px;
    line-height: 18px;
    font-weight: 700;
    letter-spacing: 0.02em;
    user-select: text;
    color: rgb(21, 21, 40);
}

.category_link.selected_category_active::after {
    content: "→";
    position: absolute;
    display: inline-block;
    margin-left: 5px;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
}

.category_link:hover {
    fill: rgb(254, 114, 0);
    color: rgb(254, 114, 0);
    transition-property: color, font-weight, border-bottom;
    transition-duration: 150ms;
    transition-timing-function: ease-in-out;
}

.above_header_wrapper {
    width: 100%;
    padding: 1rem 4rem;
    height: 5rem;
    background-color: var(--white);
    color: var(--text-secondary);
    align-items: center;
    justify-content: center;
    display: flex;
}

.above_header {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.above_header_phone_address {
    display: flex;
    width: 100%;
    height: 100%;
    gap: 0.5rem;
    align-items: center;
    justify-content: flex-start;
    transition: color .2s ease-in-out, fill .2s ease-in-out;
}

.above_header_other {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: flex-end;
}

.other_container {
    display: flex;
    gap: 1rem;
}

.other_container a {
    transition: color .2s ease-in-out, fill .2s ease-in-out;
}

footer {
    display: flex;
    width: 100%;
    flex-shrink: 0;
    margin-top: 5rem;
    padding: 3rem;
    background-color: var(--bg-color-2);
    align-items: center;
    justify-content: center;
}

.footer_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.3rem 1rem;
}

.footer_wrapper {
    display: flex;
    flex-direction: column;
    max-width: 1000px;
    width: 100%;
    gap: 1rem;
}

.footer_phone_address {
    border-top: 1px var(--text-3) solid;
    padding-top: 1rem;
    display: flex;
    max-width: 1000px;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

.hover_active:hover {
    transition: color .2s ease-in-out, fill .2s ease-in-out;
    fill: var(--text-primary);
    color: var(--text-primary);
}

.scrolled {
    box-shadow: rgba(0, 0, 0, 0.12) 0 5px 10px -5px;
    transition: box-shadow .2s ease-in-out;
}

.header_logo_mobile {
    display: none;
}

.header_open_catalog_button {
    display: none;
}

.search_button_mobile {
    display: none;
}

.folder_wrapper_mobile {
    display: none;
}

.mobile_bottom_menu_wrapper {
    display: none;
}

@media (max-width: 900px) {
    .modal {width: 100%;}

    .modal p {font-size: 20px;}

    .modal button {font-size: 24px;}

    .modal button:hover {

    }

    .above_header_wrapper {
        display: none;
    }

    header {
        padding: 10px 20px;
        height: 55px;
    }

    .catalog_wrapper {
        display: none;
    }

    .seacrh {
        display: none;
    }

    .header_buttons {
        display: none;
    }

    .header_logo_mobile {
        display: flex;
        width: 100%;
        height: 100%;
        min-height: 35px;
    }

    .header_logo_mobile_img {
        object-fit: contain;
        width: 100%;
    }

    .header {
        display: flex;
        width: 100%;
        flex: 1;
        height: 100%;
    }

    .header_open_catalog_button {
        display: flex;
        border: none;
        background: none;
        align-items: center;
        justify-content: center;
    }

    .header_open_catalog_button svg {
        width: 20px;
        height: 20px;
    }

    .search_button_mobile {
        display: flex;
        background: none;
        border: none;
        align-items: center;
        justify-content: center;
        width: 20px;
        height: 20px;
        position: relative;
    }

    .search_button_mobile svg {
        width: 20px;
        height: 20px;
    }

    .footer_grid {
        grid-template-columns: repeat(1, 1fr);
        font-size: 20px;
    }

    .footer_phone {
        display: flex;
        width: 100%;
    }

    .mobile_bottom_menu_wrapper {
        display: block;
        position: sticky;
        top: 0;
        bottom: 0;
        z-index: 20;
        box-sizing: border-box;
    }

    .mobile_bottom_menu {
        display: flex;
        position: relative;
        width: 100%;
        justify-content: space-around;
        box-sizing: border-box;
        height: 80px;
        padding: 5px 0 13px;
        background-color: rgb(255, 255, 255);
        box-shadow: rgba(0, 0, 0, 0.12) 0 -2px 2px;
    }

    .bottom_menu_button {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        flex-direction: column;
        padding-bottom: 10px;
        gap: 2px;
        width: 82px;
        height: 62px;
        transition: fill .2s, color .2s;
        color: rgb(21, 21, 40);
        fill: rgb(21, 21, 40);
    }

    .bottom_menu_button svg {
        object-fit: contain;
        width: 24px;
        height: 24px;
    }

    .bottom_menu_button_text {
        font-size: 14px;
        line-height: 15px;
        font-weight: 400;
        user-select: text;
        overflow: hidden;
        width: 100%;
        color: inherit;
        text-align: center;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .active_button {
        fill: var(--text-primary);
        color: var(--text-primary);
        transition: fill .2s, color .2s;
    }

    .folder_wrapper_mobile {
        position: fixed;
        z-index: 9999; /* выше всего остального */
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        transform: translateX(-100%);
        background-color: #fff;
        overflow-y: auto; /* прокрутка только меню */
        transition: transform .5s;
        -webkit-overflow-scrolling: touch;
        display: none;
    }

    .folder_wrapper_mobile.folder_mobile_active {
        display: block;
        transition: transform .5s;
        transform: translateX(0%);
    }


    .header_wrapper_mobile {
        position: sticky;
        top: 0;
        width: 100svw;
        z-index: 20;
        max-height: 5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: var(--white);
        transition: box-shadow .2s ease-in-out;
        padding: 10px 20px;
        height: 55px;
        border-bottom: 1px solid rgb(245, 245, 246);
    }

    .folder_mobile {
        display: flex;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        height: 100%;
    }

    .header_mobile {
        display: flex;
        width: 100%;
        flex: 1;
        height: 100%;
        gap: 4rem;
    }

    .menu_mobile_blocks {
        margin-top: 6px;
        padding: 0 20px;
    }

    .menu_block {
        padding-top: 20px;
        padding-bottom: 20px;
        color: rgb(93, 93, 100);
        fill: rgb(93, 93, 100);
        list-style: none;
        font-weight: 400;
        border-bottom: 1px solid rgb(245, 245, 246);
        font-size: 20px;
        line-height: 20px;
    }

    .ask_question_button {
        display: flex;
        height: 100%;
        width: 100%;
        align-items: flex-end;
        justify-content: center;
        padding: 24px 24px;
    }

    .ask_question_button_a {
        padding: 12px 24px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--text-primary);
        color: #fff;
        border-radius: 8px;
        font-size: 20px;
        font-weight: 700;
        font-family: 'citilink-reg', sans-serif;
    }

    .menu_block_a {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .menu_block_a svg {
        width: 20px;
        height: 20px;
        transform: rotateZ(-90deg);
    }

    footer {
        margin-top: 32px;
        padding: 32px;
    }

    #seacrh_input {
        display: none;
    }

    .submit_seacrh_mobile {
        position: absolute;
        top: 10px;
        width: 20px;
        height: 20px;
    }

    .footer_phone_address {
        font-size: 20px;
    }
}

@media (max-width: 757px) {
    .modal {width: calc(100% - 24px);}

    .modal p {font-size: 18px;}

    .modal button {font-size: 20px;}

    .modal button:hover {

    }

    .above_header_wrapper {
        display: none;
    }

    header {
        padding: 10px 20px;
        height: 55px;
    }

    .catalog_wrapper {
        display: none;
    }

    .seacrh {
        display: none;
    }

    .header_buttons {
        display: none;
    }

    .header_logo_mobile {
        display: flex;
        width: 100%;
        height: 100%;
        min-height: 35px;
    }

    .header_logo_mobile_img {
        object-fit: contain;
        width: 100%;
    }

    .header {
        display: flex;
        width: 100%;
        flex: 1;
        height: 100%;
    }

    .header_open_catalog_button {
        display: flex;
        border: none;
        background: none;
        align-items: center;
        justify-content: center;
    }

    .header_open_catalog_button svg {
        width: 20px;
        height: 20px;
    }

    .search_button_mobile {
        display: flex;
        background: none;
        border: none;
        align-items: center;
        justify-content: center;
        width: 20px;
        height: 20px;
        position: relative;
    }

    .search_button_mobile svg {
        width: 20px;
        height: 20px;
    }

    .footer_grid {
        grid-template-columns: repeat(1, 1fr);
        font-size: 16px;
    }

    .footer_phone {
        display: flex;
        width: 100%;
    }

    .mobile_bottom_menu_wrapper {
        display: block;
        position: sticky;
        top: 0;
        bottom: 0;
        z-index: 20;
        box-sizing: border-box;
    }

    .mobile_bottom_menu {
        display: flex;
        position: relative;
        width: 100%;
        justify-content: space-around;
        box-sizing: border-box;
        height: 70px;
        padding: 5px 0 13px;
        background-color: rgb(255, 255, 255);
        box-shadow: rgba(0, 0, 0, 0.12) 0 -2px 2px;
    }

    .bottom_menu_button {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        flex-direction: column;
        padding-bottom: 5px;
        gap: 2px;
        width: 52px;
        height: 52px;
        transition: fill .2s, color .2s;
        color: rgb(21, 21, 40);
        fill: rgb(21, 21, 40);
    }

    .bottom_menu_button svg {
        object-fit: contain;
        width: 20px;
        height: 20px;
    }

    .bottom_menu_button_text {
        font-size: 10px;
        line-height: 15px;
        font-weight: 400;
        user-select: text;
        overflow: hidden;
        width: 100%;
        color: inherit;
        text-align: center;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .active_button {
        fill: var(--text-primary);
        color: var(--text-primary);
        transition: fill .2s, color .2s;
    }

    .folder_wrapper_mobile {
        position: fixed;
        z-index: 9999; /* выше всего остального */
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        transform: translateX(-100%);
        background-color: #fff;
        overflow-y: auto; /* прокрутка только меню */
        transition: transform .5s;
        -webkit-overflow-scrolling: touch;
        display: none;
    }

    .folder_wrapper_mobile.folder_mobile_active {
        display: block;
        transition: transform .5s;
        transform: translateX(0%);
    }

    .footer_phone_address {
        font-size: 16px;
    }

    .header_wrapper_mobile {
        position: sticky;
        top: 0;
        width: 100svw;
        z-index: 20;
        max-height: 5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: var(--white);
        transition: box-shadow .2s ease-in-out;
        padding: 10px 20px;
        height: 55px;
        border-bottom: 1px solid rgb(245, 245, 246);
    }

    .folder_mobile {
        display: flex;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        height: 100%;
    }

    .header_mobile {
        display: flex;
        width: 100%;
        flex: 1;
        height: 100%;
        gap: 4rem;
    }

    .menu_mobile_blocks {
        margin-top: 6px;
        padding: 0 20px;
    }

    .menu_block {
        padding-top: 15px;
        padding-bottom: 15px;
        color: rgb(93, 93, 100);
        fill: rgb(93, 93, 100);
        list-style: none;
        font-weight: 400;
        border-bottom: 1px solid rgb(245, 245, 246);
        font-size: 16px;
        line-height: 20px;
    }

    .ask_question_button {
        display: flex;
        height: 100%;
        width: 100%;
        align-items: flex-end;
        justify-content: center;
        padding: 24px 24px;
    }

    .ask_question_button_a {
        padding: 12px 24px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--text-primary);
        color: #fff;
        border-radius: 8px;
        font-size: 20px;
        font-weight: 700;
        font-family: 'citilink-reg', sans-serif;
    }

    .menu_block_a {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .menu_block_a svg {
        width: 20px;
        height: 20px;
        transform: rotateZ(-90deg);
    }

    footer {
        margin-top: 32px;
        padding: 16px;
    }
    
    #seacrh_input {
        display: none;
    }

    .submit_seacrh_mobile {
        position: absolute;
        top: 10px;
        width: 20px;
        height: 20px;
    }
}