.icones-carousel {
    display: flex;
}
.slide__product_content {
    margin: 50px auto;
}

/*TITULO*/

.slider__title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}
.slider__title h2 {
    width: 80%;
    padding: 5px 10px;
    margin: 0;
}
.slider__title a {
    display: flex;
}
.slider__title svg {
    width: 1rem;
    margin-left: 1rem;
}

/*FLECHAS*/

.slide__product_content svg.flecha--slide {
    position: absolute;
    width: 2rem;
    top: 40%;
    cursor: pointer;
    z-index: 998;
    transition: all ease .3s;
    overflow-x: visible !important;
}
.slide__product_content svg.flecha--slide:hover {
    transform: scale(1.2);
}
.slide__product_content svg.f-right {
    left: -3.5rem;
}
.slide__product_content svg.f-left {
    right: -3.5rem;
}

/*PRODUCTOS*/

.slide__product_content .slick-track {
    display: flex;
    flex-direction: row;
    gap: 15px;
}
.slide__product_content .prod__name_slide {
    text-transform: lowercase;
    font-size: 2rem;
    height: 80px;
}
.slide__product_content .prod__name_slide:first-letter{
    text-transform: uppercase;
}
.slide__product_content .btn__addtocart_slide .add_to_cart_button {
    width: 100%;
    text-align: center;
    margin-top: 10px !important;
}

/*RESPONSIVE*/

@media (max-width: 1550px) {
    .icones-carousel {
        width: 90%;
        left: 5%;
    }
}
@media (max-width: 600px) {
    .slide__product_content svg {
        display: none !important;
    }
    .slide__product_content .slider__title {
        flex-direction: column;
        align-items: flex-start;
    }
    .slide__product_content .slider__title h2 {
        width: 100%;
        font-size: 2rem;
    }
    .slide__product_content .slider__title a {
        padding: 10px;
        font-size: 1.6rem;
    }
}
@media (max-width: 480px) {
    
}