.search_wrap {
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(3, 1fr);
}

.search_card {
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #ccc;
    transition: 0.3s ease-in-out;
}

.search_card_info_item {
    width: 100%;
}

.search_card_info .search_card_info_item:nth-child(1) svg path {
    fill: var(--woson);
}

.search_card_info .search_card_info_item:nth-child(3) svg path.clr-i-outline {
    fill: var(--woson);
}



.search_card_info_item a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 10px;
    border-radius: 15px;
    background: transparent;
    color: var(--woson);
    font-size: "Montserrat";
    font-size: 18px;
    font-weight: 300;
    border: 1px solid var(--woson);
    transition: 0.3 ease-in-out;
}

.search_card_info_item:hover a {
    background: var(--woson);
    color: #fff;
}

.search_card_info_item:nth-child(1):hover a svg path {
    fill: #fff;
}

.search_card_info_item:nth-child(2):hover a svg path {
    stroke: #fff;
}

.search_card_info_item:nth-child(3):hover a svg path.clr-i-outline {
    fill: #fff;
}

.search_card img {
    aspect-ratio: 3 / 2;
    object-fit: contain;
}

.search_card_body {
    margin-top: 16px;
}

.search_card_text {
    margin-top: 16px;
    font-weight: 300;
    color: #555;
    font-size: "Montserrat";
}

.search_card_info {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.search-page {
    margin-bottom: 160px;
    padding-top: 160px;
}

.search_card_info_item p {
    display: flex;
    gap: 8px;
    align-items: center;
}

.search_card_info_item svg {
    width: 32px;
    height: 32px;
}

.popup-wrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 100;
}

.popup-wrap.active {
    display: flex;
}

.popup {
    width: 100%;
    max-width: 420px;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
}

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

.popup_header p {
    font-size: 24px;
    color: #000;
    font-weight: 500;
}

.popup_header svg {
    cursor: pointer;
    width: 16px;
    height: 16px;
}

.popup_body {
    margin-top: 24px;
}

.popup_body .reg_form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.popup_body .reg_form input {
    width: 100%;
}

.popup_body input {
    height: 42px;
    padding: 16px;
    border-radius: 8px;
    border: #ccc 1px solid;
}

.btn {
    height: 42px;
    padding: 16px;
    color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 16px;
    background: #7F1085;
    border: 1px solid #7F1085;
}

.search_card_info_item {
    cursor: pointer;
}

input[type="hidden"] {
    display: none;
}

.popup_footer {
    margin-top: 32px;
}

.popup_footer p {
    cursor: pointer;
    color: #7F1085;
}

.d-none {
    display: none;
}

.product_body {
    margin-top: 60px;
}

.accordeon_header {
    display: flex;
    gap: 30px;
    align-items: center;
}

.accordeon_tabs {
    margin-top: 30px;
}

.accordeon_tab {
    width: 100%;
}

.accordeon_tab:not(.active) {
    display: none;
}

.accordeon_tab_auth:not(.active) {
    display: none;
}

.accordeon_item {
    height: 48px;
    background: #ECECEC;
    border-radius: 24px;
    padding: 0 22px;
    font-weight: 400;
    font-size: 16px;
    color: #1A1A1A;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.6s;
    cursor: pointer;
}

.accordeon_item.active {
    background: #7F1085;
    color: #FFFFFF;
}

.accordeon_item_auth {
    height: 48px;
    background: #ECECEC;
    border-radius: 24px;
    padding: 0 22px;
    font-weight: 400;
    font-size: 16px;
    color: #1A1A1A;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.6s;
    cursor: pointer;
}

.accordeon_item_auth.active {
    background: #7F1085;
    color: #FFFFFF;
}

.product_row {
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(6, 1fr);
}

.prod_col_1 {
    grid-column: span 2;
}

.prod_col_2_text {
    margin-top: 30px;
}

.prod_col_1 img {
    width: 100%;
}

.prod_col_2 {
    grid-column: span 4;
}

.docs_item {
    display: flex;
    align-items: center;
    gap: 30px;
}

