.menu{
/*    padding: 0 100px;*/
    position: relative;
    background-color: #FFF;
}

.gray-menu{
    background-color: #F8F8F8;
}

.menu-list{
    position: relative;
    padding:30px 0px;
    padding-bottom: 0px;
}

ul li {
    list-style: none;
}

.top-menu{
    display: flex;
    width: 100%;
    flex-wrap: nowrap;
    justify-content: space-around;
    gap: 30px;
    background-color: #F8F8F8;
    padding: 10px 0px;
}

.header-number-button{
    background-color: #0B52A0;
    cursor: pointer;
    color: #fff;
    transition: background-color 0.3s;
    display: inline-block;
    padding: 5px 35px 5px 55px;
    font-weight: bold;
    font-size: 20px;
    border-radius: 5px;
    position: relative;
}

.header-number-button:after{
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    top: 11px;
    left: 20px;
    background-image: url(../img/icon_top_phone.svg);
    background-position: center;
    background-size: 80%;
    background-repeat: no-repeat;
}

    .header-number-button:hover{
        background-color: #FF9B26;
    }

.header{
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 20px;
}

    .header-social-block{
        display: flex;
        align-items: center;
        justify-content: end;
        margin-bottom: 15px;
    }
    
        .header-phone-block{
            display: inline-block;
            color: rgb(40, 40, 40);
            font-size: 22px;
            font-weight: 600;
            margin-right: 20px;
        }
    
        .header-social-button{
            display: inline-block;
            height: 40px;
            width: 40px;
            cursor: pointer;
            background-color: #0B52A0;
            transition: background-color 0.3s;
            background-position: center;
            background-repeat: no-repeat;
            background-size: 50%;
            border-radius: 5px;
            margin-right: 10px;
            vertical-align: middle;
            
            filter: grayscale(100%);
        }
        
        .header-social-button:hover{
            background-color: #FF9B26;
        }
        
        .WhatsUp-button{
            background-image: url(../img/WhatsUp_icon.svg);
        }
        
        .header-social-button.instagram{
            background-image: url(../img/instagram_top_icon.png);
            background-position: center;
            background-size: 100%;
        }
        
        .header-social-button.whatsup{
            background-image: url(../img/whatsup_top_icon.png);
            background-position: center;
            background-size: 100%;
        }
        
        .header-social-block a{
            display: inline-block;
        }
    
.header-search-box{
    display: flex;
    align-items: center;
    position: relative;
}

    .hsb-cat-title{
        text-align: center;
        font-size: 19px;
        font-weight: bold;
        background-color: #E5E5E7;
        border: 1px solid #D1D2D4;
        padding: 10px 25px 10px 30px;
        box-sizing: border-box;
        cursor: pointer;
        height: 50px;
        -moz-user-select: none;
        -webkit-user-select: none;
    }
    
    .hsb-cat-title:after{
        content: "\f0d7";
        font-family: Font Awesome;
        font-size: 13px;
        margin-left: 15px;
        font-weight: 600;
    }
    
    
    .hsb-input{
        font-size: 19px;
        padding: 10px 30px;
        box-sizing: border-box;
        border: 1px solid #D1D2D4;
        border-radius: 5px;
        height: 50px;
        width: 500px;
    }
    
    .hsb-button{
        position: absolute;
        width: 35px;
        height: 35px;
        cursor: pointer;
        background-image: url(../img/icon_search.svg);
        background-position: center;
        background-size: 60%;
        background-repeat: no-repeat;
        transition: background-color 0.3s;
        right: 10px;
        border-radius: 50%;
    }
    
    .hsb-button:hover{
        background-color: rgba(0,0,0,0.1);
    }

.lang-menu{
    float: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    font-size: 18px;
    line-height: 40px;
    color: #999999;
}

.lang-panel{
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    transition: none;
}

.lang-panel a{
    color: #999999;
    display: inline-block;
    padding: 0 5px;
    font-size: 22px;
    text-transform: uppercase;
}

