

/* Start:/local/components/api/category.tree.main/templates/v2/style.css?17795307273655*/
.catalog {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 0 40px;
}

.catalog-grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 14px 28px;
}

.catalog-category {
    border-bottom: 1px solid #ececec;
}

.catalog-category__head {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    cursor: pointer;
}

.catalog-category__icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    margin-top: 1px;
}

.catalog-category__icon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.catalog-category__main {
    min-width: 0;
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.catalog-category__title {
    display: block;
    min-width: 0;
    line-height: 1.35;
    font-weight: 600;
    color: #111;
    transition: color .15s ease;
    text-decoration: none;
}

.catalog-category__title:hover {
    text-decoration: none;
}

.catalog-category__stats {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    line-height: 1;
}

.catalog-category__count {
    color: #555;
    white-space: nowrap;
}

.catalog-category__today {
    background: var(--agr-counters-bg);
    color: var(--agr-counters-color);
    font-size: 12px;
    padding: 0 5px;
    border-radius: 3px;
    white-space: nowrap;
}

.catalog-category__toggle {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.catalog-category__toggle svg {
    width: 100%;
    height: 100%;
    stroke: #666;
    stroke-width: 2;
    fill: none;
    transition: transform .18s ease;
}

.catalog-category.is-open .catalog-category__toggle svg {
    transform: rotate(180deg);
}

.catalog-category__children {
    overflow: hidden;
    max-height: 0;
    transition: max-height .22s ease;
}

.catalog-category.is-open .catalog-category__children {
    max-height: 1200px;
}

.catalog-category__children-inner {
    padding: 0 0 10px 0;
}

.catalog-sub {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    padding: 4px 0;
    border-bottom: 1px solid #ececec;
}

.catalog-sub__title {
    min-width: 0;
    flex: 1;
    font-size: 14px;
    line-height: 1.35;
    color: #444;
    text-decoration: none;
}

.catalog-sub__title:hover {
    text-decoration: none;
}

.catalog-sub__stats {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    line-height: 1;
}

.catalog-sub__count {
    color: #777;
    white-space: nowrap;
}

.catalog-sub__today {
    background: var(--agr-counters-bg);
    color: var(--agr-counters-color);
    font-size: 12px;
    padding: 0 5px;
    border-radius: 3px;
    white-space: nowrap;
}

@media (max-width: 900px) {
    .catalog-grid {
        grid-template-columns:1fr;
        gap: 0;
    }
}

@media (max-width: 640px) {
    .catalog {
        padding: 10px 10px 30px;
    }

    .catalog-category__head {
        gap: 8px;
        padding: 9px 0;
    }

    .catalog-category__main {
        gap: 8px;
    }

    .catalog-category__title {
        /*font-size: 14px;*/
    }

    .catalog-category__stats {
        flex-direction: column;
        align-items: flex-end;
        gap: 4px;
    }

    .catalog-category__children-inner {
        padding-left: 0;
    }

    .catalog-sub {
        gap: 8px;
        /*font-size: 14px;*/
    }

    .catalog-sub__title {
        /*font-size: 13px;*/
    }

    .catalog-sub__stats {
        flex-direction: column;
        align-items: flex-end;
        gap: 3px;
    }
}

/* End */


/* Start:/local/components/api/members.pro/templates/carousel_v1/style.css?17801416276359*/
.carousel {
    position: relative;
    visibility: hidden
}

.carousel.is-ready {
    visibility: visible
}

.carousel__slider {
    position: relative
}

.carousel__slider::before, .carousel__slider::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 36px;
    z-index: 2;
    pointer-events: none;
    transition: opacity .2s
}

.carousel__slider::before {
    left: 0
}

.carousel__slider::after {
    right: 0
}

.carousel.is-at-start .carousel__slider::before {
    opacity: 0
}

.carousel.is-at-end .carousel__slider::after {
    opacity: 0
}

.carousel__viewport {
    overflow: hidden
}

.carousel__track {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    will-change: transform;
    cursor: grab;
    touch-action: pan-y
}

.carousel__track.is-dragging {
    cursor: grabbing;
    transition: none !important
}

.carousel__item {
    display: flex;
    flex: 0 0 20%;
    min-width: 0;
    box-sizing: border-box
}

.carousel__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid var(--agr-border-dark);
    background: var(--agr-white);
    color: var(--agr-text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
    transition: background .15s, border-color .15s, color .15s, box-shadow .15s, opacity .2s;
    line-height: 1
}

.carousel__arrow:disabled {
    opacity: .25;
    cursor: not-allowed;
    pointer-events: none
}

.carousel__arrow svg {
    display: block;
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.carousel__arrow--prev {
    left: -19px
}

.carousel__arrow--next {
    right: -19px
}

.carousel__dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 16px;
    flex-wrap: wrap
}

.carousel__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: var(--agr-border-dark);
    cursor: pointer;
    flex-shrink: 0;
    transition: width .2s, border-radius .2s, background .2s
}

