.nav-catalog__wrap {
    display: flex;
    background: #FFFFFF;
    box-sizing: border-box;
    border-radius: 3px;
}
.nav-catalog__item {
    border: 1px solid #EEEEEE;
    height: 38px;
    width: 38px;
    position: relative;
}
.nav-catalog__item:first-child {
    border-radius: 3px 0 0 3px;
}
.nav-catalog__item:last-child {
    border-radius: 0 3px 3px 0;
}
.nav-catalog__item.active {
    background: #F5F5F5;
}
.nav-catalog__item.active span {
    color: #111;
}
.nav-catalog__item a:link,
.nav-catalog__item a:visited,
.nav-catalog__item span {
    color: #111;
    opacity: 0.8;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.nav-catalog__item a:hover,
.nav-catalog__item a:active {
    color: #538D63;
    opacity: 1;
}
.catalog-section__load {
    width: 100%;
    background: #F5F5F5;
    border-radius: 3px;
    font-weight: bold;
    font-size: 14px;
    line-height: 18px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111;
    cursor: pointer;
    transition: all 0.3s;
}
.catalog-section__load:hover {
    background: #E4E4E4;
    transition: all 0.3s;
}