.lang-panel a:hover{
    transition: all .3s ease-in-out;
    color: #000;
}

.lang-panel a.action-lang{
    color: #000;
}

.items-menu{
    display: inline-block;
    word-break: keep-all;
    white-space: nowrap;
    display: block;
    position: relative;
}

    .items-menu:hover > .sub-menu-panel{
        display: block;
    }

    .sub-menu-panel{
        position: absolute;
        min-width: 100%;
        background-color: #fff;
        left:0px;
        top: 61px;
        z-index: 999;
        display: none;
        padding-bottom: 20px;
        box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.2)
    }
    
    .sub-menu-panel .sub-menu-panel{
        top: 0px;
        left: 100%;
    }

.text-link-menu a{
    font-size: 20px;
    font-weight: 600;
    line-height: 60px;
    margin: 0 20px;
    display: block;
    position: relative;
    color: #999;
    color: rgb(40,40,40);
    color: #67696B;
    text-transform: uppercase;
}

.text-link-menu a:after{
    content: "";
    display: block;
    border-bottom: 2px solid #000000;
    position: absolute;
    bottom: -1px;
    width: 0%;
    left: 50%;
    margin-left: 0%;
    transition: all .3s ease-in-out;
}

.text-link-menu a:hover{
    color: #333333;
    transition: all .3s ease-in-out;
}

.text-link-menu a:hover::after{
    width: 100%;
    left: 50%;
    margin-left: -50%;
}

.text-link-menu a.action{
    color: #333333;
    transition: all .3s ease-in-out;
}

.text-link-menu a.action:after{
    width: 100%;
    left: 50%;
    margin-left: -50%;
}

.logo-menu{
    background-image: url(../img/logo_kam.svg);
    width: 150px;
    height: 50px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 74%;
    margin-right: 20px;
}

.logo-text{
    width: 100px;
    color: #969696;
    font-size: 20px;
    line-height: 25px;
}

.logo a{
    display: flex;
    align-items: center;
    height: inherit;
}

.pro-menu-list{
    display: none;
}

.link-list-items-menu{
    display: none;
}

.scroll-menu-panel{
    vertical-align: bottom;
    position: absolute;
    z-index: 3;
    background: #fff;
    width: 100%;
    padding: 29px 80px;
    top: 101px;
    left: -80px;
    display: flex;
    gap: 0;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    visibility: hidden;
    opacity: 0;
    max-height: 0;
    box-shadow: 0 30px 50px 0px rgba(0, 0, 0, .1);
    transition: all .3s ease-in-out;
    z-index: 999;
}

.menu-show{
    gap: 00px;
    visibility: visible;
    opacity: 1;
    max-height: calc(500px + 60px);
}

.scroll-menu-panel li{
    display: inline-block;
}

.scroll-menu-panel li a {
    color: #333;
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
    height: 40px;
    margin: 0 20px;
    display: flex;
    align-items: center;
    position: relative;
    white-space: nowrap;
    transition: all .3s ease-in-out;
}

.scroll-menu-panel li a:hover {
    color: #333333;
}

.scroll-menu-panel li a::after {
    content: "";
    display: block;
    border-bottom: 2px solid #000000;
    position: absolute;
    bottom: 5px;
    width: 0%;
    left: 50%;
    margin-left: 0%;
    transition: all .3s ease-in-out;
}

.scroll-menu-panel li.active a::after, .scroll-menu-panel li a:hover::after {
    width: 100%;
    left: 50%;
    margin-left: -50%;
}

.scroll-menu-panel li .child {
    padding: 10px 0;
}

.scroll-menu-panel li .child a {
    height: auto;
    min-height: 30px;
    font-size: 16px;
    color: #bbb;
    width: auto;
    display: flex;
    white-space: break-spaces;
    margin-bottom: 10px;
}

.scroll-menu-panel li .child a:after{
    content: none;
}

