/**
 * Category Slider Styles
 * Вынесены из load_category/index.php для оптимизации загрузки
 */

.swiper-category {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
    overflow: hidden;
}

.category-name {
    width: auto;
    color: #FFF;
    text-align: center;
    font-family: Rubik;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 10.493px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease 0s;
    display: flex;
    align-items: center;
    height: 20px;
    cursor: pointer;
    border-bottom: 3px solid transparent;
}

.wrapper-category {
    left: -40px;
    height: 100px;
    align-items: center;
    padding-bottom: 4px;
    border-bottom: 3px;
}

@media (min-width: 1023.5px) {
    .category-name:hover {
        color: red;
    }
    .wrapper-category {
        justify-content: space-between;
    }
    .category-name.active {
        font-weight: 600;
        border-bottom: 3px solid #FFBE16;
    }
    .active.category-name:hover {
        color: #FFF;
    }
}

@media (max-width: 1023.5px) {
    .category-name {
        display: block;
        border: 2px solid #fff;
        padding: 25px 20px;
        border-radius: 20px;
        margin-right: 10px;
        line-height: 3.493px;
    }
    .category-name.active {
        font-weight: 600;
        color: #272727;
        background: #FFC700;
        border-color: #FFC700;
    }
}
