.ribbon {
    position: absolute;
    /*right: 10px;
    top: -5px;*/
    right: 15px;
    top: 0px;
    z-index: 1;
    overflow: hidden;
    width: 75px;
    height: 75px;
    text-align: right;
}

/* SOLD OUT*/
.status-5 {
    background: #F70505;
  /*  background: linear-gradient(#F70505 0%, #8F0808 100%); */
}

/* AVAILABLE */
.status-1 {
    background: #9BC90D;
    /* background: linear-gradient(#9BC90D 0%, #79A70A 100%); */
}

/* PRE ORDER */
.status-2 {
    background: #F79E05;
    /* background: linear-gradient(#F79E05 0%, #8F5408 100%); */
}

/* NOT AVAILABLE */
.status-3 {
    background: #B6BAC9;
    /* background: linear-gradient(#B6BAC9 0%, #808080 100%); */
}

/* OUT OF STOCK */
.status-4 {
    background: #05EFF7;
    /* background: linear-gradient(#05EFF7 0%, #087F8F 100%); */
}


.ribbon span {
    font-size: 10px;
    font-weight: bold;
    color: #FFF;
    text-transform: uppercase;
    text-align: center;
    line-height: 20px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    width: 100px;
    display: block;
    /* box-shadow: 0 3px 10px -5px rgba(0, 0, 0, 1); */
    position: absolute;
    top: 19px; right: -21px;
}
.ribbon span::before {
    content: "";
    position: absolute; left: 0px; top: 100%;
    z-index: -1;
    /*border-left: 3px solid #8F5408;
    border-right: 3px solid transparent;
    border-bottom: 3px solid transparent;
    border-top: 3px solid #8F5408;*/
}
.ribbon span::after {
    content: "";
    position: absolute; right: 0px; top: 100%;
    z-index: -1;
    /*border-left: 3px solid transparent;
    border-right: 3px solid #8F5408;
    border-bottom: 3px solid transparent;
    border-top: 3px solid #8F5408;*/
}