.div_content_product{
    position: relative;
    width: 100%;
    *height: 100vh;
    *background: rgba(0, 0, 0, .03);
    overflow: auto;
}


.div_productos{
    position: relative;
    width: 70%;
    *height: 100vh;
    min-height: 100vh;
    left: 50%;
    transform: translate(-50%);
    background: #fff;
    overflow: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    justify-items: flex-start;
    align-content: flex-start;
    align-items: flex-start;
}


.div_productos::-webkit-scrollbar {
    -webkit-appearance: none;
}

.div_productos::-webkit-scrollbar:vertical {
    width:10px;
}

.div_productos::-webkit-scrollbar-button:increment,.div_productos::-webkit-scrollbar-button {
    display: none;
}

.div_productos::-webkit-scrollbar:horizontal {
    height: 10px;
}

.div_productos::-webkit-scrollbar-thumb {
    background-color: #797979;
    border-radius: 20px;
    border: 2px solid #f1f2f3;
}

.div_productos::-webkit-scrollbar-track {
    border-radius: 10px;  
}

.div_producto{
    position: relative;
    top: 10px;
    width: 23%;
    height: 200px;
    margin: 10px;
    left: 15px;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, .3);
    background: rgba(0, 0, 0, .4);
}

.s_producto{
    position: absolute;
    width: 100%;
    height: 58%;
    background: rgba(0, 0, 0, .3);
    bottom: -116px;
    text-align: left;
    padding: 10px;
    font-size: 18px;
    font-weight: 700;
    color: aliceblue;
    transition: all .3s ease;
    cursor: pointer;
}

.varita{
    position: absolute;
    top: -35%;
    left: 50%;
    transform: translate(-50%);
    text-align: center;
    width: 45px;
    height: 40px;
    background: rgba(0, 0, 0, .3);
    border-radius: 50% 50% 0 0;
    line-height: 50px;
    font-weight: 500;
    font-size: 20px;
    
    
    
}

.div_producto:hover .s_producto{
    bottom: 0px;
    
}

.img_producto{
    position: absolute;
    width: 100%;
    height: 100%;
}

.l_precio{
    font-size: 21px;
    position: absolute;
    bottom: 7px;
}

.i_comprar{
    position: absolute;
    right: 10px;
    cursor: pointer;
    z-index: 2;
    font-size: 25px;
    top: 85%;
    transform: translateY(-50%);
}

.h_aviso_producto{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: red;
    font-size: 60px;
    width: 100%;
    text-align: center;
}

.l_presale{
    position: absolute;
    top: 64%;
    left: 50%;
    transform: translate(-50%);
    color: red;
    font-size: 24px;
}

.h_titulo{
    position: relative;
    width: 100%;
    left: 30px;
    font-size: 35px;
    margin-top: 10px;
    color: #343F45;
    
}

.fav_ico, .s_fav_ico{
    position: absolute;
    z-index: 3;
    font-size: 20px;
    color: aliceblue;
    right: 3px;
    top: 3px;
    cursor: pointer;
}

.fav_ico.activo{
    color: #cad90d;
}

.tooltip_fav{
    position: absolute;
    width: 150px;
    height: 40px;
    background: rgba(0, 0, 0, .6);
    z-index: 3;
    border-radius: 8px;
    top: 12%;
    left: 63%;
    transform: translate(-50%, -50%);
    padding: 10px;
    opacity: 0;
    transition: all .5s ease;
    
}

.tooltip_remove{
    width: 200px;
    left: 56%;
}


.s_fav_ico:hover ~ .tooltip_fav{
    opacity: 1;
}


.l_agregar_lista{
    position: absolute;
    color: aliceblue;
    width: 100%;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
}

    .bookmark{
        position: absolute;
        width: 150px;
        height: 20px;
        background: red;
        top: 30px;
        z-index: 1;
        left: -30px;
        transform: rotate(-45deg);
        color: aliceblue;
        font-size: 14px;
        text-align: center;
        
    }

/** Responsive content productos */
/**Small devices (landscape phones, 280px and up)**/
@media (min-width:280px){
    
    .div_content_product {
        position: relative;
        width: 100%;
        *height: 100vh;
        *background: rgba(0, 0, 0, .03);
    }

    .div_productos{
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        justify-items: center;
        align-content: flex-start;
        align-items: center;
        overflow-Y: auto;
        overflow-x: hidden;
    }
 
    .h_titulo{
        position: relative;
        width: 100%;
        top: 0;
        left: 20px;
        font-size: 1.7em;
        margin-top: 10px;
        color: #343F45;

    }

    .div_producto{
        position: relative;
        top: 10px;
        width: 90%;
        height: 200px;
        margin: 10px 0px;
        left: 0px;
        overflow: hidden;
        border-radius: 8px;
        border: 1px solid rgba(0, 0, 0, .3);
        background: rgba(0, 0, 0, .4);
    }


    .s_producto{
        bottom: 0px;

    }

}