.docs_wrap {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.docs_item img {
    width: 32px;
    height: 32px;
}

.faq_body:not(.active) {
    display: none;
}

.faq_item {
    padding: 20px;
    font-size: 20px;
    border: 1px solid #cfcfcf;
    border-radius: 14px;
}

.faq {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq_body {
    padding-top: 24px;
}

.product_spec {
    margin-top: 40px;
}

.product_spec_table {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.product_table_item {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 15px;
}

.product_table_item:nth-child(odd) {
    background: #F3F3F3;
}

.product_table_item_name,
.product_table_item_value {
    grid-column: span 1;
}

.product_table_item_name {
    font-weight: 500;
}

.page_wrap {
    padding-top: 40px;
    padding-bottom: 40px;
}

.search_form input {
    height: 42px;
    padding: 16px;
    border-radius: 8px;
    border: #ccc 1px solid;
}

.search_form {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn::placeholder {
    padding-bottom: auto;
    padding-top: auto;
}

.simple-page {
    margin-bottom: 160px;
    padding-top: 160px;
}

.form_wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form_wrap input {
    width: 100%;
    height: 42px;
    padding: 16px;
    border-radius: 8px;
    border: #ccc 1px solid;
}

.form_wrap textarea {
    width: 100%;
    padding: 16px;
    border-radius: 8px;
    border: #ccc 1px solid;
    font-size: 14px;
}

.lk-accordeon {
    margin-top: 60px;
}

.top_body_item[data-accord="personal"],
.top_body_item[data-accord="cta"] {
    max-width: 600px;
}

.header_btns {
    gap: 18px;
}

.header_btns .acc {
    width: 36px;
    height: 36px;
}

.luquid {
    border-radius: 100%;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.header_btns .acc svg {
    width: 100%;
    height: 100%;
    transition: .6s ease;
}

.acc {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    cursor: pointer;
}

.form_wrap input {
    line-height: 1px;
}

.header.show.on .acc svg path {
    fill: #555555;
}

input.btn {
    line-height: 9px;
}

.header.header_on .acc svg path {
    fill: #555555;
}

.auth_tab:not(.active) {
    display: none;
}

.open-auth-tab {
    cursor: pointer;
}

.auth_tab {
    margin-left: auto;
    margin-right: auto;
    max-width: 800px;
}

.auth_item:not(.active) {
    display: none;
}

.auth_item {
    max-width: 600px;
}

.docs_item {
    color: #000;
    cursor: pointer;
    transition: 0.3s;
}

.docs_item a {
    color: #000;
}

.docs_item:hover {
    text-decoration: underline;
}

.accordeon_popup_header {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.alert {
    width: 100%;
    padding: 14px 24px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 500;
}

.alert.success {
    background: #E0F8E8;
    border: 1px solid #2C9A6E;
    color: #2C9A6E;
}

.alert.error {
    background: #FEE9E6;
    border: 1px solid #C73A2B;
    color: #C73A2B;
}

/* .popup .accordeon_tab {
    margin-top: 30px;
} */

.just-validate-error-field {
    border: 1px solid #C73A2B !important;
    color: #C73A2B;
}

/* .just-validate-error-label {
    display: none !important;
} */

.socials {
    display: flex;
    align-items: center;
    gap: 12px;
}

.socials_item {
    width: 36px;
    height: 36px;
    border-radius: 100%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3 ease;
}

.socials_item svg {
    width: 16px;
    height: 16px;
    transition: 0.3 ease;
}

.socials_item:first-child svg {
    width: 32px;
    height: 32px;
}

.footer_top_l {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    grid-template-rows: repeat(2, 1fr) !important;
}

.footer_top_l .item {
    grid-column: span 1 !important;
}

.socials_item:hover {
    background: #7F1085;
}

.socials_item:hover svg {
    fill: #fff
}

.socials_item:first-child:hover svg path {
    fill: #fff
}

.section .wrap .l .content img {
    margin-bottom: 40px;
}

.search_card:hover {
    transform: translateY(-10px);
    /* Изменение тени: мягче и больше */
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
}

.header .nav .nav_item .pro_second .wrap .pro_second_control .item p {
    white-space: unset;
    overflow: unset;
}

.header .nav .nav_item .pro_second .wrap .pro_second_box .pro_second_box_item .pro_second_box_list .pro_item p {
    font-weight: 600;
    font-size: "Montserrat";
    padding: 0px 20px;
    line-height: 1.2;
    border-radius: 2px;
    background: #fff;
}

.header .nav .nav_item .pro_second .wrap .pro_second_box .pro_second_box_item .pro_second_box_list .pro_item .pro_item_bg {
    padding: 35px;
    background-color: #fff;
}

.header .nav .nav_item .pro_second .wrap .pro_second_box .pro_second_box_item .pro_second_box_list .pro_item {
    background: #fff;
}

/* мой айтем  */
.section_filter .pro_second_control .item {
    grid-column: span 1;
    height: 70px;
    display: flex;
    align-items: center;
    padding: 0 28px 0 25px;
    cursor: pointer;
    transition: 0.6s;
    border-radius: 8px;
    margin-bottom: 10px;
    /* padding: 20px; */
    border-radius: 8px;
    border: 0.5px solid #ccc;
}

.section_filter .pro_second_control {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.section_filter .pro_second_control .item .icon {
    width: 45px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-right: 34px;
    /* transition: 0.4s ease-in-out; */
}

.section_filter .pro_second_control .item p {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #978DA0;
    text-transform: capitalize;
    width: 160px;
    margin-right: 16px;
    /* transition: 0.6s; */
}

.section_filter {
    margin-top: 160px;
}

.section_filter .pro_second_control .item .icon img.active {
    display: none;
}

.section_filter .pro_second_control .item:hover img.active {
    display: block;
}

.section_filter .pro_second_control .item:hover img:not(.active) {
    display: none;
}

.section_filter .pro_second_control .item:hover p {
    color: var(--woson);
}

.section_filter .pro_second_control .item:hover {
    border: 0.5px solid var(--woson);
}


.section_filter .pro_second_control .item.active img.active {
    display: block;
}

.section_filter .pro_second_control .item.active img:not(.active) {
    display: none;
}

.section_filter .pro_second_control .item.active p {
    color: var(--woson);
}

.section_filter .pro_second_control .item.active {
    border: 0.5px solid var(--woson);
}

/* div.title-search-result {
    display: block !important;
} */

.title-search-result {
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
}

table.title-search-result th,
table.title-search-result td.title-search-more a {
    display: none !important;
}

table.title-search-result {
    width: 100%;
}

table.title-search-result td.title-search-item img {
    display: none;
}

div.title-search-result {
    border-radius: 15px;
}

table.title-search-result td.title-search-item b {
    color: #000;
}

table.title-search-result td.title-search-all {
    padding-left: 8px;
}


div.title-search-result {
    margin-top: 30px;
}

table.title-search-result tr.title-search-selected td,
table.title-search-result tr.title-search-selected a,
table.title-search-result tr.title-search-selected td.title-search-more a,
table.title-search-result tr.title-search-selected b {
    background: var(--woson);
    color: #fff !important;
}

.header.on .acc {
    border: 1px solid #555;
}

.header.on .acc path {
    fill: #555;
}

.mobile_menu {
    display: none;
}

.mobile_menu_wrap .iconfont {
    transform: rotate(180deg);
    display: inline-block;
    font-size: 12px;
    margin-left: 16px;
}

.mobile_menu_wrap {
    display: none;
}

.event_section .wrap .list .item .item_box .item_bottom {
    width: 100%;
}

.header .header_search_box .header_search_box_content .wrap .header_search_box_content_title {
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
}

.header .header_search_box .header_search_box_content .wrap .links_box .item p {
    font-family: "Montserrat", sans-serif;
}

.sec3 .wrap .list_group .list .item .item_box span {
    font-family: "Montserrat", sans-serif !important;
}

.sec3 .wrap .list_group .list .item p {
    font-family: "Montserrat", sans-serif !important;
}

.sec3 {
    background: unset !important;
}

.search-page_block {
    font-family: "Montserrat", sans-serif !important;
    font-size: 32px;
    text-align: center;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

.search-page_block .search_form {
    margin-left: auto;
    margin-right: auto;

}

.just-validate-error-label {
    font-size: 12px;
    font-family: "Montserrat", sans-serif !important;
}

.search-page-block {
    margin-bottom: 40px !important;
}

/* .popup_body {
    max-height: 70vh;
    overflow-y: scroll;
    scrollbar-width: thin;
    scroll-behavior: smooth;
}

.popup_body::-webkit-scrollbar {
    display: block;
} */

.popup-wrap .popup_body .reg_form {
    max-height: 50vh;
    overflow-y: auto;
}

.popup-wrap .popup_body .reg_form::-webkit-scrollbar {
    display: block;
}

.simple_page {
    margin-top: 62px;
    padding-bottom: 190px;
}

/* */

#search_form_container form {
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px;
    width: max-content;
    display: flex;
    align-items: center;
    gap: 25px;
    margin-left: auto;
    margin-right: auto;
}

#search_form_container form input::placeholder {
    color: #fff;
}

#search_form_container form input {
    width: 500px;
    height: 55px;
    padding: 0 18px;
    font-weight: 400;
    font-size: 14px;
    background: unset;
    border: none;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 12px;
}

.cookie_attention {
    position: fixed;
    bottom: 20px;
    width: 100%;
    right: 20px;
    z-index: 10;
    padding: 20px;
    max-width: 500px;
    border-radius: 20px;
    background: #fff;
    border: 0.5px solid #c0c0c0;
}


.cookie_attention_btn_wrap {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.cookie_attention_btn_wrap .link {
    color: var(--woson);
}

.not_search {
    margin-top: 60px;
}

.not_search p {
    font-size: 24px;
    text-align: center;
    color: var(--woson);
}

.search-page_block.left {
    align-items: flex-start;
}

.search-page_block.left p {
    text-align: left;
    font-size: 26px;
}

.not_search.left p {
    text-align: left;
}

body.not-scroll {
    overflow-y: hidden !important;
    position: fixed !important;
    /* Фиксируем позиционирование */
    width: 100% !important;
    /* Фиксируем ширину */
    /* top: 0 !important; */
    /* Прижимаем к верху */
    left: 0 !important;
    /* Прижимаем к левому краю */
}

.form-control-checkbox {
    display: flex;
    gap: 15px;
}

.form-control-checkbox input {
    width: 16px !important;
    height: 16px !important;
    border-radius: 2px;
    margin-top: 3px;

}

.form-control-checkbox .just-validate-error-label {
    display: none;
}

.form-control-checkbox .just-validate-error-field+label {
    color: #C73A2B;
}

.form-control-checkbox .just-validate-error-field+label a {
    color: #C73A2B;
}

.form-control-checkbox a {
    color: var(--woson) !important;
}

div.title-search-result {
    z-index: 1 !important;
}

.iti__tel-input {
    font-size: 16px;
}

.iti__tel-input::placeholder {
    color: transparent;
}

.iti--input-container {
    width: 100%;
}

.grid_news {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.swiperThums .swiper-slide {
    width: 25%;
    height: 100%;
}



.swiper-container {
    position: relative;
}

.swiper-arrow-prev,
.swiper-arrow-next {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ccc;
    /* padding: 15px; */
    border-radius: 100%;
    cursor: pointer;
    z-index: 4;
    position: absolute;
    background: #fff;
}


.swiper-arrow-prev svg,
.swiper-arrow-next svg {
    width: 20px;
    height: 20px;
}

.swiper-arrow-prev svg path,
.swiper-arrow-next svg path {
    stroke: var(--woson);
}

.swiper-arrow-prev {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.swiper-arrow-next {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.swiperProduct img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: contain;
}

.swiperThums {
    margin-top: 30px;
}


.swiperThums img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    object-position: center;
}

.swiperThums .swiper-slide img {
    border-radius: 12px;
    border: 1px solid #ccc;
}

.swiperThums .swiper-slide.swiper-slide-thumb-active img {
    border-radius: 12px;
    border: 1px solid var(--woson);
    opacity: 1;
}

.swiperThums .swiper-slide:not(.swiper-slide-thumb-active) img {
    border: 1px solid #ccc;
    border-radius: 12px;
    opacity: 0.4;
}

.product_accordeon .auth_wrap {
    margin-top: 40px;
}

.swiperNews img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    object-position: top;
}

.swiperNews .swiper-arrow-next {
    right: 10px;
}

.swiperNews .swiper-arrow-prev {
    left: 10px;
}

.contact_grid {
    padding-top: 60px;
    padding-bottom: 240px;
}

.contact_grid .footer_top_l .item p,
.contact_grid .footer_top_l .item a {
    color: #000;
}

.contact_grid .footer_top_l .item h5 {
    color: var(--woson);
    opacity: 1;
}