.contenedor_produc_descuentos {
    background-color: rgba(255, 255, 255, 0);
    width: 100%;
    display: flex;
    flex-direction: row;
}

.contenedor_produc_descuentos .card-product-descuentos {
    width: 18.229vw;
    position: relative;
    background-color: #ffffff;
    padding: 0.781vw;
    border-radius: 22px;
    margin-left: 0.781vw;
    margin-right: 0.781vw;
    cursor: pointer;
}

.contenedor_produc_descuentos .arriba-descuentos {
    display: flex;
    flex-direction: row;
    background-color: transparent;
    width: 100%;
    height: 5vh;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
}

.contenedor_produc_descuentos .arriba-descuentos .tag-descuentos {
    background-color: #212121;
    color: white;
    border-radius: 20px;
    padding: 0.26vw 0.625vw;
    font-size: 6px;
    font-family: 'Poppins-light', sans-serif;
}

.contenedor_produc_descuentos .arriba-descuentos .icon-descuentos {
    background-color: transparent;
    display: flex;
    justify-content: center;
}

.contenedor_produc_descuentos .arriba-descuentos .icon-descuentos img {
    width: 35px;
    height: 35px;
    margin: 0;
    cursor: pointer;
}


.contenedor_produc_descuentos .product-image-descuentos {
    position: relative;
    /* Importante para posicionar el hijo absoluto */
    margin: 0.26vw 0 1.042vw;
    width: 100%;
    height: 23vh;
    background-color: transparent;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.etiqueta_desc {
    position: absolute;
    top: -1.5vh;
    left: -0.781vw;
    width: 5.729vw;
    height: 11vh;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    pointer-events: none;
}

.etiqueta_desc h1 {
    font-size: 18px;
    font-weight: bold;
    color: white;
    position: absolute;
    z-index: 3;
    top: 3.3vh;
    text-align: center;
    width: 100%;
    font-family: 'Poppins-SemiBold', sans-serif;
}

.etiqueta_desc h1 span {
    font-size: 14px;
}

.etiqueta_desc img {
    width: 5.729vw;
    height: 11vh;
    z-index: 2;
    position: absolute;
    top: 0;
    left: 0;
}

.contenedor_produc_descuentos .product-image-descuentos img {
    background-color: transparent;
}

.contenedor_produc_descuentos .abajo-descuentos {
    display: flex;
    flex-direction: row;
    background-color: transparent;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    height: 7vh;
    padding-right: 0.5vw;
}

.contenedor_produc_descuentos .description-descuentos {
    font-size: 11px;
    color: #4c4a4a;
    background-color: transparent;
    width: 10.4vw;
    font-family: 'Cooper-light', sans-serif;
}

.contenedor_produc_descuentos .divider-descuentos {
    width: 1px;
    height: 5vh;
    background-color: #000000;
    margin: 0 2px;
}

.contenedor_produc_descuentos .precio-descuentos {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.contenedor_produc_descuentos .price-descuentos {
    font-size: 20px;
    font-weight: bold;
    color: #000;
    font-family: 'Cooper-Bold', sans-serif;
}

.contenedor_produc_descuentos .tax-descuentos {
    font-size: 0.8em;
    color: #757575;
    font-family: 'Cooper-light', sans-serif;
}

@media screen and (max-width:1366px) {

    .contenedor_produc_descuentos .arriba-descuentos .tag-descuentos {
        font-size: 5px;
    }

    .contenedor_produc_descuentos .arriba-descuentos .icon-descuentos img {
        width: 30px;
        height: 30px;
    }

    .etiqueta_desc h1 {
        font-size: 10px;
    }

    .etiqueta_desc h1 span {
        font-size: 10px;
    }

    .contenedor_produc_descuentos .description-descuentos {
        font-size: 10px;
    }

    .contenedor_produc_descuentos .price-descuentos {
        font-size: 16px;
    }

    .contenedor_produc_descuentos .tax-descuentos {
        font-size: 0.7em;
    }
}

@media screen and (max-width:500px) {

    .contenedor_produc_descuentos .card-product-descuentos {
        width: 60vw;
    }

    .etiqueta_desc h1 {
        font-size: 10px;
        top: 4.5vh;
    }

    .etiqueta_desc {
        width: 15.729vw;
    }

    .etiqueta_desc img {
        width: 15.729vw;
    }

    .contenedor_produc_descuentos .description-descuentos {
        font-size: 11px;
        width: 70%;
    }

}