.is-style-img-border-small img {
  border: 1px solid #B3B3B3;
}
.is-style-img-border-crossed {
  position: relative;
  overflow: hidden;
}

.is-style-img-border-crossed:before {
    position: absolute;
    content: '';
    background: #E9505F;
    display: block;
    width: 100%;
    height: 2px;
    -webkit-transform: rotate(-15deg);
    transform: rotate(-15deg);
    //center the X vertically and horizontally:
    left: 0;
    right: 0;
    top: -20px;
    bottom: 0;
    margin: auto;
}
