.welcome-carousel-title{
    font-size: 19px;
    font-weight: bold;
}

.brand-carousel,
.category-carousel {
    display: flex;
    /*width: 100%;*/
    overflow: hidden;
    position: relative;
    margin: 0 30px 0 20px;
    height: 120px;
}

.carousel-items {
    position: absolute;
}
.brand-carousel-item,
.category-carousel-item {
    /*width: 70px;*/
    height: 120px;
    margin-right: 30px;
    text-decoration: none;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.brand-carousel-item img {
    width: 115px;
    max-height: 50px;
}

.category-carousel-item .category-logo {
    width: 60px;
    height: 60px;
    transition-duration: 0.3s;
}
.category-carousel-item:hover .category-logo {
    transform: scale(1.1);
}

.category-carousel-item .category-title {
    font-size: 12px;
    height: 47px;
    max-width: 120px;
    text-decoration: none;
    text-align: center;
    color: #000000;
    word-wrap: break-word;
    word-break: auto-phrase;
    overflow: hidden;
}

.category-carousel > .arrow {
    display: block;
    top: 50%;
    margin-top: -15px;
    position: absolute;
    width: 30px;
    height: 30px;
    /*border-radius: 4px;*/
    /*background-color: #0089ce;*/
    cursor: pointer;
    z-index:2
}

.category-carousel > .arrow.disabled {
    cursor: default;
    /*display: none;*/
}

.category-carousel > .arrow.left {
    left: 0;
}
.category-carousel > .arrow.right {
    right: 0;
}
.category-carousel > .arrow.left svg {
    transform: rotate(-90deg);
}
.category-carousel > .arrow.right svg {
    transform: rotate(90deg);
}
.category-carousel > .arrow svg {
    width: 20px;
    height: 20px;
    fill: #0089ce;
}
