/* CSS for the new products block in the sidebar */
.home-carousel-new-products {
    position: relative;
}
.home-carousel-new-products .owl-controls {
    pointer-events: none;
}
.home-carousel-new-products .owl-buttons div {
    position: absolute;
    width: 44px;
    height: 44px;
    line-height: 44px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    text-align: center;
    font-size: 0;
    cursor: pointer;
    pointer-events: auto;
    transition: background 0.2s ease;
}
.home-carousel-new-products .owl-prev {
    left: -22px;
}
.home-carousel-new-products .owl-next {
    right: -22px;
}
.home-carousel-new-products .owl-prev::before,
.home-carousel-new-products .owl-next::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    margin-top: 16px;
}
.home-carousel-new-products .owl-prev::before {
    transform: rotate(-135deg);
}

.home-carousel-new-products .owl-next::before {
    transform: rotate(45deg);
}
.home-carousel-new-products .owl-buttons div:hover {
    background: rgba(0, 0, 0, 0.85);
}
.home-carousel-new-products .owl-buttons .disabled {
    opacity: 0.3;
    cursor: default;
}


