/*header*/
:root {
  --font-family-main: Geologica, sans-serif;
  --transition-time-all: all ease-in-out 300ms;
}
body {
  background-color: #f3f3f3;
  font-family: var(--font-family-main);
}
/* Стилі для прелоадера */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* Контейнер для прелоадера */
.preloader-container {
  position: relative;
  width: 150px;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* Логотип */
.logo svg {
  position: absolute;
  z-index: 2;
  width: 100px; /* Розмір логотипа */
  height: 100px;
  transform: translate(-50%, -50%);
}
/* Шестерня */
.gear svg {
  position: absolute;
  animation: rotate 3s linear infinite;
  width: 150px;
  height: 150px;
  z-index: 1;
  top: 0;
  left: 0;
  transform-origin: 50% 50%;
}
/* Анімація для обертання шестерні навколо логотипа */
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }  100% {
       transform: rotate(360deg);
     }}
.logo_header {
  width: 77px;
  height: 77px;
}
.header_phone {
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone-list {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid #ddd;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  list-style: none;
  padding: 5px 0;
  margin: 0;
  display: none;
  z-index: 1000;
  min-width: 120px;
}
.phone-list li {
  padding: 8px 10px;
  white-space: nowrap;
}.phone-list li:hover {
   border-radius: 12px;
   background: var(--Gray-100, #f3f3f3);
 }
.row_flex {
  display: flex;
  align-items: stretch;
}
.dropdown-menu {
  z-index: 1000;
}
.search_block {
  display: flex;
  justify-content: center;
  align-items: center;
}
.search-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
  height: 44px;
}.category-dropdown {
   position: absolute;
   display: inline-block;
 }
.category-list {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 10px;
  width: max-content;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  list-style: none;
  margin: 0;
  z-index: 1000;
}
.category-list.show {
  display: block;
}
.category-list li {
  padding: 8px 15px;
  cursor: pointer;
  transition: background 0.2s;
}
.category-list li:hover {
  background: #f0f0f0;
}
.category_btn {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 5px;
  border: 1px solid #007632;
  color: #007632;
  background: white;
  font-weight: bold;
}
.category_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  height: 45px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 14px;
  white-space: nowrap;
  transition: background 0.3s ease;
}
.category_btn svg {
  margin-left: 8px;
}
#search > div > input.header_search_input {
  width: 100%;
  padding: 10px 50px 10px 15px;
  font-size: 16px;
  height: 44px;
  background: #fff;
  outline: none;
  border-radius: 12px;
  border: 2px solid #dde0e2;
}.header_search_input:focus {
   border-color: var(--Green-600, #007632);
 }
.search_btn {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 50px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search_btn:hover {
  background: #007632;
  height: 101%;
}
.search_btn:hover svg path,
.header_button:hover svg path {
  fill: white;
  color: #007632;
}
.header_button:hover svg g,
.btn-cart:hover svg path {
  background: #007632;
}.btn-cart:hover {
   color: #007632;
 }
.header_button_common {
  display: flex;
  padding: 8px 8px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 12px;
  border: 2px solid #f3f3f3;
  width: 44px;
  height: 44px;
  background: #f3f3f3;
  transition: var(--transition-time-all);
}
.header_button_common svg path {
  border: 2px solid rgba(0, 118, 50, 0.6);
  fill: #181818;
  opacity: 0.5;
  transition: all ease-in-out 300ms;
}.header_button_common:hover svg path {
   border: 2px solid rgba(0, 118, 50, 0.6);
   fill: #007632;
   opacity: 1;
 }
.header_button_common:hover {
  background: #fff;
  border-radius: 12px;
  border: 2px solid #007632;
}/* Розмір кнопки */
#cart.header_button_common {
  width: 44px;
  height: 44px;
  padding: 0;
}
.header_button_common_one {
  display: flex;
  /*padding: 10px 10px;*/
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 12px;
  border: 2px solid #f3f3f3;
  width: 80px;
  height: 44px;
  background: var(--Gray-100, #f3f3f3);
  cursor: pointer;
  /* transition: var(--transition-time-all); */
}
.header_button_common_one svg {
  width: 100%;
}
.header_button_common_one:hover svg path,
.header_button_common_one:hover g {
  fill: #007632;
  opacity: 1;
  border: 2px solid rgba(0, 118, 50, 0.6);
  transition: all ease-in-out 300ms;
}.header_button_common_one:hover {
   background: #fff;
   border-radius: 12px;
   border: 2px solid #007632;
   opacity: 1;
 }
.btn-link .btn-lang .dropdown-toggle {
  transition: var(--transition-time-all);
}
.language_menu_section_click:hover {
  background: 2px solid var(--Gray-100, #f3f3f3);
  border-radius: 12px;
  transition: all ease-in-out 300ms;
}
.header_button_common_one.language_menu_section_click:hover {
  background: var(--Gray-100, #f3f3f3);
  border-radius: 12px;
}

.header_button_common_one:hover .pull-left form .btn-group .dropdown-toggle{
  background: #fff;
}
.btn-lang {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 0;
  border: none;
}
.btn-lang {
  text-decoration: none !important;
  background: var(--Gray-100, #f3f3f3);
}
.btn-cart {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border: none;
  background: transparent;
}
#cart {
  margin: 0;
  z-index: 1000;
}
#cart .dropdown-menu {
  min-width: 200px;
}
#search {
  margin: 0;
  width: 100%;
}
#menu {
  width: 100%;
  display: flex;
  align-items: flex-start;
  align-self: stretch;
  background-color: transparent;
  background-image: none;
}
.item_link_category_header {
  display: flex;
  padding: 0;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex: 1 0 0;
  /* border-radius: 12px;
  background: #F3F3F3;
  border: 2px solid #F3F3F3;
  transition: var(--transition-time-all); */
}
#menu .nav > li {
  display: flex;
  height: 44px;
  padding: 0;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex: 1 0 0;
  border-radius: 12px;
  background: #f3f3f3;
  position: relative;
}
#menu > div.collapse.navbar-collapse.navbar-ex1-collapse > ul {
  width: 100%;
  /*max-width: 1320px;*/
}

