<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('http://font.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&amp;display=swap');


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins',sans-serif;
}

body{
    min-height: 100vh;
    /**background: #d89d44;*/
}

.popup{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    display: none;




    border-radius: 43px 43px 43px 43px;
    -moz-border-radius: 43px 43px 43px 43px;
    -webkit-border-radius: 43px 43px 43px 43px;
    border: 0px solid #000000;
    
    
    /*-webkit-box-shadow: 10px 10px 44px 27px rgba(0,0,0,0.84);
-moz-box-shadow: 10px 10px 44px 27px rgba(0,0,0,0.84);
box-shadow: 10px 10px 44px 27px rgba(0,0,0,0.84);*/
}


/*CONTENIDO DEL POPUP*/
.contentBox{
    position: relative;
    width: 600px;
    height: 400px;
    background-color: rgb(255, 255, 255);
    border-radius: 20px;
    display: flex;
    /*box-shadow: 0 5px 15px rgba(0,0,0,0.1);*/
}


.contentBox .ingBx{
    position: relative;
    width: 300px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/*circulo que envuelve la imagen de carne*/
.contentBox .ingBx::before{
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background: #fdfcfc;
    border-radius: 50%;

}

/*imagen*/
.contentBox .ingBx img{
    position: relative;
    max-width: 350px;
    z-index: 1;
}


/**/
.contentBox .content{
    position: relative;
    width: 300px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/*controla el estilo del titulo h3*/
.contentBox .content h3{
    color: #f8b117;
    line-height: 1em;
    font-weight: 600;
    font-size: 70px;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    /*text-shadow: 0.1em 0em 0.1em rgb(100, 97, 97);*/
}
/*controla el estilo del titulo h1*/
.contentBox .content h1{
    color: #333;
    line-height: 2em;
    font-weight: 400;
    font-size: 2.5em;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    /*text-shadow: 0.1em 0em 0.1em rgb(155, 152, 152);*/
}


/*controla el estilo de la oferta 10%*/
.contentBox .content h2{
    font-size: 4em;
    color: #ff0008;
    line-height: 1em;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    /*text-shadow: 0.01em 0.0em 0.0em rgb(138, 136, 136);*/
}

/*controla el estilo de la oferta "OFF"*/
.contentBox .content h2 span{
     color: #333;
     font-size: 0.7em;
     text-transform: uppercase;
     font-weight: 400;
     font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}

/*controla elestilo de los parrafos*/
.contentBox .content p{
     font-weight: 300;
     line-height: 1.5em;
     font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}


/*controla el estilo del link "ver oferta"*/
.contentBox .content a{
    display: inline-block;
    padding: 10px 20px;
    background: #ff4d54;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;

}


.close1{
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    /*background-image: url(../vistas/img/closeS.png) ;*/
    background-color: #c5c1c1;
    background-repeat: no-repeat;
    background-size: 10px;
    background-position: center;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
}




/*responsive*/

@media(max-width : 767px)
{
    .contentBox
    {
        width: 300px;
        height: auto;
        flex-direction: column;
    }

    .contentBox .ingBx
    {
        height: 200px;
        transform: translateY(-50px);
    }

    .contentBox .ingBx::before
    {
        background: #fff;
    }

    .contentBox .content
    {
        height: auto;
        text-align: center;
        padding: 20px;
        padding-top: 0;
    }

    .close1
    {
        top: -50px;
        right: -10px;
        /*background: rgb(134, 133, 133) url(\ecommerce\vistas\img\closeS.png) ;*/
        background-color: #c5c1c1;
        background-repeat: no-repeat;
        background-size: 10px;
        background-position: center;
    }
}</pre></body></html>