.menu-list li .child a:hover {
    color: #000;
}

.mobile-menu{
    display: inline-block;
    width: 48px;
    height: 48px;
    background-image: url(../img/icon_menu.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 75%;
    display: none;
}

.mobile-menu-list{
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    box-sizing: border-box;
    display: none;
}

.mobile-menu-list .text-link-menu a{
    margin: 0 10px;
    line-height: 45px;
    display: inline-block;
}

.mobile-menu-list .sub-menu-panel{
    position: static;
    display: none;
    box-shadow: none;
    background-color: inherit;
    padding-left: 30px;
    box-sizing: border-box;
    margin-top: 5px;
    padding-bottom: 10px;
}

    .m-sun-open{
        width: 35px;
        height: 35px;
        display: inline-block;
        vertical-align: middle;
        position: relative;
        top: -3px;
        left: -7px;
        background-image: url(../img/icon_down.svg);
        background-position: center;
        background-repeat: no-repeat;
        display: none;
    }

.mobile-menu-list .items-menu:hover > .sub-menu-panel{
    display: none;
}

.hsb-list-category{
    background-color: #fff;
    position: absolute;
    z-index: 100;
    font-size: 20px;
    top: 50px;
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.2);
    display: none;
}


    .hsb-list-category-items{
        padding: 12px 25px;
        background-color: #fff;
        transition: 0.3s;
        cursor: pointer;
        font-weight: 600;
    }
    
    .hsb-list-category-items:hover{
        background-color: #E5E5E7;
    }
    
.window-search-result{
    width: 100%;
    bottom: 0px;
    min-height: 40vh;
    z-index: 998;
    background-color: #F8F8F8;
    display: none;
}

.header-search-result{
    color: #21262C;
    font-size: 37px;
    font-weight: bold;
    padding: 0px 60px;
    padding-bottom: 20px;
    margin: auto -60px;
    margin-bottom: 20px;
    border-bottom: 2px solid #EAEAEA;
}

.search-result-list{
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 100px;
}

.search-no-result{
    font-size: 20px;
}

    .items-catalog-search{
        flex-basis: 25%;
        font-size: 16px;
        height: 430px;
        padding: 8px;
        box-sizing: border-box;
    }
    
        .items-catalog-search-content{
            background-color: #fff;
            height: 100%;
            transition: box-shadow 0.3s;
        }
        
            .items-catalog-search-image{
                height: 60%;
                background-position: center;
                background-repeat: no-repeat;
                background-size: cover;
                transition: height 0.3s;
            }
            
            .items-catalog-search-desk{
                display: flex;
                justify-content: space-between;
                flex-flow: column;
                padding: 10px 25px;
                box-sizing: border-box;
            }
            
                .icsd-name{
                    padding-bottom: 10px;
                    border-bottom: 1px solid #E6E6E6;
                    margin-bottom: 15px;
                }
                
                    .icsd-name-type{
                        color: #9F9F9F;
                        font-size: 17px;
                    }
                    
                    .icsd-name-title{
                        color: #201D1D;
                        font-weight: bold;
                        font-size: 21px;
                    }
                
                .icsd-parameters{
                    display: flex;
                    align-items: center;
                    font-size: 22px;
                    filter: grayscale(100%);
                    opacity: 0.5;
                    justify-content: space-between;
                }
                
                    .icsd-parameters div {
                        margin-left: 10px;
                        border-right: 1px solid #E6E6E6;
                        padding-right: 10px;
                    }
                    
                    .icsd-parameters div:first-child {
                        margin-left: 0px;
                    }
                    
                    .icsd-parameters div:last-child {
                        border-right: none;
                        padding-right: 0px;
                    }
                    
                    .icsd-parameters div:before {
                        content: "";
                        display: inline-block;
                        width: 24px;
                        height: 24px;
                        vertical-align: middle;
                        margin-right: 15px;
                        background-position: center;
                        background-repeat: no-repeat;
                        background-size: contain;
                    }
                
                        .icsd-parameters-weight:before {
                            background-image: url(../img/catalog/icon_weight.svg);
                        }
                    
                        .icsd-parameters-chassis:before {
                            background-image: url(../img/catalog/icon_chassis.svg);
                        }

                        .icsd-parameters-power:before {
                            background-image: url(../img/catalog/icon_power.svg);
                        }
                    
                    .items-catalog-search-desk .button {
                        display: none;
                        text-align: center;
                        padding: 9px 42px;
                    }
        
    .items-catalog-search-content:hover {
        box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.2);
    }
    
    .items-catalog-search-content:hover .items-catalog-search-image {
        height: 50%;
        background-size: contain;
    }
    
    .items-catalog-search-content:hover .icsd-name {
        padding-bottom: 10px;
        margin-bottom: 15px;
    }
    
    .items-catalog-search-content:hover .icsd-parameters {
        margin-bottom: 20px;
        filter: none;
        opacity: 1;
    }
    
    .items-catalog-search-content:hover .items-catalog-search-desk .button {
        display: block;
    }
    
    .items-catalog-search-content:hover .icsd-name-type {
        display: none;
    }
    
    .items-catalog-search-content:hover .icsd-name-title {
        color: #9F9F9F;
    }