/* #content > div.super-products > ul > li > a {
    padding: 0;
}
#menu .nav > li > a:hover, .item_link_category_header:hover {
    border-radius: 12px;
    border: 2px solid #007632;
    background: #FFF;
}
#menu .nav > li dropdown-toggle svg:hover {
    color: var(--Green-600, #007632);
}
.dropdown-toggle svg path {
    fill: var(--Black-600, #181818);
}
#content > div.super-products > ul > li > a {
  padding: 0;
}
#menu .nav > li > a:hover,
#menu .nav > li.open > a {
  border: 2px solid #007632;
  background: #fff;
  transition: var(--transition-time-all);
}#menu .nav > li dropdown-toggle svg:hover {
  color: var(--Green-600, #007632);
}.dropdown-toggle svg path {
  fill: var(--Black-600, #181818);
}.dropdown-toggle:hover svg path {
  fill: var(--Green-600, #007632);
} */
.nav {
  display: flex;
  width: 50%;
}
.nav > li {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1 0 0;
  margin-right: 20px;
  padding: 7px 14px;
  border-radius: 14px;
  background: #fff;
}
.navbar-collapse {
  padding: 0;
  width: 100%;
}
.nav_burger_menu {
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  border-radius: 12px;
  border: 2px solid #ffffff;
  width: 45px;
  transition: var(--transition-time-all);
}.nav_burger_menu:hover svg path {
   border: 2px solid rgba(0, 118, 50, 0.6);
   fill: #007632;
   opacity: 1;
   transition: all ease-in-out 300ms;
 }
.nav_burger_menu:hover {
  background: #fff;
  border-radius: 12px;
  border: 2px solid #007632;
}
.menu_nav_burger {
  display: flex;
  align-items: center;
  border: none;
  background: transparent;
  margin-left: 14px;
}

