.ribbon {
    position: absolute;
    left: -5px;
    top: -5px;
    z-index: 9999999;
    overflow: hidden;
    width: 75px;
    height: 75px;
    text-align: right;
}

.ribbon.blue span {
    background: #2E2EFF;
    background: linear-gradient(#2E2EFF 0%, #0404C1 100%);
    box-shadow: 0 3px 10px -5px rgba(0, 0, 0, 1);
}
.ribbon span {
    font-size: 15px;
    font-weight: 600;
    color: #FFF;
    text-transform: uppercase;
    text-align: center;
    line-height: 26px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    width: 103px;
    display: block;
    background: #79A70A;
    box-shadow: 0 3px 10px -5px rgba(0, 0, 0, 1);
    position: absolute;
    top: 16px;
    right: -5px;
}


.wrapRibbons{
    z-index: 11;
    position: absolute;
    top: 4px;
    width: 100%;
}

.ribbonLazo {
    /*position: absolute;*/
    /*left: 10px;*/
    /*top: -5px;*/

    overflow: hidden;
    padding: 0 !important;
    width: 75px;
    height: 75px;
    text-align: right;
}
.ribbonLazo span {
    font-size: 9px;
    font-weight: bold;
    color: #FFF;
    text-transform: uppercase;
    text-align: center;
    line-height: 9px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    width: 100px;
    display: block;
    background: #79A70A;
    /*background: linear-gradient(#F70505 0%, #8F0808 100%);*/
    /*box-shadow: 0 3px 10px -5px rgba(0, 0, 0, 1);*/
    position: absolute;
    top: 19px;
    right: -5px;
}


.ribbonLazo span::before {
    content: "";
    position: absolute; left: 0px; top: 100%;
    z-index: -1;
    border-left: 3px solid #8F0808;
    border-right: 3px solid transparent;
    border-bottom: 3px solid transparent;
    border-top: 3px solid #8F0808;
}
.ribbonLazo span::after {
    content: "";
    position: absolute; right: 0px; top: 100%;
    z-index: -1;
    border-left: 3px solid transparent;
    border-right: 3px solid #8F0808;
    border-bottom: 3px solid transparent;
    border-top: 3px solid #8F0808;
}


.ribbonLazo.blue span{
    background: #2E2EFF;
    background: linear-gradient(#2E2EFF 0%, #0404C1 100%);
    /*box-shadow: 0 3px 10px -5px rgba(0, 0, 0, 1);*/    
}
.ribbonLazo.blue span::before{
    border-right: 3px solid transparent;
    border-bottom: 3px solid transparent;
    border-top: 3px solid #1e5799;
}
.ribbonLazo.blue span::after{
    border-left: 3px solid transparent;
    border-right: 3px solid #1e5799;
    border-bottom: 3px solid transparent;
    border-top: 3px solid #1e5799;
}


.ribbonLazo.orange span{
    background: #E0A03A;
    background: linear-gradient(#DB9B3B 0%, #BF8124 100%);
    /*box-shadow: 0 3px 10px -5px rgba(0, 0, 0, 1);*/    
}
.ribbonLazo.orange span::before{
    border-right: 3px solid transparent;
    border-bottom: 3px solid transparent;
    border-top: 3px solid #DD9323;
}
.ribbonLazo.orange span::after{
    border-left: 3px solid transparent;
    border-right: 3px solid #DD9323;
    border-bottom: 3px solid transparent;
    border-top: 3px solid #DD9323;
}

.ribbonLazo.red span{
    background: #ff0000;
    background: linear-gradient(#ff0000 0%, #af0000 100%);
    /*box-shadow: 0 3px 10px -5px rgba(0, 0, 0, 1);*/
    line-height: 9px;
    font-weight: bold;
    padding: 2px 0;
}
.ribbonLazo.red span::before{
    border-right: 3px solid transparent;
    border-bottom: 3px solid transparent;
    border-top: 3px solid #DD9323;
}
.ribbonLazo.red span::after{
    border-left: 3px solid transparent;
    border-right: 3px solid #DD9323;
    border-bottom: 3px solid transparent;
    border-top: 3px solid #DD9323;
}



.ribbonCircle{
    width: 48px;
    height: 48px;
    border-radius: 30px;
    background: #fff;
    color: #000;
    font-size: 10px;
    /*box-shadow: 2px 2px 6px rgba(0,0,0,0.3);*/
    line-height: 42px;
    margin-right: 4px;
    margin-bottom: 4px;
    text-align: center;
    font-weight: bold;
    font-family: 'OpenSansBold', Arial, Helvetica, sans-serif;
}

.ribbonCircle span {
    display: inline-block;
    vertical-align: middle;
    /* line-height: normal; */
    line-height: 11px;
}
.ribbonCircle.blue{
    background: rgba(0, 123, 192, 0.74);
    color: #fff;
    font-size: 11px;
}
.ribbonCircle.green{
    background: rgba(0, 174, 43, 0.83);
    color: #fff;
    font-size: 11px;
}
.ribbonCircle.red{
    background: #ffc4c4;
    color: #000;
    border: 1px solid #ff7575;
}

.ribbonCircle.yellow{
    background: #f2b134;
    color: #fff;

}

.wrapRibbon{
    position: absolute;
    right: 0;
}
.wrapRibbon.right{
    right: 0;
    top: 0;
    left: auto;   
}

.wrapRibbon .ribbonTriangle {
    width: 0;
    height: 0;
    border-top: 72px solid orange;
    border-right: 72px solid transparent;
}

.wrapRibbon.right .ribbonTriangle{
    border-right: none;
    border-left: 72px solid transparent;
}

.wrapRibbon.right .ribbonTriangle > span{
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
.wrapRibbon.right.shipping .ribbonTriangle > span{
    line-height: 11px;
    top: 14px;
    font-size: 11px;
    color: #fff;
    left: 14px;
}

.wrapRibbon.right.shipping .ribbonTriangle{
    border-top-color: #6aca1e;  
}

.wrapRibbon.left.novedad .ribbonTriangle > span{
    line-height: 11px;
    font-size: 11px;
    color: #fff;
    -webkit-transform: rotate(313deg);
    -moz-transform: rotate(313deg);
    -o-transform: rotate(313deg);
    transform: rotate(313deg);
    top: 20px;
}

.wrapRibbon.left.novedad .ribbonTriangle{
    /*border-top-color: #6aca1e;*/  
}

.wrapRibbon.right.promocion .ribbonTriangle{
    border-top-color: #f06b1b;
    color: #fff;

}
.wrapRibbon.right.promocion .ribbonTriangle > span{
    font-size: 10px;
    top: 21px;
    left: 13px;
}


.ribbonTriangle.lila {
    border-top-color: #8e2850;
    color: #fff;
}

.ribbonTriangle > span{
    -webkit-transform: rotate(319deg);
    -moz-transform: rotate(319deg);
    -o-transform: rotate(319deg);
    transform: rotate(319deg);
    display: block;
    position: absolute;
    left: -10px;
    top: 11px;
    width: 69px;
    font-weight: bold;
    font-size: 20px;
    text-align: center;
    color: #fff;
}


.blackfriday{
    width: 99px;
    height: 53px;
    text-indent: -9999px;
    background: url('etiqueta-pre-black.png') no-repeat;
}
.blackfriday.top{
    top: 16px;
}
.blackfriday.right{right: 0;left: auto;}
.blackfriday.left{right: auto;left: -8px;}


.ribbonRectangle{
    color: #fff;
    background: #999;
    padding: 2px 9px;
    /*position: absolute;*/
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 15px;
    -webkit-border-top-right-radius: 5px;
    -webkit-border-bottom-right-radius: 5px;
    -moz-border-radius-topright: 5px;
    -moz-border-radius-bottomright: 5px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.ribbonRectangle.right{
    -webkit-border-top-right-radius: 0px;
    -webkit-border-bottom-right-radius: 0px;
    -moz-border-radius-topright: 0px;
    -moz-border-radius-bottomright: 0px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;    
    -webkit-border-top-left-radius: 5px;
    -webkit-border-bottom-left-radius: 5px;
    -moz-border-radius-toleft: 5px;
    -moz-border-radius-bottomleft: 5px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;    
}

.ribbonRectangle.red{
    background: #e21e3a;
    /* font-weight: bold; */
}
.ribbonRectangle.green{
    background: #8bc12b;
}
.ribbonRectangle.yellow{
    background: #ffbe14;
}
.ribbonRectangle.blue {
    background: #03A9F4;
}
.ribbonRectangle.top{
    /*top: 52px;*/
}
.ribbonRectangle.bottom{}
.ribbonRectangle.left{
    left: -1px;
}
.ribbonRectangle.right{}


@media (max-width: 575px){
    .ribbonRectangle{
        font-size: 9px;
        padding: 1px 4px;
        line-height: 10px;
    }
}