@media only screen and (min-width: 1921px){
/*    .menu {
        padding: 0 200px;
    }*/

    .menu-content{
        padding: 0 200px;
    }
}

@media only screen and (max-width: 1920px){
    
    .menu-content {
        padding: 0 150px;
    }
    
    .top-menu{
        gap: 10px;
    }
    
    .text-link-menu a{
        font-size: 19px;
    }
    
    .hsb-cat-title{
        font-size: 17px;
        height: auto;
    }
    
    .hsb-input{
        height: 48px;
    }
    
    .hsb-button{
        width: 48px;
        height: 48px;
        background-size: 40%;
    }
    
    .header-phone-block{
        font-size: 20px;
    }
    
    .header-social-button{
        width: 48px;
        height: 48px;
    }
    
    .items-catalog-search{
        height: 400px;
    }
    
}

@media only screen and (max-width: 1550px){
    
    .menu-content {
        padding: 0 100px;
    }
    
    .text-link-menu a{
        margin: 0 15px;
    }
    
}

@media only screen and (max-width: 1300px){
    
    .header-search-result {
        font-size: 34px;
        padding: 0px 20px;
        padding-bottom: 20px;
        margin: auto -20px;
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 1200px){
    
    .text-link-menu a {
        font-size: 17px;
    }
    
}

@media only screen and (max-width: 1920px){
 
    .menu-content {
        padding: 0 50px;
    }
    
    .hsb-input{
        width: 300px;
    }
    
}

@media only screen and (max-width: 768px){
    
    .menu-content {
        padding: 0 10px;
    }
    
    .header{
        flex-wrap: wrap;
        padding: 10px 10px;
    }
    
    .menu-list{
        padding: 15px 0px;
    }
    
    .logo-text{
        width: 170px;
        font-size: 16px;
    }
    
    .header-search-box{
        display: none;
    }
    
    .header-phone-block{
        display: none;
    }
    
    .top-menu{
        display: none;
    }
    
    .logo-menu{
        width: 85px;
        height: 50px;
        background-position: center left;
        margin-right: 0px;
        background-size: 95%;
    }
    
    .header .button{
        display: none;
    }
    
    .m-sun-open{
        display: inline-block;
    }
    
    .mobile-menu{
        display: inline-block;
    }
    
    .header-social-block{
        margin-bottom: 0px;
    }
    
    .header-social-button{
        width: 30px;
        height: 30px;
    }
    
    .header-number-button {
        padding: 5px 10px 5px 30px;
        font-size: 17px;
    }
    
    .header-number-button:after{
        top: 8px;
        left: 8px;
        background-size: 70%;
    }
}