.footer_social_icons {
  display: flex;
  align-items: center;
  gap: 14px;
}
.social_item svg path {
  fill: #fff;
  transition: var(--transition-time-all);
}
.social_item:hover svg path {
  fill: var(--Yellow-600, #EFE536);
  transition: var(--transition-time-all);
}
.footer_social_text {
  color: #fff;
  text-align: center;
  font-family: Geologica, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 20px;
}
.footer_powered p {
  color: #fff;
  text-align: center;
  font-family: Geologica, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}.header_menu_container {
   max-height: 150px;
   transition: var(--transition-time-all);
 }
.header_wrapper.scrolled .header_menu_container {
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  padding-top: 0;
  pointer-events: none;
}
.container_bottom_header {
  display: flex;
  align-items: flex-start;
  max-width: 1320px;
  width: 100%;
  /* padding-bottom: 20px; */
  position: relative;
}
.container_search_btn_bottom_header {
  width: 0;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  transition: var(--transition-time-all);
}


.header_wrapper.scrolled .container_search_btn_bottom_header {
  min-width: 616px;
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  overflow: visible;
}.header_wrapper.scrolled .straight_line {
   overflow: hidden;
   visibility: hidden;
   opacity: 0;
   pointer-events: none;
   margin-top: 0;
 }
/*-----header_two -----*/
.block_search {
  min-width: 510px;
  margin-right: 20px;
}

.container_search_btn_bottom_header .block_search {
  min-width: 390px;
  max-width: 390px;
}

.buttons_one_header {
  margin-right: 20px;
}
.ada {
  display: flow-root;
}
.container_main {
  padding-left: 10px;
  padding-right: 10px;
}
.featured-bloc-1-2-button{
  padding: 7px 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  border-radius: 14px;
  border: 2px solid #ffffff;
  transition: all 0.4s ease;
}

.featured-bloc-1-button a{
  color: #181818;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  text-decoration: none;
}

.featured-bloc-1-2-button:hover{
  border: 2px solid #007632;
  color: #007632;
}

.featured-bloc-2-block{
  padding: 20px;
  border-radius: 30px;
  background-color: #ffffff;
}


.container_product_featured_bloc_1{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.container_product_featured_bloc_1 .link_cart_product {
  min-width: 320px;
  width: 100%;
}

.container_featured_bloc{
  margin-top: 40px;
}


.title_featured_bloc{
  color: #181818;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 20px;
}

.featured-bloc-1-button{
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: nowrap;
  overflow-x: auto;
  width: 100%;
  margin-bottom: 20px;
}

.featured-bloc-1-button a {
  white-space: nowrap;
}

.featured-bloc-1-1-text {
  margin-right: auto;

}

@media screen and (min-width: 1250px) {
  .featured-bloc-1{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 0 20px;
    flex-direction: column;
    align-items: center;
  }

  .featured-bloc-1-1-text h2{
    color: #181818;
    padding-top: 10px;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-align: left;
  }


  .featured-bloc-1-button{
    display: flex;
    gap: 12px;
  }
}
@media screen and (min-width: 744px) {
  .container_main{
    padding-left: 20px;
    padding-right: 20px;
  }

}
@media screen and (max-width: 743px) {
  .container_product_featured_bloc_1 .link_cart_product {
    max-width: 340px;
    height: 430px;
  }
}
.swiper_pagination_tabs_cart_product{
  position: static !important;
}
.box_link_header_wishlist_compare{
  position: relative;
}
.count_product_cart_wishlist_compare{
  position: absolute;
  right: -2px;
  top: -4px;
  display: flex;
  min-width: 22px;
  width: fit-content;
  height: 22px;
  padding: 3px 4px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  border-radius: 51px;
  border: 2px solid #007632;
  background:  #007632;
  color: #FFF;
  text-align: center;
  font-family: var(--font-family-main);
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.41;
}
.list_link_category_header{
  display: flex;
  margin-left: 20px;
  gap: 20px;
  width: 100%;
  margin-bottom: 0;
  transition: var(--transition-time-all);
}

.header_wrapper.scrolled .list_link_category_header{
  margin-right: 20px;
}


.item_link_category_header{
  /* position: relative; */
  width: 100%;
  display: flex;

  justify-content: center;
  align-items: center;
  gap: 10px;
  flex: 1 0 0;
  /*pointer-events: none;*/
  transition: var(--transition-time-all);
}


.item_link_category_header:hover .text_item_link_category_header {
  color: #007632;
}
.item_link_category_header:hover svg path {
  fill: #007632;

}
.btnBurgerMenu{
  min-width: 44px;
  max-width: 44px;
  min-height: 44px;
  max-height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container_menu_category_header{
  position: absolute;
  left: -100%;
  top: 0;
  bottom: 0;
  transition: var(--transition-time-all);
  padding: 14px;
  gap: 20px;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  max-width: 380px;
  z-index: 2000;
  width: 100%;
}

.container_menu_category_header.open {
  left: 0;
}

.icon_arrow_sub_children {
  width: 24px;
  height: 24px;
  fill: #535863;
}


.background_category_header {
  display: none;
}


.text_item_link_category_header {
  padding-left: 14px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}


.list_sub_category_menu_category_header{
  position: absolute;
  display: flex;
  flex-direction: column;
  top: 0;
  left: -100%;
  width: 100%;
  gap: 20px;
  padding: 14px;
  transition: var(--transition-time-all);
  background-color: #fff;
  height: 100%;
  max-width: 380px;
  z-index: 2100;
}

.list_sub_category_menu_category_header.open {
  left: 0;
}


.btn_arrow_category{
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.text_item_link_category_header.desktop {
  display: none;
}


.box_top_menu_category_header {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.box_btn_go_back_title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn_go_back_menu{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.icon_go_back_menu {
  width: 24px;
  height: 24px;
  fill: #88898B;
  transform: rotate(180deg);
}

.btn_close_menu{
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon_close_menu {
  width: 32px;
  height: 32px;
  fill: #181818;
}

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


.container_left_menu_category_header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}




.link_item_menu_category_header{
  padding-left: 14px;

  color:  #535863;
  font-family: var(--font-family-main);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.25;
  opacity: 0.8;
  display: flex;
  align-items: center;
  width: 100%;
}

.link_item_menu_category_header:hover {
  opacity: 1;
  color: #007632;
}

.btn_open_sub_category {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon_arrow_sub_children{
  opacity: 0.8;
}

.btn_open_sub_category:hover .icon_arrow_sub_children{
  opacity: 1;
  fill: #007632;
}

.list_menu_category_header {
  overflow-y: auto;
  overflow: -moz-scrollbars-none;
}


/* Webkit-браузери */
.list_menu_category_header::-webkit-scrollbar {
  width: 8px;
}

.list_menu_category_header::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 4px;
}

.list_menu_category_header::-webkit-scrollbar-thumb {
  background-color: #bbb;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.list_menu_category_header::-webkit-scrollbar-thumb:hover {
  background-color: #888;
}

/* Firefox */
.list_menu_category_header {
  scrollbar-width: thin;
  scrollbar-color: #bbb #fff;
}

.box_bottom_sub_category_menu {
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.item_sub_category_menu_category_header{
  display: flex;
  flex-direction: row;
  padding: 10px;
  align-items: center;
  gap: 12px;
  flex: 1 0 0;
  align-self: stretch;
  border-radius: 14px;
  transition: var(--transition-time-all);
}

.item_sub_img_menu_category {
  display: block;
  width: 60px;
  height: 60px;
}

.item_sub_text_menu_category{
  color: #181818;
  font-family: var(--font-family-main);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.item_sub_category_menu_category_header:hover .item_sub_text_menu_category {
  color: #007632;
}


.link_item_menu_category_header.desktop {
  display: none;
}

.link_category_header_mobile {
  color: #181818;
  font-family: var(--font-family-main);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.25;
  /* 125% */
  display: flex;
  align-items: center;
  gap: 26px;
  transition: var(--transition-time-all);
}

.link_category_header_mobile:hover {
  color: #007632;
}

.text_item_link_category_header.mobile {
  transition: var(--transition-time-all);
}

.text_item_link_category_header.mobile {
  background-color: #F3F3F3;
  border-radius: 14px;
  height: 100%;
}

.text_item_link_category_header:hover .box_icon_name_item {
  color: #007632;
}

.item_link_category_header.mobile {
  background-color: #F3F3F3;
  border-radius: 14px;
}

.icon_service_header{
  fill: #000;
}

.item_link_service_header.desktop {
  display: none;
}

.item_link_service_header {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  transition: var(--transition-time-all);
  padding-bottom: 20px;
}

.text_item_link_category_header{
  height: 100%;
}

.text_item_link_category_header:hover {
  cursor: pointer;
}

.menu_mobile_category .list_link_category_header {
  margin-left: 0;
}


.box_icon_name_item {
  color: #181818;
  font-family: var(--font-family-main);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.25;
  transition: var(--transition-time-all);
}


.list_link_service_header_menu{
  display: flex;
  flex-direction: column;

}

.link_service_header_menu{
  display: flex;
  padding: 10px 14px;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  color: #535863;
  font-family: var(--font-family-main);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.25;
  transition: var(--transition-time-all);
  border-radius: 14px;
}

.link_service_header_menu:hover {
  background: #F3F3F3;
  color: #181818;
}

@media screen and (min-width: 1389px) {

  .item_link_service_header.desktop {
    display: flex;
  }

  .item_link_category_header.mobile {
    display: none;
  }

  .link_item_menu_category_header.mobile {
    display: none;
  }
  .link_item_menu_category_header.desktop {
    display: flex;
  }

  .btn_open_sub_category.mobile{
    display: none;
  }

  .list_sub_category_menu_category_header .box_top_menu_category_header {
    display: none;
  }

  .text_item_link_category_header.mobile, .btn_go_back_menu, .btn_close_menu{
    display: none;
  }

  .text_item_link_category_header.desktop {
    display: flex;
    padding: 8px 14px;
  }

  .icon_arrow_category{
    display: none;
  }

  .container_menu_category_header {
    position: absolute;
    top: 100%;
    left: -64px;
    background: #fff;
    margin: 0;
    width: 1320px;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: var(--transition-time-all);
    border-radius: 20px;
    padding: 0;
    height: 80vh;
    max-width: none;
    overflow: hidden;
  }


  .item_link_category_header::after {
    position: fixed;
    content: '';
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    background-color: rgba(0, 0, 0, 0.25);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: var(--transition-time-all);
  }

  .item_link_category_header.active::after {
    opacity: 1;
    visibility: visible;
    /* pointer-events: all; */
  }

  .item_link_category_header.active .container_menu_category_header {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    z-index: 1000;
  }


  .box_top_menu_category_header {
    display: flex;
    padding: 0px 14px;
    align-items: flex-start;
    gap: 6px;
    align-self: stretch;
  }

  .title_menu_category_header {
    color: #000;
    font-family: var(--font-family-main);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }


  .link_item_menu_category_header {
    display: flex;
    padding: 10px 14px;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    color: #535863;
    font-family: var(--font-family-main);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.25;
    border-radius: 14px;
    transition: var(--transition-time-all);
    text-wrap: balance;
  }


  .container_left_menu_category_header {
    display: flex;
    width: 460px;
    padding: 20px 0 20px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    position: relative;
  }

  .list_menu_category_header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
  }

  .list_sub_category_menu_category_header {
    position: absolute;
    left: 100%;
    top: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    width: 840px;
    height: 100%;
    padding: 20px 20px 20px 0px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: var(--transition-time-all);
    max-width: none;

  }

  .box_bottom_sub_category_menu{
    max-height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;

  }


  /* Webkit-браузери */
  .box_bottom_sub_category_menu::-webkit-scrollbar {
    width: 8px;
  }

  .box_bottom_sub_category_menu::-webkit-scrollbar-track {
    background: #fff;
    border-radius: 4px;
  }

  .box_bottom_sub_category_menu::-webkit-scrollbar-thumb {
    background-color: #bbb;
    border-radius: 4px;
    transition: background-color 0.3s;
  }

  .box_bottom_sub_category_menu::-webkit-scrollbar-thumb:hover {
    background-color: #888;
  }

  /* Firefox */
  .box_bottom_sub_category_menu {
    scrollbar-width: thin;
    scrollbar-color: #bbb #fff;
  }
  .btn_open_sub_category{
    width: 24px;
    height: 24px;
  }

  .item_menu_category_header {
    width: 100%;
    transition: var(--transition-time-all);
  }

  .link_item_menu_category_header:hover {
    background-color: #F3F3F3;
    color: #181818;
  }

  .item_menu_category_header.active .list_sub_category_menu_category_header {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }


  .link_item_menu_category_header:hover .icon_arrow_sub_children {
    fill: #181818;
  }


  .item_sub_category_menu_category_header {
    display: flex;
    width: 140px;
    padding: 10px;
    flex-direction: column;
    align-items: center;
    border-radius: 19px;
    background: #FFF;
    color: #181818;
    text-align: center;
    font-family: var(--font-family-main);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border: 2px solid #fff;
    transition: var(--transition-time-all);
    height: fit-content;

  }

  .item_sub_img_menu_category {
    height: 120px;
    width: 120px;
    align-self: stretch;
    aspect-ratio: 1/1;
    border-radius: 19px;
    object-fit: contain;
  }

  .item_sub_text_menu_category {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    height: 36px;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;

  }

  .item_sub_category_menu_category_header:hover {
    border-color: #007632;
    color: #007632;
    text-decoration: underline;
  }
  .container_header_mobile_menu .text_item_link_category_header{
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
  }


  .item_link_category_header {
    margin-bottom: 20px;

  }

  .text_item_link_category_header{
    border-radius: 12px;
    background: #F3F3F3;
    border: 2px solid #F3F3F3;
    padding-left: 0;
  }

  .item_link_service_header {
    position: relative;
  }

  .container_menu_service {
    position: absolute;
    width: 405px;
    top: 100%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background-color: #fff;
    z-index: 2000;
    transition: var(--transition-time-all);
    padding: 20px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .item_link_service_header::after {
    position: fixed;
    content: '';
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    background-color: rgba(0, 0, 0, 0.25);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: var(--transition-time-all);
  }


  .item_link_service_header:hover .box_icon_name_item {
    color: #007632;
  }
  .item_link_service_header:hover .icon_service_header {
    fill: #007632;
  }
  .item_link_service_header:hover .text_item_link_category_header{
    background-color: #FFF;
    z-index: 500;
    border: 2px solid #FFF;
  }
  .item_link_service_header:hover::after {
    opacity: 1;
    visibility: visible;
    pointer-events: none;
  }

  .item_link_service_header:hover .container_menu_service{
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }
  .item_category_technic_spare_parts{
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .item_category_technic_spare_parts .item_link_category_header{
    width: 405px;
    transition: var(--transition-time-all);
  }


  .item_link_service_header {
    width: 405px;
    transition: var(--transition-time-all)
  }

  .header_wrapper.scrolled .item_category_technic_spare_parts .item_link_category_header,
  .header_wrapper.scrolled .item_link_service_header.desktop
  {
    width: 200px;
  }

  .header_wrapper.scrolled .list_link_category_header,.header_wrapper.scrolled .item_category_technic_spare_parts {
    gap: 10px;
  }

  .item_link_category_header.active .text_item_link_category_header.desktop {
    z-index: 500;
    background-color: #FFF;
    border: 2px solid #FFF;
  }

  .item_link_category_header.active .box_icon_name_item{
    fill: #007632;
    color: #007632;
  }

}
@media screen and (min-width: 1600px) {
  .item_link_service_header {
    width: 498px;
  }
  .item_menu_category_header_new {
    /*width: 498px;*/
  }
  .header_wrapper.scrolled .item_category_technic_spare_parts .item_link_category_header,
  .header_wrapper.scrolled .item_link_service_header.desktop
  {
    width: 298px;
  }
}
.leaflet-top, .leaflet-bottom {
  z-index: 500 !important;
}
@media screen and (min-width: 1490px) and (max-width: 1599px) {
  .item_link_service_header {
    width: 465px;
  }
  .item_menu_category_header_new {
    /*width: 465px;*/
  }
  .header_wrapper.scrolled .item_category_technic_spare_parts .item_link_category_header,
  .header_wrapper.scrolled .item_link_service_header.desktop
  {
    width: 265px;
  }
}

body .scroll-to-top-btn {
  background-color:  #007632;
  color: #FFF;
  border: none;
  padding: 8px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  pointer-events: none;
  /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3); */
  transition: var(--transition-time-all);
}


body .scroll-to-top-btn.show {
  opacity: 1;
  visibility: visible;
  overflow: visible;
  pointer-events: all;
}


body .scroll-to-top-btn::after {
  content: '';
  background-image: url(/catalog/view/theme/default/image/icons/icon_top_home.svg);
  width: 28px;
  height: 28px;
  display: block;
  background-position: 0 0;
  background-size: 100% 100%;
  transition: var(--transition-time-all);
}

body .scroll-to-top-btn:hover {
  background-color: var(--Black-600, #181818);
  /* transform: translateY(-5px) rotate(45deg); */

}
body .scroll-to-top-btn:hover::after {
  background-position: 0 -28px;
}
/* body .scroll-to-top-btn:hover::after {
    transform: translateY(-35px) rotate(0deg);

} */
body .scroll-to-top-btn:hover svg{
  fill: var(--Black-600, #181818);
  transform: translateY(-35px) rotate(0deg);
}



.container_btn_scroll_agriline {
  position: fixed;
  bottom: 5%;
  right: 3%;
  z-index: 10000;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}

.container_agriline_footer {
  width: 70px;
  height: 70px;
}


@media screen and (min-width: 768px){
  .container_agriline_footer {
    width: 100px;
    height: 100px;
  }
}



.error_field_want_to_buy{
  color: #D42620;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  font-family: var(--font-family-main);
}



.text_field_want_to_buy{
  display: none;
  font-family: var(--font-family-main);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.25;
}

.text_field_want_to_buy.show {
  display: block;
}

.text_field_want_to_buy.error {
  color: #D42620;
}

.text_field_want_to_buy.success {
  color: #007632;
}

.box_count_arrow_filter{
  display: flex;
  align-items: center;
  gap: 5px;
}

.count_value_filter {
  display: flex;
  min-width: 22px;
  width: fit-content;
  height: 22px;
  padding: 3px 4px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 51px;
  background: #F3F3F3;
  color: #181818;
  text-align: center;
  font-family: var(--font-family-main);
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
}


.box_btn_close_filter_mobile_selecteds .btn_close_filter_mobile_selecteds {
  display: flex;
  width: 100%;
  padding: 12px 14px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 12px;
  border: 2px solid  #007632;
  background: #FFF;
  color: #007632;
  font-family: var(--font-family-main);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 125% */
  transition: var(--transition-time-all);
}

.box_btn_close_filter_mobile_selecteds .btn_close_filter_mobile_selecteds:hover,
.box_btn_close_filter_mobile_selecteds .btn_close_filter_mobile_selecteds:active,
.box_btn_close_filter_mobile_selecteds .btn_close_filter_mobile_selecteds:focus {
  background: #007632;
  color: #fff;
  text-decoration: none;
  border: 2px solid  #007632;
}

.box_btn_close_filter_mobile_selecteds {
  width: 100%;
  position: absolute;
  bottom: 0;
  display: flex;
  padding: 10px;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  align-self: stretch;
}

.header_button_common_one .pull-left,
.header_button_common_one #form-language,
.header_button_common_one #form-language .btn-group,
.header_button_common_one #form-language .btn-lang {
  width: 100%;
  height: 100%;
}

.header_button_common_one #form-language .btn-lang {
  padding: 10px;
}

.header_menu_mobile_language .btn-link {
  border: 2px solid #fff;
  transition: var(--transition-time-all);
}

.header_menu_mobile_language .dropdown-toggle:hover {
  border-color: rgba(0, 118, 50, 0.6);
}

.header_menu_mobile_language .btn-link:hover .language_text {
  color: #007632;
}

.header_menu_mobile_language .btn-link:hover svg path {
  fill: #007632;
}


.list_link_category_header:has(.item_link_category_header.active) .item_link_service_header.desktop {
  pointer-events: none;
}

.header_wrapper:has(.item_link_category_header.active) .phone-dropdown {
  pointer-events: none;
}

.name_parent_category{
  text-transform: lowercase;
}

.link_parent_category{
  justify-content: flex-start;
}

.link_parent_category {
  color: black;
  font-size: 18px;
}

.video-item.slick-slide a {
  display: block;
  height: 100%;
}

.menu-mobile { display: none; }
.menu-desktop { display: block; }

/* На мобільних екранax показуємо мобільне меню, ховаємо десктопне */
@media (max-width: 768px) {
  .menu-mobile { display: block; }
  .menu-desktop { display: none; }
}

.list_menu_category_header_new{
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  width: 100%;
  gap: 20px;
  margin: 0;
  padding-bottom: 20px;
}

.menu_desktop_header {
  width: 100%;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  margin-left: 20px;
}
.item_menu_category_header_new {
  display: flex;
  height: 44px;
  padding: 12px 14px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex: 1 0 0;
  border-radius: 12px;
  background: #F3F3F3;
  cursor: pointer;
  transition: var(--transition-time-all);

}

.item_menu_category_header_new.open {
  background: white;
  position: relative;
  z-index: 1000;
}

.list_menu_category_header_new:has(.item_menu_category_header_new.open)::after {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  content: '';
  z-index: 100;
  background-color: rgba(0,0,0,0.3);
  pointer-events: none;
}

.desktop_category_link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #181818;
  font-family: var(--font-family-main);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 125% */
  transition: var(--transition-time-all);
}

.item_menu_category_header_new:hover .desktop_category_link  {
  color: #007632;
}

.item_menu_category_header_new:hover svg path {
  transition: var(--transition-time-all);
}

.item_menu_category_header_new:hover svg path {
  fill: #007632;
}
.container_bottom_header{
  /*gap: 20px;*/
}

.text_item_link_category_header {
  display: flex;
  height: 44px;
  padding: 12px 14px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex: 1 0 0;
}

.box_icon_name_item{
  white-space: nowrap;
}

/*.menu_desktop_header{*/
/*  position: relative;*/
/*}*/

.header_wrapper.scrolled .list_menu_category_header_new,.header_wrapper.scrolled  .menu_desktop_header {
  gap: 10px;
}


.submenu_container {
  position: fixed;
  top: 191px;
  left: 50%;
  transform: translateX(-50%);
  width: 1320px;
  background-color: rgba(0, 0, 0, 0);
  z-index: 10000;
  height: 700px;
  transition: var(--transition-time-all);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  border-radius: 20px;
}

.header_wrapper.scrolled .submenu_container {
  top: 81px;
}

.submenu_container:has(.container_grandson_category_list.open) {
  background-color: #FFF;
}

.item_menu_category_header_new.open .submenu_container {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;

}

.container_title_child_category_desktop{
  display: flex;
  width: 440px;
  padding: 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  height: 100%;
  overflow: hidden;
  position: relative;
  background-color: #fff;
  border-radius: 20px;
}

.list_menu_category_child_desktop_header_new{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  height: 100%;
  overflow-y: auto;
}

.container_child_category_desktop {
  width: 100%;
  display: contents;
}

.item_menu_child_category_header_desktop_new {
  display: flex;
  padding: 10px 14px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  align-self: stretch;
  border-radius: 14px;
  background: #FFF;
  opacity: 0.8;
  transition: var(--transition-time-all);
}

.item_menu_child_category_header_desktop_new.has_children:hover,
.item_menu_child_category_header_desktop_new.has_children.active {
  background: #F3F3F3;
  opacity: 1;
}

.item_menu_child_category_header_desktop_new.has_children:hover .link_menu_child_category_header_desktop_new,
.item_menu_child_category_header_desktop_new.has_children.active .link_menu_child_category_header_desktop_new {
  color: #007632;
}


.link_menu_child_category_header_desktop_new{
  color: #535863;
  font-family: var(--font-family-main);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 125% */
  transition: var(--transition-time-all);
}


.icon_arrow_child_category_desktop{
  width: 24px;
  height: 24px;
  fill: #535863;
}

.list_menu_category_child_desktop_header_new::-webkit-scrollbar {
  width: 8px;
}

.list_menu_category_child_desktop_header_new::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 4px;
}

.list_menu_category_child_desktop_header_new::-webkit-scrollbar-thumb {
  background-color: #bbb;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.list_menu_category_child_desktop_header_new::-webkit-scrollbar-thumb:hover {
  background-color: #888;
}

/* Firefox */
.list_menu_category_child_desktop_header_new {
  scrollbar-width: thin;
  scrollbar-color: #bbb #fff;
}




.submenu-loader {
  margin-top: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.spinner {
  animation: rotate 2s linear infinite;
  width: 40px;
  height: 40px;
}
.spinner .path {
  stroke: #007632;
  stroke-linecap: round;
  animation: dash 1.5s ease-in-out infinite;
}
@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}


.menu_desktop_header:has(.item_menu_category_header_new.open) .item_link_service_header  {
  pointer-events: none;
}

.header_wrapper:has(.item_menu_category_header_new.open) .search_block,
.header_wrapper:has(.item_menu_category_header_new.open) .header_buttons_one,
.header_wrapper:has(.item_menu_category_header_new.open) .header_phone,
.header_wrapper:has(.item_menu_category_header_new.open) .btnBurgerMenu {
  pointer-events: none;
}

.container_grandson_category_list {
  position: fixed;
  left: 420px;
  top: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 0;
  transition: var(--transition-time-all);
  padding: 20px;
  width: 900px;
  height: 700px;
  /*pointer-events: none;*/
}

.container_grandson_category_list.open {
  z-index: 100000;
  opacity: 1;
  visibility: visible;
  /*pointer-events: all;*/
  overflow-y: auto;
}

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

.link_menu_grandson_category {
  display: flex;
  width: 140px;
  padding: 0 10px 12px 10px;
  flex-direction: column;
  align-items: center;
  border-radius: 19px;
  border: 2px solid #fff;
  transition: var(--transition-time-all);
  overflow: hidden;
  justify-content: space-between;
}


.link_menu_grandson_category:hover {
  border-color: #007632;
}

.name_menu_grandson_category {
  color: #181818;
  width: 100%;
  text-align: center;
  font-family: var(--font-family-main);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2; /* можна підкоригувати для кращого розміщення рядків */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; /* обмеження на 2 рядки */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal; /* важливо для багаторядкового тексту */
  transition: var(--transition-time-all);
}


.link_menu_grandson_category:hover .name_menu_grandson_category {
  color: #007632;
  text-decoration: underline;
}


@media screen and (max-width: 1389px) {
  .menu_desktop_header {
    display: none;
  }
  .menu_mobile_category .menu_mobile_header{
    display: flex;
  }
}


.menu_mobile_header{
  width: 100%;
  flex-direction: column;
  gap: 10px;
}

.item_menu_category_mobile, .container_menu_service_mobile{
  display: flex;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  justify-content: space-between;
  border-radius: 12px;
}

.container_menu_service_mobile .text_item_link_category_header {
  padding: 0;
  height: auto;
  display: flex;
  align-items: center;
  gap: 26px;
}

.btn_open_submenu_service_mobile{
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category_link_mobile {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  color: #181818;
  font-family: var(--font-family-main);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 125% */
}

.btn_open_submenu_mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}


.container_service_list_mobile{
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height:  100%;
  background: #fff;
  display: flex;
  padding: 14px;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  transition:  var(--transition-time-all);
}

.container_service_list_mobile.open {
  left: 0;
}

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

.box_title_icon_back_service_list_mobile, .box_icon_title_child_category_list {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1 0 0;
}


.iconBackServiceListMobile, .icon_back_child_category_list {
  fill: #88898B;
  min-width: 24px;
  max-width: 24px;
  min-height: 24px;
  max-height: 24px;
  transform: rotate(180deg);
}

.box_title_back_service_list_mobile, .title_child_category_list {
  color: #000;
  font-family: var(--font-family-main);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.iconCloseServiceListMobile, .icon_close_child_category_list {
  display: flex;
  padding: 6px;
  align-items: center;
  gap: 10px;
  width: 32px;
  height: 32px;
  box-sizing: content-box;
  border-radius: 12px;
  background: #FFF;
  transition: var(--transition-time-all);
  border: 2px solid #fff;
}

.iconCloseServiceListMobile:hover, .iconCloseServiceListMobile:active,
.icon_close_child_category_list:hover, .icon_close_child_category_list:active{
  border-color:  #007632;
  fill:  #007632;
}

.list_service_mobile{
  display: flex;
  width:  100%;
  flex-direction: column;
}

.item_service_mobile {
  color: #535863;
  font-family: var(--font-family-main);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 125% */
  transition: var(--transition-time-all);
  border-radius: 14px;
  background: #FFF;
  padding: 10px 14px;
}

.item_service_mobile:hover, .item_service_mobile:active {
  background: #f3f3f3;
  color: #007632;
  text-decoration: underline;
}

.submenu_container_mobile, .container_sub_child_category_list {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  gap: 20px;
  flex-direction: column;
  padding: 14px;
  z-index: 1000;
  transition: var(--transition-time-all);

}

.submenu_container_mobile.open, .container_sub_child_category_list.open {
  left: 0;
}

.box_top_child_category_list{
  display: flex;
  width: 100%;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}

.container_child_category_list {
  height: 100%;
}

.list_child_category_list{
  width:  100%;
  height: 90%;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.item_child_category_list{
  display: flex;
  align-items: center;
  width:  100%;
  justify-content: space-between;
  gap: 10px;
  align-self: stretch;
  opacity: 0.8;
}

.link_child_category_list {
  color: #535863;
  font-family: var(--font-family-main);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 125% */
}

.icon_sub_child_category_list{
  fill: #535863;
  width: 24px;
  height: 24px;
}


.container_sub_child_category_list {
  z-index: 111111;
}

.item_child_category_list:has(.container_sub_child_category_list.open) {
  opacity: 1;
}


.container_header_mobile_menu:has(.submenu_container_mobile.open) {
  overflow-y: hidden;
}


.container_bottom_header .menu_mobile_header {
  display: none;
}


.icon_close_mobile_menu{
  width: 18px;
  fill: rgb(24, 24, 24);
  min-height: 28px;
  max-height: 28px;
  min-width: 28px;
  max-width: 28px;
}

.button_close_mobile_menu:hover .icon_close_mobile_menu,
.button_close_mobile_menu:active .icon_close_mobile_menu {
  fill: rgb(0, 118, 50);

}

.item_menu_child_category_header_desktop_new:has(.link_menu_child_category_header_desktop_new.empty_children) {
  padding: 0;
}
.item_menu_child_category_header_desktop_new:has(.link_menu_child_category_header_desktop_new.empty_children) .link_menu_child_category_header_desktop_new  {
  padding: 10px 14px;
  align-items: center;
  width: 100%;
  transition: var(--transition-time-all);
}

.item_menu_child_category_header_desktop_new:has(.link_menu_child_category_header_desktop_new.empty_children) .link_menu_child_category_header_desktop_new:hover {
  background: #f3f3f3;
  color: #007632;
  border-radius: 14px;
  opacity: 1;
}

.link_menu_grandson_category {
  height: 165px;
}

.item_menu_grandson_category.show_all .link_menu_grandson_category {
  padding: 12px 10px 12px 10px;
}

.category_link_mobile, .container_text_icon_menu_service_mobile {
  display: flex;
  width: 100%;
  align-items: center;
  height: 44px;
  padding: 12px 14px;
  background-color: #f3f3f3;
  border-radius: 12px;

}

.box_item_text_icon_item_category_mobile {
  display: flex;
  gap: 20px;
}


.box_title_icon_arrow_link_child_category_list {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  justify-content: space-between;
  border-radius: 14px;
  background: #FFF;
  padding: 10px 14px;
}

.link_child_category_list.empty_child {
  border-radius: 14px;
  background: #FFF;
  padding: 10px 14px;
  width: 100%;
}

.item_child_category_list.show_all {
  opacity: 1;

}

.item_child_category_list.show_all .link_child_category_list {
  color: #181818;
}


@media screen and (min-width: ) {
  
}