@media (min-width: 1200px) {
    .header-desktop{
        display: block;
    }
    .header-mobile{
        display: none;
    }
    .header{
        position: fixed;
        left:0;
        top:0;
        right:0;
        z-index: 9;
        transition: .3s;
        background: var(--white);
    }
    .header-a{
        padding:5px 0;
    }
    .header-a-container{
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .header-a-left{
        display: flex;
        align-items: center;
    }
    .header-a-right{
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
    .header.fixed{
        top:-47px;
    }
    /**/
    .menu-top{

    }
    .menu-top-level-1{
        display: flex;
        align-items: center;
    }
    .menu-top-level-1-item{
        margin:0 20px 0 0;
    }
    .menu-top-level-1-link{
        font-size: 14px;
        font-weight: 600;
        color: var(--bluegray-600);
        transition: .3s;
    }
    .menu-top-level-1-item.active .menu-top-level-1-link,
    .menu-top-level-1-item:hover .menu-top-level-1-link{
        color: var(--brand-second);
    }


    /**/
    .header-language{
        margin:0 0 0 10px;
    }
    .header-language a{
        display: flex;
        align-items: center;
        height: 36px;
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
        color:var(--bluegray-600);
        transition: .3s;
    }
    .header-language a:hover{

    }


    .header-b{

        position: relative;
        background: var(--brand-main);
    }
    .header-b-container{
        display: flex;
        align-items: center;


    }

    /**/
    .header-logo img{
        height: 50px;
        width: 193px;
    }


    /**/
    .header-catalog-line{
        width: calc(100% - 470px);
        padding:0 50px;
    }
    /*1*/
    .header-catalog-line .header-catalog-level-1{
        display: flex;
        align-items: center;
    }
    .header-catalog-line.show{
        z-index: 99;
    }
    .header-catalog-line .header-catalog-level-1-item{
        display: flex;
        align-items: center;
        padding:0 20px 0 0;
    }
    .header-catalog-line .header-catalog-level-1-item:after{
        content: '\e907';
        font-family: si-solid;
        font-size: 10px;
        color: var(--white);
        transition: .3s;
        margin:0 0 0 7px;
    }
    .header-catalog-line .header-catalog-level-1-item:hover:after{
        color: var(--brand-second);
    }
    .header-catalog-line .header-catalog-level-1-link{
        display: flex;
        align-items: center;
        height: 80px;
    }
    .header-catalog-line .header-catalog-level-1-link img{
        display: none;
    }
    .header-catalog-line .header-catalog-level-1-link span{
        font-size: 16px;
        font-weight: 500;
        color: var(--white);
        transition: .3s;
    }
    .header-catalog-line .header-catalog-level-1-item:hover .header-catalog-level-1-link span{
        color: var(--brand-second-hover);
    }
    /*2*/
    .header-catalog-line .header-catalog-level-2{
        position: absolute;
        top:100%;
        left:0;
        right:0;
        z-index: 9;
        background: var(--white);
        visibility: hidden;
        opacity: 0;
        transition: .3s;
    }
    .header-catalog-line .header-catalog-level-1-item.show .header-catalog-level-2{
        visibility: visible;
        opacity: 1;
    }
    .header-catalog-level-2-container{
        display: flex;
        flex-wrap: wrap;
    }
    .header-catalog-line .header-catalog-level-2-item{
        width: 25%;
    }
    .header-catalog-line .header-catalog-level-2-link{
        display: flex;
        font-size: 16px;
        font-weight: 600;
        padding:10px 0;
    }
    .header-catalog-line .header-catalog-level-2-item:hover .header-catalog-level-2-link{
        color: var(--brand-second-hover);
    }
    /**/
    .header-catalog-line .header-catalog-level-3{

    }
    .header-catalog-line .header-catalog-level-3-item{
        margin:0 0 8px 0;
    }
    .header-catalog-line .header-catalog-level-3-link{
        display: flex;
        align-items: center;
        font-size: 15px;
        font-weight: 500;
        color: var(--bluegray-400);
        transition: .3s;
    }
    .header-catalog-line .header-catalog-level-3-item:hover .header-catalog-level-3-link{
        color: var(--black);
    }
    .header-catalog-line .header-catalog-level-3-link:before{
        content: '';
        width: 6px;
        height: 6px;
        border-radius: 3px;
        background: var(--bluegray-50);
        margin:0 10px 0 0;
    }
    .header-catalog-line .header-catalog-level-3-link:hover:before{
        background: var(--brand-second);
    }

    .header-catalog-line .header-catalog-level-3-item:last-child a{
        color: var(--brand-second);
    }





    .header-catalog-overlay{
        position: fixed;
        top:0;
        right:0;
        bottom: 0;
        left:0;
        background: rgba(0,0,0,0.5);
        z-index: 2;
        visibility: hidden;
        opacity: 0;
        transition: .3s;
    }
    .header-catalog-overlay.show{
        visibility: visible;
        opacity: 1;
    }


    /**/
    .header-support{
        width: 300px;
    }
    .header-support-head{

    }
    .header-support-head a{
        display: flex;
        align-items: center;
        height: 60px;
        font-size: 18px;
        font-weight: 500;
        text-transform: uppercase;
        color:var(--white);
        transition: .3s;
    }
    .header-support-head a:hover{

    }
    .header-support-head a:before{
        content: '\e91c';
        font-family: si-solid;
        font-size: 30px;
        color:var(--white);
        margin:0 10px 0 0;
    }

    /**/
    .header-widgets{
        display: flex;
        align-items: center;
        width: 215px;
    }

    /**/
    .widget-search-show{
        align-items: center;
        display: flex;
        justify-content: space-between;
        width:30px;
        transition: .3s;
        cursor: pointer;
    }
    .widget-search-show:after{
        content: '\e921';
        font-family: si-solid;
        font-size: 30px;
        color: var(--white);
        transition: .3s;

    }
    .widget-search-show:hover:after{
        transform: scale(0.9,0.9);
    }
    /**/
    .widget-search-container{
        position: fixed;
        top:45px;
        left:50%;
        width: 960px;
        transform: translateX(-50%);
        z-index: 999;
        visibility: hidden;
        opacity: 0;
    }
    .widget-search-container.show{
        visibility: visible;
        opacity: 1;
    }
    .widget-search-container .form-group{
        display: flex;
        align-items: center;
        background: var(--white);
        border-radius: 5px;
        padding:0 20px;
    }
    .widget-search-container .form-group:before{
        content: '\e921';
        font-family: si-solid;
        font-size: 24px;
        color: var(--bluegray-200);
        margin:0 20px 0 0;
    }
    .widget-search-input{
        display: block;
        width:100%;
        height:80px;
        transition: .3s;
        color: var(--black);
        border: none;
        font-size: 20px;
    }
    .widget-search-input::-webkit-input-placeholder {color: var(--bluegray-200)}
    .widget-search-input::-moz-placeholder {color: var(--bluegray-200)}
    .widget-search-input:-ms-input-placeholder {color: var(--bluegray-200)}
    .widget-search-input:-moz-placeholder {color: var(--bluegray-200)}


    .widget-search-submit{
        display: none;
    }
    .widget-search-close{
        position: absolute;
        top:0;
        right:0;
        display: flex;
        align-items: center;
        justify-content: center;
        width:80px;
        height: 80px;
        visibility: hidden;
        font-size: 24px;
        color: var(--bluegray-500);
        cursor: pointer;
    }
    .widget-search-close:after{
        content: '\e90b';
        font-family: si-solid;
        font-size: 24px;
    }
    .widget-search-close.show{
        visibility: visible;
    }
    .widget-search-close:hover{
        color: var(--red-600);
    }
    .widget-search-overlay{
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0,0,0,0.6);
        z-index: 7;
        visibility: hidden;
        opacity: 0;
    }
    .widget-search-overlay.show{
        visibility: visible;
        opacity: 1;
    }



    .widget-search-drop{
        position: absolute;
        top:74px;
        right:0;
        width:100%;
        background: var(--white);
        box-shadow: 0 0 0 rgba(0,0,0);
        border-radius: 5px;
        z-index: 9;
    }
    .widget-search-drop-container{

    }
    .widget-search-product-list{
        display: flex;
        flex-wrap: wrap;
        padding:20px;
        overflow: hidden;
        overflow-y: auto;
        max-height: 500px;
        margin:0 0 0 -10px;
    }
    .widget-search-product{
        width: calc(20% - 10px);
        align-items: center;
        margin:0 0 10px 10px;
        border: 1px solid var(--bluegray-50);
        border-radius: 5px;
    }
    .widget-search-product:hover{
        border: 1px solid var(--bluegray-100);
    }
    .widget-search-product-image{

    }
    .widget-search-product-image img{

    }
    .widget-search-product-content{
        padding:15px 10px;
        text-align: center;
    }
    .widget-search-product-name{
    }
    .widget-search-product-name a{
        font-size: 14px;
        font-weight: 500;
    }
    .widget-search-product-name a:hover{
        color: var(--red-700);
    }
    .widget-search-product-price{
        font-weight: 500;
        color: var(--red-700);
    }
    .widget-search-product-not-available{
        color: var(--red-500);
        font-size: 13px;
    }
    .widget-search-no-product{
        font-size: 12px;
        color: var(--gray-500);
    }
    /**/
    .widget-search-drop-footer{
        display: none;
    }


    /**/
    .widget-account{
        width: 150px;
        display: flex;
        align-items: center;
        cursor: pointer;
    }
    .widget-account-icon{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        margin:0  0 0 20px;
    }
    .widget-account-icon:after{
        content: '\e928';
        font-family: si-solid;
        font-size: 30px;
        color: var(--white);
        transition: .1s;
    }
    .widget-account:hover .widget-account-icon:after{
        transform: scale(0.9,0.9);
    }
    .widget-account-text{
        display: none;
    }
    /**/
    .widget-cart{
        width: 50px;
        position: relative;
        cursor: pointer;
        margin:0 0 0 20px;
    }
    .widget-cart-icon{
        display: flex;
        align-items: center;
        justify-content: center;
        padding:0 15px 0 0;
    }
    .widget-cart-icon:after{
        content: '\e905';
        font-family: si-solid;
        font-size: 30px;
        color: var(--white);
        transition: .1s;
    }
    .widget-cart-count{
        position: absolute;
        top:50%;
        right:0;
        display: block;
        transform: translateY(-50%);
        line-height: 20px;
        text-align: center;
        width: 20px;
        height: 20px;
        border-radius: 10px;
        font-size: 12px;
        font-weight: 500;
        color: var(--white);
        background: var(--brand-second);
    }
    .widget-cart:hover .widget-cart-icon:after{
        transform: scale(0.9,0.9);
    }

    /**/
    .widget-wishlist{
        width: 50px;
        position: relative;
        cursor: pointer;
        margin:0 0 0 20px;
    }
    .widget-wishlist-icon{
        display: flex;
        align-items: center;
        justify-content: center;
        padding:0 15px 0 0;
    }
    .widget-wishlist-icon:after{
        content: '\e918';
        font-family: si-solid;
        font-size: 30px;
        color: var(--white);
        transition: .1s;
    }
    .widget-wishlist-count{
        position: absolute;
        top:50%;
        right:0;
        display: block;
        transform: translateY(-50%);
        line-height: 20px;
        text-align: center;
        width: 20px;
        height: 20px;
        border-radius: 10px;
        font-size: 12px;
        font-weight: 500;
        color: var(--white);
        background: var(--brand-second);
    }
    .widget-wishlist:hover .widget-wishlist-icon:after{
        transform: scale(0.9,0.9);
    }
}




@media (max-width: 1200px) {
    .header-desktop{
        display: none;
    }
    .header-mobile{
        display: block;
    }
    .header{
        position: fixed;
        top:0;
        left:0;
        right:0;
        z-index: 9;
    }
    .header-container{
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: var(--brand-main);
        padding:10px;
    }
    .header-container-a{
        display: flex;
        align-items: center;
    }
    .header-logo img{
        width: 157px;
        height: 40px;
    }
    .header-logo p{
        display: none;
    }
    .header-menu-open{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: var(--red-600);
        border-radius: 5px;
        margin:0 10px 0 0;
    }
    .header-menu-open:after{
        content: '\e902';
        font-family: si-solid;
        color: #fff;
        font-size: 20px;
    }

    .header-container-b{
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

    /**/
    .widget-cart{
        width: 40px;
        position: relative;
        cursor: pointer;
        margin:0 0 0 20px;
    }
    .widget-cart-icon{
        display: flex;
        align-items: center;
        justify-content: center;
        padding:0 15px 0 0;
    }
    .widget-cart-icon:after{
        content: '\e905';
        font-family: si-solid;
        font-size: 24px;
        color: var(--white);
        transition: .1s;
    }
    .widget-cart-count{
        position: absolute;
        top:50%;
        right:0;
        display: block;
        transform: translateY(-50%);
        line-height: 20px;
        text-align: center;
        width: 20px;
        height: 20px;
        border-radius: 10px;
        font-size: 12px;
        font-weight: 500;
        color: var(--white);
        background: var(--brand-second);
    }
    .widget-cart:hover .widget-cart-icon:after{
        transform: scale(0.9,0.9);
    }


    /**/
    /**/
    .widget-search-show{
        align-items: center;
        display: flex;
        justify-content: space-between;
        width:30px;
        transition: .3s;
        cursor: pointer;
    }
    .widget-search-show:after{
        content: '\e921';
        font-family: si-solid;
        font-size: 24px;
        color: var(--white);
        transition: .3s;

    }
    .widget-search-show:hover:after{
        transform: scale(0.9,0.9);
    }
    /**/
    .widget-search-container{
        position: fixed;
        top:45px;
        left:10px;
        right:10px;
        width: calc(100% - 20px);
        z-index: 999;
        visibility: hidden;
        opacity: 0;
    }
    .widget-search-container.show{
        visibility: visible;
        opacity: 1;
    }
    .widget-search-container .form-group{
        display: flex;
        align-items: center;
        background: var(--white);
        border-radius: 5px;
        padding:0 10px;
    }
    .widget-search-container .form-group:before{
        content: '\e921';
        font-family: si-solid;
        font-size: 24px;
        color: var(--bluegray-200);
        margin:0 20px 0 0;
    }
    .widget-search-input{
        display: block;
        width:100%;
        height:50px;
        transition: .3s;
        color: var(--black);
        border: none;
        font-size: 16px;
    }
    .widget-search-input::-webkit-input-placeholder {color: var(--bluegray-200)}
    .widget-search-input::-moz-placeholder {color: var(--bluegray-200)}
    .widget-search-input:-ms-input-placeholder {color: var(--bluegray-200)}
    .widget-search-input:-moz-placeholder {color: var(--bluegray-200)}


    .widget-search-submit{
        display: none;
    }
    .widget-search-close{
        position: absolute;
        top:0;
        right:0;
        display: flex;
        align-items: center;
        justify-content: center;
        width:50px;
        height: 50px;
        visibility: hidden;
        font-size: 16px;
        color: var(--bluegray-500);
        cursor: pointer;
    }
    .widget-search-close:after{
        content: '\e90b';
        font-family: si-solid;
        font-size: 24px;
    }
    .widget-search-close.show{
        visibility: visible;
    }
    .widget-search-close:hover{
        color: var(--red-600);
    }
    .widget-search-overlay{
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0,0,0,0.6);
        z-index: 7;
        visibility: hidden;
        opacity: 0;
    }
    .widget-search-overlay.show{
        visibility: visible;
        opacity: 1;
    }
    .widget-search-drop{
        position: absolute;
        top:52px;
        right:0;
        width:100%;
        background: var(--white);
        box-shadow: 0 0 0 rgba(0,0,0);
        border-radius: 5px;
        z-index: 9;
    }
    .widget-search-drop-container{

    }
    .widget-search-product-list{

        padding:20px;
        overflow: hidden;
        overflow-y: auto;
        max-height: 500px;
    }
    .widget-search-product{
        display: flex;
        align-items: center;
        margin:0 0 10px 0;
    }
    .widget-search-product-image{
        width:80px;
    }
    .widget-search-product-image img{
        border: 1px solid var(--bluegray-50);
        border-radius: 5px;
        overflow: hidden;
        padding:5px;
    }
    .widget-search-product-content{
        width:calc(100% - 80px);
        padding:0 0 0 20px;
    }
    .widget-search-product-name{
        margin:0 0 5px 0;
    }
    .widget-search-product-name a{
        font-size: 14px;
        font-weight: 500;
    }
    .widget-search-product-name a:hover{
        color: var(--black);
    }
    .widget-search-product-price{
        font-weight: 500;
        color: var(--red-700);
    }
    .widget-search-product-not-available{
        color: var(--red-500);
        font-size: 13px;
    }
    .widget-search-no-product{
        font-size: 12px;
        color: var(--gray-500);
    }
    /**/
    .widget-search-drop-footer{
        display: none;
    }
    /**/

    .w-search{
        position: fixed;
        top:0;
        left:calc(-100% - 50px);
        bottom:0;
        width: calc(100% - 50px);
        z-index: 9999;
        background: var(--white);
        transition: .4s;
        padding:20px
    }
    .w-search.show{
        left:0;
    }
    .w-search-input{
        display: block;
        width:100%;
        height:50px;
        border:none;
        border-radius: 5px;
        padding:0 20px;
        transition: .3s;
        color: var(--black);
        background: #fff;
        border: 1px solid var(--bluegray-100);
    }
    .w-search-input:focus{
        background: rgba(255,255,255,1);
    }
    .w-search.up .w-search-input{
        background: #fff;
    }
    .w-search-input::-webkit-input-placeholder {color: var(--bluegray-200)}
    .w-search-input::-moz-placeholder {color: var(--bluegray-200)}
    .w-search-input:-ms-input-placeholder {color: var(--bluegray-200)}
    .w-search-input:-moz-placeholder {color: var(--bluegray-200)}
    .w-search-button{
        display: none;
    }
    .w-search-product-list{
        overflow: hidden;
        overflow-y: auto;
        max-height: 75vh;
    }
    .w-search-product{
        display: flex;
        margin:0 0 10px 0;
        padding:0 0 10px 0;
        border-bottom: 1px dashed var(--bluegray-100);
    }
    .w-search-product-image{
        width:80px;
    }
    .w-search-product-image img{
        border: 1px solid var(--bluegray-50);
        border-radius: 5px;
        overflow: hidden;
        padding:5x;
    }
    .w-search-product-content{
        width:calc(100% - 80px);
        padding:0 0 0 20px;
    }
    .w-search-product-name{
        margin:0 0 5px 0;
    }
    .w-search-product-name a{
        font-size: 14px;
        font-weight: 400;
    }
    .w-search-product-name a:hover{
        color: var(--red-700);
    }
    .w-search-product-price{
        font-weight: 500;
        color: var(--red-700);
    }
    .w-search-product-not-available{
        color: var(--red-500);
        font-size: 13px;
    }
    .w-search-no-product{
        font-size: 12px;
        color: var(--gray-500);
    }
    .w-search-drop-footer{
        display: none;
    }

    .header-panel{
        position: fixed;
        top:0;
        left:calc(-100% - 50px);
        bottom:0;
        width: calc(100% - 50px);
        z-index: 9999;
        background: var(--white);
        transition: .4s;
        padding:0 10px;
    }
    .header-panel.show{
        left:0;
    }
    .header-panel-content{
        max-height: 100vh;
        overflow: hidden;
        overflow-y: auto;
    }
    .header-panel-overlay{
        position: fixed;
        top:0;
        left:-100%;
        bottom:0;
        width: 100%;
        z-index: 999;
        background: rgba(0,0,0,0.8);
        transition: .3s;
    }
    .header-panel-overlay.show{
        left:0;
    }
    .header-panel-hide{
        position: absolute;
        top:20px;
        right:0;
        display: flex;
        justify-content: center;
        width: 50px;
        cursor: pointer;
    }
    .header-panel-hide:after{
        content: '\e90b';
        font-family: si-solid;
        font-size: 24px;
        color: var(--white);
    }
    /**/
    .header-panel .header-logo{
        width: 50px;
        padding:10px 0 0 0;
        margin: 0 auto;
    }
    /**/
    .header-panel-widgets{
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid var(--bluegray-50);
    }
    .widget-account,
    .widget-wishlist,
    .widget-language{
        margin:0 30px 0 0;
        display: flex;
        align-items: center;
        height: 50px;
    }
    .widget-account-icon:before,
    .widget-wishlist-icon:before,
    .widget-language-icon:before{
        position: relative;
        top:2px;
        font-family: si-solid;
        font-size: 22px;
        color: var(--bluegray-700);
        margin:0 10px 0 0;
    }
    .widget-account-icon:before{
        content: '\e928';
    }
    .widget-account-text{
        font-size: 13px;
    }
    .widget-wishlist-icon:before{
        content: '\e918';
    }
    .widget-language-icon:before{
        content: '\e917';
    }
    .widget-language-text a{
        font-size: 14px;
        font-weight: 500;
        color: var(--brand-second);
    }
    .widget-wishlist-count{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 20px;
        height: 20px;
        font-size: 12px;
        font-weight: 500;
        color: var(--white);
        background: var(--brand-second);
        border-radius: 10px;
    }

    /**/
    .header-catalog-mobile{
        margin:0 0 20px 0;
    }
    .header-catalog-mobile .header-catalog-title{
        display: flex;
        align-items: center;
        height: 60px;
        font-size: 16px;
        font-weight: 600;
    }
    .header-catalog-mobile .header-catalog-level-1{

    }
    .header-catalog-mobile .header-catalog-level-1-item{

    }
    .header-catalog-mobile .header-catalog-level-1-link{
        display: flex;
        align-items: center;
        background: var(--bluegray-50);
        border-radius: 5px;
        padding:10px;
        margin:0 0 10px 0;
    }
    .header-catalog-mobile .header-catalog-level-1-link img{
        width: 40px;
        margin:0 20px 0 0;
    }
    .header-catalog-mobile .header-catalog-level-1-link span{
        font-size: 14px;
        font-weight: 600;
    }
    .header-catalog-mobile .header-catalog-level-2{
        display: none;
    }
    /**/
    .menu-top{
        margin:0 0 35px 0;
    }
    .menu-top-title{
        display: flex;
        align-items: center;
        font-size: 14px;
        font-weight: 600;
        margin:0 0 10px 0;
    }
    .menu-top-level-1{

    }
    .menu-top-level-1-item{

    }
    .menu-top-level-1-link{
        display: flex;
        align-items: center;
        font-size: 14px;
        color: var(--black);
        padding:7px 0;
    }
    .menu-top-level-1-link:before{
        content: '';
        display: block;
        width: 6px;
        height: 6px;
        border-radius: 3px;
        background: var(--black);
        margin:0 10px 0 0;
    }

    /**/
    .header-panel-contact-section{
        margin:0 0 45px 0;
    }
    .header-panel-contact-section-title{
        position: relative;
        border-bottom: 1px solid var(--bluegray-50);
        margin:0 0 25px 0;
    }
    .header-panel-contact-section-title span{
        position: absolute;
        top:-10px;
        left:0;
        display: flex;
        align-items: center;
        height: 20px;
        font-size: 14px;
        font-weight: 600;
        padding:0 10px 0 0;
        background: var(--white);
    }
    .header-panel-phones{

    }
    .header-panel-phone{
        display: block;
        margin:0 0 15px 0;
    }
    .header-panel-phone a{
        font-size: 16px;
        font-weight: 500;
        color: var(--blue-700);
        border-bottom: 1px dashed var(--blue-700);
    }
    /**/
    .header-panel-addresses{

    }
    .header-panel-address{
        font-size: 16px;
        font-weight: 500;
        margin:0 0 15px 0;
    }
    /**/
    .header-panel-messengers{
        display: flex;
        align-items: center;
    }
    .header-panel-messenger{
        width: 40px;
        margin:0 10px 0 0;
    }


}