&.effect-sadie {
    .rbs-img-thumbs {
        figcaption::before {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: -webkit-linear-gradient(top, rgba(72, 76, 97, 0) 0%, rgba(72, 76, 97, 0.8) 75%);
            background: linear-gradient(to bottom, rgba(72, 76, 97, 0) 0%, rgba(72, 76, 97, 0.8) 75%);
            content: '';
            opacity: 0;
            -webkit-transform: translate3d(0, 50%, 0);
            transform: translate3d(0, 50%, 0);
        }

        h2 {
            position: absolute;
            top: 50%;
            left: 0;
            width: 100%;
            -webkit-transition: -webkit-transform 0.35s, color 0.35s;
            transition: transform 0.35s, color 0.35s;
            -webkit-transform: translate3d(0, -50%, 0);
            transform: translate3d(0, -50%, 0);
        }

        figcaption::before,
        p {
            -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
            transition: opacity 0.35s, transform 0.35s;
        }

        p {
            position: absolute;
            bottom: 0;
            left: 0;
            padding: 2em;
            width: 100%;
            opacity: 0;
            -webkit-transform: translate3d(0, 10px, 0);
            transform: translate3d(0, 10px, 0);
        }

        &:hover {
            h2 {
                -webkit-transform: translate3d(0, -50%, 0) translate3d(0, -1.7em, 0);
                transform: translate3d(0, -50%, 0) translate3d(0, -1.7em, 0);
            }

            figcaption::before,
            p {
                opacity: 1;
                -webkit-transform: translate3d(0, 0, 0);
                transform: translate3d(0, 0, 0);
            }
        }
    }

    &.effect-min {
        .rbs-img-thumbs {
            font-size: 7px;

            p {
                display: none;
            }
        }
    }

    &.effect-150 {
        .rbs-img-thumbs {
            font-size: 8px;
        }
    }

    &.effect-200 {
        .rbs-img-thumbs {
            font-size: 11px;
        }
    }

    &.effect-270 {
        .rbs-img-thumbs {
            font-size: 14px;
        }
    }

    &.effect-360 {
        .rbs-img-thumbs {
            font-size: 16px;
        }
    }

    &.effect-500 {
        .rbs-img-thumbs {
            font-size: 18px;
        }
    }
}