/**Small devices (landscape phones, 360px and up)**/
@media (min-width:320px){

     .content_general {
        position: relative;
        top: 50px;
        width: 100%;
        *height: 100vh;
        overflow-Y: auto;
        overflow-x: hidden;
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-content: flex-start;
        padding-bottom: 0px;
    }
    
    .div_content_product {
        position: relative;
        width: 100%;
        *height: 120%; 
        *background: rgba(0, 0, 0, .03);
        overflow: hidden;
        
    }

    .div_productos{
        width: 100%;
        *height: 120%;
        overflow: hidden;
    }
 
    .h_titulo{
        position: relative;
        width: 100%;
        top: 0;
        left: 20px;
        font-size: 1.7em;
        margin-top: 10px;
        color: #343F45;

    }

    .div_producto{
        position: relative;
        top: 10px;
        width: 90%;
        height: 200px;
        margin: 10px 0px;
        left: 0px;
        overflow: hidden;
        border-radius: 8px;
        border: 1px solid rgba(0, 0, 0, .3);
        background: rgba(0, 0, 0, .4);
    }

}

/**Small devices (landscape phones, 390px and up)**/
@media (min-width:346px){
    .content_general {
        position: relative;
        top: 50px;
        width: 100%;
        *height: 100vh;
        overflow-Y: auto;
        overflow-x: hidden;
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-content: flex-start;
        padding-bottom: 0px;
    }
    
  .div_content_product {
        position: relative;
        width: 100%;
        *height: 120%; 
        *background: rgba(0, 0, 0, .03);
        overflow: hidden;
        
    }

    .div_productos{
        width: 100%;
        *height: 120%;
        overflow: hidden;
    }
    
    
 
    .h_titulo{
        position: relative;
        width: 100%;
        top: 0;
        left: 20px;
        font-size: 1.7em;
        margin-top: 10px;
        color: #343F45;

    }

    .div_producto{
        position: relative;
        top: 10px;
        width: 90%;
        height: 200px;
        margin: 10px 0px;
        left: 0px;
        overflow: hidden;
        border-radius: 8px;
        border: 1px solid rgba(0, 0, 0, .3);
        background: rgba(0, 0, 0, .4);
    }
    
    .s_producto{
        bottom: 0px;

    }

}
/**Small devices (landscape phones, 360px and up)**/
@media (min-width:360px){

     .content_general {
        position: relative;
        top: 50px;
        width: 100%;
        *height: 100vh;
        overflow-Y: auto;
        overflow-x: hidden;
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-content: flex-start;
        padding-bottom: 0px;
    }
    
    .div_content_product {
        position: relative;
        width: 100%;
        *height: 120%; 
        *background: rgba(0, 0, 0, .03);
        overflow: hidden;
        
    }

    .div_productos{
        width: 100%;
        *height: 120%;
        overflow: hidden;
    }
 
    .h_titulo{
        position: relative;
        width: 100%;
        top: 0;
        left: 20px;
        font-size: 1.7em;
        margin-top: 10px;
        color: #343F45;

    }

    .div_producto{
        position: relative;
        top: 10px;
        width: 90%;
        height: 200px;
        margin: 10px 0px;
        left: 0px;
        overflow: hidden;
        border-radius: 8px;
        border: 1px solid rgba(0, 0, 0, .3);
        background: rgba(0, 0, 0, .4);
    }
}

/**Small devices (landscape phones, 375px and up)**/
@media (min-width:375px){


}

/**Small devices (landscape phones, 390px and up)**/
@media (min-width:390px){
    .content_general {
        position: relative;
        top: 50px;
        width: 100%;
        *height: auto;
        overflow-Y: auto;
        overflow-x: hidden;
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-content: flex-start;
        padding-bottom: 0px;
    }
    
    .div_content_product {
        position: relative;
        width: 100%;
        *height: auto; 
        *background: rgba(0, 0, 0, .03);
        overflow: hidden;
        
    }

    .div_productos{
        width: 100%;
        *height: auto;
        overflow: hidden;
    }
    
 
    .h_titulo{
        position: relative;
        width: 100%;
        top: 0;
        left: 20px;
        font-size: 1.7em;
        margin-top: 10px;
        color: #343F45;

    }

    .div_producto{
        position: relative;
        top: 10px;
        width: 90%;
        height: 200px;
        margin: 10px 0px;
        left: 0px;
        overflow: hidden;
        border-radius: 8px;
        border: 1px solid rgba(0, 0, 0, .3);
        background: rgba(0, 0, 0, .4);
    }
    
    .bookmark{
        position: absolute;
        width: 150px;
        height: 20px;
        background: red;
        top: 30px;
        z-index: 1;
        left: -30px;
        transform: rotate(-45deg);
        color: aliceblue;
        font-size: 14px;
        text-align: center;
        
    }
   
    

    
    .s_producto{
        bottom: 0px;

    }

}

