.c-catalog .c-button {
    display: flex;
    align-items: center;
    font-size: 22px;
    font-weight: 600;
    height: inherit;
    background: var(--main-color);
    min-width: 270px;
    padding: 13px 20px;
    color: var(--button-color);
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none !important;
    cursor: pointer;
}

.c-catalog .c-nav__link--1 {
    position: relative;
}


.c-catalog .c-nav__level--1 {
    position: static;
}

.c-catalog__burger {
    position: relative;
    display: block;
    width: 20px;
    height: 20px;
    margin: 2px 18px 2px 0;
    transition: all 0.3s;
}

.c-catalog .c-button:hover .c-catalog__burger span{
    border-bottom: 2px solid #FFF;
}
.c-catalog .c-button {
    transition: all 0.3s;
}
.c-catalog .c-button:hover {
    color: #FFF;
}

.c-catalog .c-catalog__text {
    transition: all 0.3s;
}
.c-catalog .c-nav__link:hover .c-nav__img,
.c-catalog .c-nav__link:hover .c-catalog__text {
    color: var(--secondary-color);
    fill: var(--secondary-color);
}

@media (max-width: 1366px) {
    .c-catalog .c-button {
        width: fit-content;
        min-width: auto;
    }

    .c-catalog__burger {
        margin: 0;
    }

    .c-catalog .c-button > span:last-child {
        display: none;
    }
}

@media (max-width: 1024px) {
    .c-catalog .c-button {
        display: none;
    }
}

@media (max-width: 767px) {
    .c-catalog .c-button {
        font-size: 16px;
        height: 34px;
        padding: 0 10px;
    }
}

.c-catalog .c-button .icon {
    font-size: 18px;
    margin-right: 0;
    margin-left: 10px;
    -webkit-transition: -webkit-transform .3s;
    -o-transition: transform .3s;
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
}

@media (max-width: 767px) {
    .c-catalog .c-button .icon {
        font-size: 12px;
        margin-top: 2px;
        margin-left: 6px;
    }
}

@media (min-width: 1025px) {

    .c-catalog .c-button.active .c-catalog__burger span:first-child {
        transform: rotate(45deg);
        top: 9px;
        width: 26px;
        left: -3px;
    }

    .c-catalog .c-button.active .c-catalog__burger span:nth-child(2) {
        width: 0;
    }

    .c-catalog .c-button.active .c-catalog__burger span:last-child {
        transform: rotate(-45deg);
        top: 9px;
        width: 26px;
        left: -3px;
    }
}

