
.nav-catalog {
    list-style: none;
    display: inline-flex;
    padding: 0 20px;
    position: relative;
}

.nav-catalog__link {
    font-size: 20px;
    color: #0055ee;
    transition: color .4s;
    padding: 0 10px;
}

.nav-catalog__link:hover {
    color: #ff1d25;
}

.nav-catalog__arrow {
    width: 15px;
    height: 20px;
    background: url('/theme/images/arrow-default.png')no-repeat center;
    background-size: contain;
    position: absolute;
    top:50%;
    transform: translateY(-50%);
}
.nav-catalog__arrow.is-arrow-disabled {
   opacity: .5;
    pointer-events: none;
}
.nav-catalog__arrow_left  {
    left: 0;
    transform: translateY(-50%) rotate(180deg);
}
.nav-catalog__arrow_right {
    right: 0;
}

.nav-catalog-wrapper {
    text-align: right;
}