/**Small devices (landscape phones, 576px and up)**/
@media (min-width:576px){


}

/**Medium devices (tablets, 768px and up)*/
@media (min-width:720px){

    .content_general {
        position: relative;
        top: 50px;
        width: 100%;
        *height: 100vh;
        overflow-Y: auto;
        overflow-x: hidden;
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-content: flex-start;
        padding-bottom: 0px;
    }
    
    .div_content_product {
        position: relative;
        width: 100%;
        *height: 157%; 
        *background: rgba(0, 0, 0, .03);
        overflow: hidden;
        
    }

    .div_productos{
        width: 100%;
        *height: 181%;
    }
 
    .h_titulo{
        position: relative;
        width: 100%;
        top: 0;
        left: 20px;
        font-size: 1.7em;
        margin-top: 10px;
        color: #343F45;

    }

    .div_producto{
        position: relative;
        top: 10px;
        width: 45%;
        height: 200px;
        margin: 10px 10px;
        left: 0px;
        overflow: hidden;
        border-radius: 8px;
        border: 1px solid rgba(0, 0, 0, .3);
        background: rgba(0, 0, 0, .4);
    }
}
/**Medium devices (tablets, 768px and up)*/
@media (min-width:768px){

    .content_general {
        position: relative;
        top: 50px;
        width: 100%;
        *height: 100vh;
        overflow-Y: auto;
        overflow-x: hidden;
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-content: flex-start;
        padding-bottom: 0px;
    }
    
    .div_content_product {
        position: relative;
        width: 100%;
        *height: 157%; 
        *background: rgba(0, 0, 0, .03);
        overflow: hidden;
        
    }

    .div_productos{
        width: 100%;
        *height: 181%;
    }
 
    .h_titulo{
        position: relative;
        width: 100%;
        top: 0;
        left: 20px;
        font-size: 1.7em;
        margin-top: 10px;
        color: #343F45;

    }

    .div_producto{
        position: relative;
        top: 10px;
        width: 45%;
        height: 200px;
        margin: 10px 10px;
        left: 0px;
        overflow: hidden;
        border-radius: 8px;
        border: 1px solid rgba(0, 0, 0, .3);
        background: rgba(0, 0, 0, .4);
    }
}

/**Large devices (desktops, 992px and up)*/
@media (min-width:800px){

    .content_general {
        position: relative;
        top: 50px;
        width: 100%;
        *height: 100vh;
        overflow-Y: auto;
        overflow-x: hidden;
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-content: flex-start;
        padding-bottom: 0px;
    }
    
    .div_content_product {
        position: relative;
        width: 100%;
        *height: 157%; 
        *background: rgba(0, 0, 0, .03);
        overflow: hidden;
        
    }

    .div_productos{
        width: 100%;
        *height: 181%;
    }
    
    .s_producto{
        bottom: 0px;

    }
}
/**Large devices (desktops, 992px and up)*/
@media (min-width:810px){

    .content_general {
        position: relative;
        top: 50px;
        width: 100%;
        *height: 100vh;
        overflow-Y: auto;
        overflow-x: hidden;
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-content: flex-start;
        padding-bottom: 0px;
    }
    
    .div_content_product {
        position: relative;
        width: 100%;
        *height: 181%; 
        *background: rgba(0, 0, 0, .03);
        overflow: hidden;
        
    }

    .div_productos{
        width: 100%;
        *height: 181%;
    }
    
    .s_producto{
        bottom: 0px;

    }
}
/**Large devices (desktops, 992px and up)*/
@media (min-width:992px){

}

/**Extra large devices (large desktops, 1024px and up)*/
@media (min-width:1024px){

    
    .div_content_product {
        position: relative;
        width: 100%;
        *height: 141%; 
        *background: rgba(0, 0, 0, .03);
        overflow: hidden;
        
    }

    .div_productos{
        width: 100%;
        *height: 141%;
    }
 
    .h_titulo{
        position: relative;
        width: 100%;
        top: 0;
        left: 20px;
        font-size: 1.7em;
        margin-top: 10px;
        color: #343F45;

    }

    .div_producto{
        position: relative;
        top: 10px;
        width: 45%;
        height: 200px;
        margin: 10px 10px;
        left: 0px;
        overflow: hidden;
        border-radius: 8px;
        border: 1px solid rgba(0, 0, 0, .3);
        background: rgba(0, 0, 0, .4);
    }
}

/**Extra large devices (large desktops, 1200px and up)*/
@media (min-width:1200px){
   
}