.carousel__dot.is-active {
    width: 22px;
    border-radius: 4px
}

.premium-companies {
    margin: 18px 0 26px
}

.premium-companies__container {
    max-width: var(--agr-container);
    margin: 0 auto
}

.premium-companies__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px
}

.premium-companies__title {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: var(--agr-text)
}

.premium-companies__all-link {
    color: var(--agr-brand);
    text-decoration: none;
    font-weight: 700;
    white-space: nowrap;
}

.premium-companies__all-link:hover {
    color: var(--agr-brand-dark);
    text-decoration: none;
}

.company-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    min-height: 112px;
    padding: 14px;
    background: var(--agr-white);
    border: 1px solid var(--agr-border);
    border-radius: var(--card-radius);
    box-shadow: var(--card-shadow);
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    transition: transform .18s, box-shadow .18s, border-color .18s
}

.company-card:hover {
    transform: translateY(-2px);
    border-color: var(--agr-border-dark);
    box-shadow: var(--agr-hover-shadow-sm);
    text-decoration: none;
}

.company-card__badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(134deg, #291fff 0%, #5aaeff 100%);
    color: var(--agr-white);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: .04em;
    text-transform: capitalize;
    padding: 4px 7px;
    border-radius: 999px;
    line-height: 1
}

.company-card__logo-wrap {
    flex: 0 0 72px;
    width: 72px;
    height: 72px;
    border-radius: var(--card-radius-sm);
    background: var(--bg-soft);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center
}

.company-card__logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.company-card__body {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    flex: 1
}

.company-card__name {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--agr-text);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.company-card__link {
    font-size: 13px;
    font-weight: 600;
    color: var(--agr-brand)
}

.premium-companies .carousel__slider::before {
    background: linear-gradient(to right, #fff, transparent)
}

.premium-companies .carousel__slider::after {
    background: linear-gradient(to left, #fff, transparent)
}

.premium-companies .carousel__dot.is-active {
    background: var(--agr-brand)
}

.premium-companies .carousel__arrow:hover {
    background: var(--agr-brand);
    border-color: var(--agr-brand);
    color: #fff
}

@media (max-width: 1200px) {
    .carousel__item {
        flex-basis: 25%
    }

    .carousel__arrow--prev {
        left: 4px
    }

    .carousel__arrow--next {
        right: 4px
    }

    .carousel__viewport {
        padding: 10px 26px
    }
}

@media (max-width: 900px) {
    .carousel__item {
        flex-basis: 33.3333%
    }
}

@media (max-width: 768px) {
    .carousel__arrow {
        width: 30px;
        height: 30px
    }

    .carousel__arrow svg {
        width: 13px;
        height: 13px
    }

    .company-card {
        min-height: 96px;
        padding: 12px;
        gap: 12px
    }

    .company-card__logo-wrap {
        width: 62px;
        height: 62px;
        flex-basis: 62px
    }

    .company-card__name {
        font-size: 14px
    }

    .company-card__link {
        font-size: 12px
    }
}

@media (max-width: 640px) {
    .carousel__item {
        flex-basis: 50%
    }
}

@media (max-width: 420px) {
    .carousel__item {
        flex-basis: 100%
    }

    .premium-companies {
        margin-top: 10px
    }

    .premium-companies__title {
        font-size: 18px
    }
}
/* End */
/* /local/components/api/category.tree.main/templates/v2/style.css?17795307273655 */
/* /local/components/api/members.pro/templates/carousel_v1/style.css?17801416276359 */
