/* catalog.top */
.bx_catalog_tile_home_type_2 .bx_catalog_tile_slider_arrow_left,
.bx_catalog_tile_home_type_2 .bx_catalog_tile_slider_arrow_right{
    background-color: #fff;
    background-repeat: no-repeat;
    background-size: 20px !important;
    background-position: center;
    width: 60px;
    height: 60px;
    box-shadow: 0 3px 7px #999;
    border-radius: 30px;
}
.bx_catalog_tile_home_type_2 .bx_catalog_tile_slider_arrow_right{
    right: 0;
    background-image: url("../icons/arrows/rirht.small.svg");
}
.bx_catalog_tile_home_type_2 .bx_catalog_tile_slider_arrow_left{
    left: 0;
    background-image: url("../icons/arrows/left.small.svg");
}

/**
  * Carousel controls
  */
.carousel-controls {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    margin-top: -30px;
}
.carousel-control-prev,
.carousel-control-next{
    width: 60px;
    height: 60px;
    border-radius: 30px;
    position: absolute;
    cursor: pointer;
    background-color: #fff;
    background-repeat: no-repeat;
    background-size: 20px !important;
    background-position: center;
    box-shadow: 0 3px 7px #999;
    z-index: 499;
}
.carousel-control-prev{
    left: 0;
    background-image: url("../icons/arrows/left.small.svg");
}
.carousel-control-next{
    right: 0;
    background-image: url("../icons/arrows/rirht.small.svg");
}