.c-catalog .c-button:active {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.c-catalog__burger span {
    position: absolute;
    left: 0;
    right: 0;
    width: 20px;
    border-bottom: 2px solid var(--button-color);
    margin: auto;
    top: 9px;
    transition: all .3s;
}

.c-catalog__burger span:first-child {
    top: 4px;
}

.c-catalog__burger span:last-child {
    top: 14px;
}

/* c-catalog
------------------------------------------------------------------- */
.c-catalog {
    z-index: 100;
    width: 100%;
}

.c-catalog__dropdown--1 {
    list-style: none;
    padding: 0;
    height: 0;
    overflow: hidden;
}

.c-catalog__level {
    padding: 0 15px;
    position: relative;
}

.c-catalog__link {
    padding: 13px 0;
    color: #555;
    font-size: 14px;
}

.c-catalog__link:hover {
    color: #555;
}

.c-catalog__dropdown--2 {
    padding: 30px;
}

.c-catalog__dropdown--3 {
    position: static !important;
    padding: 0;
    list-style: none;
}

.c-catalog__text--2 {
    font-size: 16px;
    color: #222;
    border-bottom: 1px solid #eee;
    padding-bottom: 17px;
    margin-bottom: 10px;
    font-weight: 600;
}

.c-catalog__link--3 {
    display: flex;
    min-height: 30px;
    justify-content: space-between;
    color: #555;
    line-height: 30px;
    font-size: 14px;
    transition: all .3s;
}

.c-catalog__link--3:hover {
    color: var(--main-color);
}

.c-catalog__link--2 {
    padding: 0;
}

.c-catalog__level--2 {
    margin-bottom: 20px;
}

.c-catalog__categories {
    min-width: 230px;
    padding: 0 15px;
    list-style: none;
}

.c-catalog__img {
    position: relative;
    min-width: 45px;
    max-width: 45px;
    height: 35px;
    margin-right: 5px;
}

@media (min-width: 1025px) {
    .c-catalog {
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        height: 100%;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .c-catalog__dropdown {
        position: absolute;
        width: 100%;
        width: 270px;
        background: #fff;
        box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.1);
    }

    .c-catalog__dropdown--1 {
        z-index: 90;
        top: 100%;
        left: 0;
        opacity: 0;
        visibility: hidden;
        transform: translate(0,30px);
        transition: all .5s;
    }

    .c-catalog__dropdown--1.active {
        opacity: 1;
        visibility: visible;
        transform: translate(0,0);
    }

    .c-catalog__dropdown--2,
    .c-catalog__dropdown--day {
        list-style: none;
        top: 30px;
        left: 100%;
        max-height: 600px;
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
        min-height: 100%;
        transition: all .5s;
    }

    .c-catalog__dropdown--2.active,
    .c-catalog__dropdown--3.active {
        top: 0px;
        opacity: 1;
        visibility: visible;
    }

    /*.c-catalog__dropdown--2:before,*/
    /*.c-catalog__dropdown--3:before,*/
    /*.c-catalog__dropdown--day:before {*/
    /*position: absolute;*/
    /*z-index: -1;*/
    /*top: 0;*/
    /*right: 0;*/
    /*bottom: 0;*/
    /*left: -100%;*/
    /*width: 100%;*/
    /*content: '';*/
    /*background: #fff;*/
    /*-webkit-box-shadow: 0 1px 0 1px #dadada;*/
    /*box-shadow: 0 1px 0 1px #dadada;*/
    /*}*/
    .c-catalog__dropdown.active {
        display: block;
        height: auto;
        overflow: visible;
    }


    .c-catalog__level--1.c-catalog__level--arrow .c-catalog__day--2 {
        display: block;
    }

    .c-catalog__level--1.c-catalog__level--no-arrow:hover ~ .c-catalog__day--1 {
        display: block;
    }

    .c-catalog__level--2.c-catalog__level--arrow .c-catalog__day--3 {
        display: block;
    }

    .c-catalog__level--2.c-catalog__level--no-arrow ~ .c-catalog__day--2 {
        display: block;
    }

    .c-catalog__link {
        padding-right: 20px;
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        min-height: 40px;
        -webkit-transition: all .3s;
        -o-transition: all .3s;
        transition: all .3s;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    
    

    .c-catalog__link.active {
        font-weight: 600;
        -webkit-box-shadow: inset 0 2px 12px rgba(0, 0, 0, .16);
        box-shadow: inset 0 2px 12px rgba(0, 0, 0, .16);
    }

    .c-catalog__text {
        line-height: 1.2;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
    }

    .c-catalog__img img {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        margin: auto;
    }

    .c-catalog__count {
        font-size: 12px;
        font-weight: 600;
        display: inline-block;
        margin: 0 5px;
        height: 100%;
        margin-left: 6px;
        color: #999;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .c-catalog__icon {
        font-size: 9px;
        position: absolute;
        top: 0;
        right: 0px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 26px;
        height: 100%;
        color: #555;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .c-catalog__day {
        z-index: -1;
    }

    .c-catalog__day--content {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin: auto;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

@media (min-width: 1025px) and (max-width: 1024px) {
    .c-catalog__day {
        display: none !important;
    }
}

.c-mobile-catalog__level {
    display: flex;
    width: 100%;
    border-bottom: 1px solid #eee;
    height: 50px;
}

.c-mobile-catalog__dropdown--2 {
    flex-direction: column;
    height: 90%;
    position: absolute;
    top: 0;
    bottom: 0;
    overflow-y: auto;
    right: 0;
    left: 100%;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    transition: all .3s;
    z-index: 20;
}

.c-mobile-catalog__dropdown--2.active {
    left: 0;
    opacity: 1;
    visibility: visible;
}

.c-mobile-catalog__link {
    display: flex;
    flex-grow: 1;
    position: relative;
    padding: 0 20px;
    height: 100%;
    align-items: center;
    color: #000;
    font-size: 14px;
}

.c-mobile-catalog__categories {
    padding: 20px;
    width: 100%;
    list-style: none;
}

.c-mobile-nav__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    top: 0;
    right: 0;
    z-index: 10;
    font-size: 10px;
    cursor: pointer;
}

.c-mobile-nav__link--2 {
    font-size: 16px;
    color: #222;
    border-bottom: 1px solid #eee;
    padding-bottom: 17px;
    margin-bottom: 10px;
}

.c-mobile-nav__link--3 {
    color: #555;
    line-height: 30px;
    font-size: 14px;
    display: block;
    transition: all .5s;
    padding: 8px 0;
}

.c-mobile-nav__link--3:hover {
    color: var(--main-color);
}

.c-mobile-nav__icon--close {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 0;
    right: 0;
    width: 50px;
    height: 50px;
    border-right: 1px solid #eee;
    font-size: 10px;
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
}

.c-mobile-nav__icon--close.nav--right {
    right: 0;
    top: 0;
    left: auto;
    opacity: 1;
    visibility: visible;
    border-right: none;
    border-left: 1px solid #eee;
}

.c-mobile-catalog__dropdown--1 {
    margin-bottom: 0;
}

.c-mobile-nav__icon--close.active {
    opacity: 1;
    visibility: visible;
}

.sub-icon {
    display: none;
    opacity: 0;
    visibility: hidden;
}

@media (min-width: 1025px) {
    .c-mobile-catalog__dropdown--1 {
        display: none !important;
    }
}

@media (min-width: 1025px) {
    .not-banner.c-catalog__dropdown--2 {
        padding: 20px;
        height: fit-content;
        overflow-y: auto;
    }
    
    .not-banner > .c-catalog__categories {
        padding: 0;
    }
    
    .not-banner .c-catalog__level--2,
    .not-banner .c-catalog__level--3 {
        margin-bottom: 0;
        position: relative;
    }
    
    .not-banner .c-catalog__link--2,
    .not-banner .c-catalog__link--3 {
        width: 100%;
        padding-right: 0;
        padding: 13px 0;
    }
    
    .not-banner .c-catalog__link--2 > i {
        position: relative;
        font-size: 9px;
        padding: 10px;
        z-index: 10;
        transition: all .5s ease;
    }
    
    .not-banner .c-catalog__link--2 > i.active {
        transform: rotate(90deg);
    }

    .not-banner .c-catalog__text--2,
    .not-banner .c-catalog__text--3 {
        color: #555;
        font-weight: 500;
        font-size: 14px;
        margin-bottom: 0;
        border-bottom: none;
        min-height: 30px;
        padding-bottom: 0;
        line-height: 30px;
    }

    .not-banner .sub-icon {
        display: block;
        opacity: 1;
        visibility: visible;
    }
    
    .not-banner .c-catalog__dropdown--3 {
        display: none;
        background: #fff;
        padding-left: 15px;
    }
}