/**Extra large devices (large desktops, 1280px and up)*/
@media (min-width:1280px){
     .div_content_product{
        position: relative;
        width: 100%;
        *height: 100vh;
        *background: rgba(0, 0, 0, .03);
    }

    .div_productos{
        position: relative;
        width: 70%;
        *height: 100vh;
        left: 50%;
        transform: translate(-50%);
        background: #fff;
        overflow-Y: auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        justify-items: flex-start;
        align-content: flex-start;
        align-items: flex-start;
    }

    .div_producto{
        position: relative;
        top: 10px;
        width: 30%;
        height: 200px;
        margin: 10px;
        left: 15px;
        overflow: hidden;
        border-radius: 8px;
        border: 1px solid rgba(0, 0, 0, .3);
        background: rgba(0, 0, 0, .4);
    }

    .s_producto{
        position: absolute;
        width: 100%;
        height: 58%;
        background: rgba(0, 0, 0, .3);
        bottom: -116px;
        text-align: left;
        padding: 10px;
        font-size: 18px;
        font-weight: 700;
        color: aliceblue;
        transition: all .3s ease;
        cursor: pointer;
    }

    .varita{
        position: absolute;
        top: -35%;
        left: 50%;
        transform: translate(-50%);
        text-align: center;
        width: 45px;
        height: 40px;
        background: rgba(0, 0, 0, .3);
        border-radius: 50% 50% 0 0;
        line-height: 50px;
        font-weight: 500;
        font-size: 20px;



    }

    .div_producto:hover .s_producto{
        bottom: 0px;

    }

    .img_producto{
        position: absolute;
        width: 100%;
        height: 100%;
        
    }

    .l_precio{
        font-size: 21px;
        position: absolute;
        bottom: 7px;
    }

    .i_comprar{
        position: absolute;
        right: 10px;
        cursor: pointer;
        z-index: 2;
        font-size: 25px;
        top: 85%;
        transform: translateY(-50%);
    }

    .h_aviso_producto{
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        color: red;
        font-size: 60px;
        width: 100%;
        text-align: center;
    }

    .l_presale{
        position: absolute;
        top: 64%;
        left: 50%;
        transform: translate(-50%);
        color: red;
        font-size: 24px;
    }

    .h_titulo{
        position: relative;
        width: 100%;
        left: 30px;
        font-size: 35px;
        margin-top: 10px;
        color: #343F45;

    }
   
}


/**Extra large devices (large desktops, 1440px and up)*/
@media (min-width:1440px){
     .div_content_product{
        position: relative;
        width: 100%;
        *height: 108vh;
        *background: rgba(0, 0, 0, .03);
         
    }
    
    

    .div_productos{
        position: relative;
        width: 70%;
        *height: 104vh;
        left: 50%;
        transform: translate(-50%);
        background: #fff;
        overflow-Y: auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        justify-items: flex-start;
        align-content: flex-start;
        align-items: flex-start;
    }

    .div_producto{
        position: relative;
        top: 10px;
        width: 23%;
        height: 200px;
        margin: 10px;
        left: 15px;
        overflow: hidden;
        border-radius: 8px;
        border: 1px solid rgba(0, 0, 0, .3);
        background: rgba(0, 0, 0, .4);
    }

    .s_producto{
        position: absolute;
        width: 100%;
        height: 58%;
        background: rgba(0, 0, 0, .3);
        bottom: -116px;
        text-align: left;
        padding: 10px;
        font-size: 18px;
        font-weight: 700;
        color: aliceblue;
        transition: all .3s ease;
        cursor: pointer;
    }

    .varita{
        position: absolute;
        top: -35%;
        left: 50%;
        transform: translate(-50%);
        text-align: center;
        width: 45px;
        height: 40px;
        background: rgba(0, 0, 0, .3);
        border-radius: 50% 50% 0 0;
        line-height: 50px;
        font-weight: 500;
        font-size: 20px;



    }

    .div_producto:hover .s_producto{
        bottom: 0px;

    }

    .img_producto{
        position: absolute;
        width: 100%;
        height: 100%;
        
    }

    .l_precio{
        font-size: 21px;
        position: absolute;
        bottom: 7px;
    }

    .i_comprar{
        position: absolute;
        right: 10px;
        cursor: pointer;
        z-index: 2;
        font-size: 25px;
        top: 85%;
        transform: translateY(-50%);
    }

    .h_aviso_producto{
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        color: red;
        font-size: 60px;
        width: 100%;
        text-align: center;
    }

    .l_presale{
        position: absolute;
        top: 64%;
        left: 50%;
        transform: translate(-50%);
        color: red;
        font-size: 24px;
        width: 100%;
        text-align: right;
        padding-right: 10px;
    }

    .h_titulo{
        position: relative;
        width: 100%;
        left: 30px;
        font-size: 35px;
        margin-top: 10px;
        color: #343F45;

    }

}
