.ribbon-wrapper {
    width: 100px;
    height: 100px;
    position: absolute;
    top: -13px;
    right: -13px;
    overflow: hidden;
}
.ribbon-content {
    font-size: 9pt;
    font-weight: bold;
    font-family: Florence, cursive;
    color: black;
    text-align: center;
    padding: 0px 0;
    transform: rotate(45deg);
    width: 130px;
    position: relative;
    top: 15px;
    left: 1px;
    /*box-shadow: 0 0 2px 1px rgba(0,0,0,0.5);*/
    text-shadow: 0 1px 0 rgba(255,255,255,0.5);
}
.ribbon-content:before,
.ribbon-content:after {
    content: "";
    border-top: 2px solid #81a400;
    border-left: 2px solid transparent;
    border-right: 2px solid transparent;
    position: absolute;
    bottom: -2px;
}
.ribbon-content:before {
    left: 0;
}
.ribbon-content:after {
    right: 0;
}