/* главное меню */


.header_nav_container{
    background-color: var(--orange);
    padding: 5px 0;
}
.hamburger {
    width: 20px;
    height: 16px;
    margin-right: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

}
.hamburger span{
    height: 1px;
    width: 100%;
    background-color: #fff;
}

.menu-list {
    list-style: none;
    margin: 0;
    padding: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 16px;
    color: #fff;
}


.menu-link {
    padding: 8px 4px;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.2s ease;
    display: flex;
    align-items: center;
}

.menu-link:hover {
    background-color: var(--gray);
    color: white;
}

.dropdown_catalog{
    height: 0vh;
    /*height: var(--top-menu-height);*/
    overflow: hidden;
    background-color: #fff;
    transition: height 0.5s;
}
.dropdown_catalog a{
    text-decoration: none;
}
.nav_catalog_open{
    height: var(--top-menu-height);
    transition: height 0.1s;
    box-shadow: 0px 6px 18px var(--gray-light);
    /*border: 1px solid;*/
    z-index: 1000;
}
.dropdown_catalog{
    display: flex;
}
.dropdown_catalog_left{
    /*width: 260px;*/
    width: var(--left-side-width);
    background-color: var(--gray-light);
    box-shadow: 0px 6px 18px var(--gray-light);
    padding: 20px 20px 20px 4px;
    position: relative;

}
.header_search{
    display: flex;
    background-color: #fff;
    border-radius: 2px;
    height: fit-content;
    padding: 2px;
    margin-left: 12%;
}
.header_search input{
    border: none;
    border: 0;
    padding: 1px 3px;
}
.header_search input:focus {
    outline: none;
}


.dropdown_catalog_body{
    max-width: 80%;
    /*width: 100%;*/
    width: 600px;
    padding: 30px 60px;
    border: 1px solid var(--gray-light);

}
.body_menu_wrapper{
    display: none;
    height: 60%;

}
.body_menu_wrapper_open{

    display: block;

}


.dropdown_catalog_wrapper{
    position: absolute;
    width: 100%;
}


.dropdown_catalog_left .root_menu_item{
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.375;
    display: flex;
    justify-content: space-between;
    transition: color 0.3s;

}

.hovered_svg:hover svg path
{
    stroke: var(--orange);
}
.dropdown_catalog_left .root_menu_item a{
    max-width: 80%;
}

.second_block_wrapper{
    display: flex;
    flex-direction: column;
    align-content: space-between;
    flex-wrap: wrap;
    align-items: baseline;
    height: 100%;
}
.second_menu_item{
    width: 250px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
}

.body_menu_header{
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    margin-bottom: 40px;
}

.second_menu_item a{
    max-width: 80%;
}
.body_menu_header h3{
    max-width: 50%;
}
.body_menu_show_all{
    display: flex;
    justify-content: space-between;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: var(--gray-link);
}
