/* LEFT */
.lribbon {
  position: absolute;
  left: 10px; top: -5px;
  z-index: 1;
  overflow: hidden;
  width: 75px; height: 75px;
  text-align: right;
}
.lribbon 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; left: -21px;
}
.lribbon span::before {
  content: "";
  position: absolute; left: 0px; top: 100%;
  z-index: -1;
  border-right: 3px solid transparent;
  border-bottom: 3px solid transparent;
 }
.lribbon span::after {
  content: "";
  position: absolute; right: 0px; top: 100%;
  z-index: -1;
  border-left: 3px solid transparent;
  border-bottom: 3px solid transparent;
} 

/* RIGHT*/
.rribbon {
  position: absolute;
  right: 10px; top: -5px;
  z-index: 1;
  overflow: hidden;
  width: 75px; height: 75px;
  text-align: right;
}
.rribbon 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;
}
.rribbon span::before {
  content: "";
  position: absolute; left: 0px; top: 100%;
  z-index: -1;
  border-right: 3px solid transparent;
  border-bottom: 3px solid transparent;
}
.rribbon span::after {
  content: "";
  position: absolute; right: 0px; top: 100%;
  z-index: -1;
  border-left: 3px solid transparent;
  border-bottom: 3px solid transparent;
}

/* COLORS */
.rblue span {
  background: #1e5799;
  background: linear-gradient(#2989d8 0%, #1e5799 100%);
}
.rblue span::before {
  border-left: 3px solid #1e5799;
  border-top: 3px solid #1e5799;
}
.rblue span::after {
  border-right: 3px solid #1e5799;
  border-top: 3px solid #1e5799;
}

.rred span {
  background: #8F0808;
  background: linear-gradient(#F70505 0%, #8F0808 100%);
}
.rred span::before {
  border-left: 3px solid #8F0808;
  border-top: 3px solid #8F0808;
}
.rred span::after {
  border-right: 3px solid #8F0808;
  border-top: 3px solid #8F0808;
}

.rgreen span {
  background: #108F0B;
  background: linear-gradient(#46ED1C 0%, #108F0B 100%);
}
.rgreen span::before {
  border-left: 3px solid #108F0B;
  border-top: 3px solid #108F0B;
}
.rgreen span::after {
  border-right: 3px solid #108F0B;
  border-top: 3px solid #108F0B;
}

.ryellow span {
  background: #C7630C;
  background: linear-gradient(#FFA305 0%, #C7630C 100%);
}
.ryellow span::before {
  border-left: 3px solid #C7630C;
  border-top: 3px solid #C7630C;
}
.ryellow span::after {
  border-right: 3px solid #C7630C;
  border-top: 3px solid #C7630C;
}