:root
{
    --color_principal:rgb(0, 57, 200);
    --color_secundario:rgb(50,50,50);

    --ancho_slider_general: auto;
    --ancho_seccion:30vw;

    --ancho_slider_general_2:(100vw * 3);
    --ancho_seccion_2:100vw;
}
/*--------------------------------------------*/
.cont_boxes_productos
{
    width: 100%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content:flex-start;
    /*border: 1px solid red;*/
    overflow: hidden;
}
.producto_seccion
{
    width: var(--ancho_slider_general);
    height: auto;
    /*border: 1px solid red;*/
    display: flex;
    align-items: center;
    justify-content:center;
    margin-left: -30vw;
}

.producto_seccion_2
{
    width: var(--ancho_slider_general_2);
    height: auto;
    /*border: 1px solid red;*/
    display: flex;
    align-items: center;
    justify-content:center;
    margin-left: -100vw;
}

.box_producto
{
    width: var(--ancho_seccion);
    height: auto;
    border: 10px solid rgba(235, 235, 235, 0);
    background-color: rgba(235, 235, 235, 0);
    display: flex;
    align-items: center;
    justify-content:flex-start;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.3s ease;
}

.box_producto_2
{
    width: var(--ancho_seccion_2);
    height: auto;
    border: 10px solid rgba(235, 235, 235, 0);
    background-color: rgba(235, 235, 235, 0);
    display: flex;
    align-items: center;
    justify-content:flex-start;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.3s ease;
}
/*----------------------------------------------------------*/
.box_producto img
{
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit:contain;
    border-radius: 10px;
}

.box_producto_2 img
{
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit:contain;
    border-radius: 10px;
}

/*----------------------------------------------------------*/
.barra
{
    width: 30px;
    height: 6px;
    margin: 3px;
    background-color: rgb(180, 180, 180);
}

/*----------------------------------------------------------*/
.boton_iqz_producto, .boton_iqz_producto_2
{
    position: absolute;
    left: 20px;
    width: 50px;
    height: 50px;
    border-radius: 5px;
    background-color: rgba(0, 0, 0, 0.7);
    border: 2px solid rgb(255, 255, 255);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}
.boton_iqz_producto:hover, .boton_iqz_producto_2:hover
{
    transition: all 0.3s;
    background-color: rgb(0, 0, 0);
}
.boton_iqz_producto i, .boton_iqz_producto_2 i
{
    font-size: 25px;
    color: white;
}

/*----------------------------------------------------------------*/
.boton_der_producto, .boton_der_producto_2
{
    position: absolute;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 5px;
    background-color: rgba(0, 0, 0, 0.7);
    border: 2px solid rgb(255, 255, 255);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}
.boton_der_producto:hover, .boton_der_producto_2:hover
{
    transition: all 0.3s;
    background-color: rgb(0, 0, 0);
}
.boton_der_producto i, .boton_der_producto_2 i
{
    font-size: 25px;
    color: white;
}

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/*responsive*/
@media screen and (max-width:840px)
{
    .producto_seccion
    {
        width: cal(100vw * 9);
        margin-left: -100vw;
    }
    .box_producto
    {
        width: 100vw;
        height: auto;
        border: 2px solid rgba(235, 235, 235, 0);
    }
}
@media screen and (max-width:570px)
{
    .producto_seccion
    {
        height: auto;
    }
    .box_producto
    {
        height: auto;
    }
    .boton_iqz_producto
    {
        width: 40px;
        height: 40px;
    }
    .boton_iqz_producto i
    {
        font-size: 20px;
    }
    .boton_der_producto
    {
        width: 40px;
        height: 40px;
    }
    .boton_der_producto i
    {
        font-size: 20px;
    }
}
@media screen and (max-width:395px)
{
    .producto_seccion
    {
        height: auto;
    }
    .box_producto
    {
        height: auto;
    }
}