﻿

.rs-content {
    position: relative;
}

.rs-content-img {
    clear: both;
}

.rs-content-html {
    width: 100%;
}

.banner-quote {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.banner-quote blockquote {
    font-weight: 100;
    font-size: 2rem;
    line-height: 1.4;
    position: relative;
    margin: 0;
    padding: .5rem;
    border-left: none;
}

.banner-quote blockquote:before,
.banner-quote blockquote:after {
    position: absolute;
    color: rgb(207, 206, 206);
    font-size: 75pt;
    width: 4rem;
    height: 4rem;
    font-family: arial !important;
    font-weight: 900;
}

.banner-quote blockquote:before {
    content: '“';
    left: -7.5rem;
    top: -4rem;
}

.banner-quote blockquote:after {
    content: '”';
    right: -2rem;
    bottom: 0;
}

.banner-quote cite {
    line-height: 1.3;
    text-align: left;
}
/* START Testimonial Template */
img.portrait {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.testimonial .quote {
    font-style: italic;
}

.testimonial .cite {
    padding-bottom: 30px;
}

.testimonial .cite .title {
    font-size: 12px;
    color: dimgrey;
}
/* END Testimonial Templates */

/* START Banner Templates */
.banner {
    width: 100%;
    position: relative;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover !important;
}

.banner-title {
    color: #f5dd0b;
    font-size: 2.75em;
    padding: 25px 20px 25px 30px;
}

.banner-subtitle {
    color: #F4DBC7;
    font-size: 1.5em;
    padding: 25px 20px 25px 30px;
}
/* END Banner Templates */
/* START Align Templates */
.align-center,
.align-center > * {
    text-align: center;
    align-items: center;
    justify-content: center;
}

.align-left,
.align-left > * {
    text-align: left;
    align-items: left;
    justify-content: left;
}

.align-right,
.align-right > * {
    text-align: right;
    align-items: right;
    justify-content: right;
}

h3.title,
h4.title {
    color: #653321;
}
/* END Align Templates */
/* START Content-Header Templates */
div.content-header {
    margin: 10px 0 10px 0;
}
/* END Content-Header Templates */

.rendersite-block {
    /*min-height: 48px; */
    position: relative;
}

.video-wrapper {
    width: 100%;
    /* whatever width you want */
    display: inline-block;
    position: relative;
}

.video-wrapper:after {
    padding-top: 56.25%;
    /* 16:9 ratio */
    display: block;
    content: '';
}

.video-content {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    /* fill parent */
    /* let's see it! */
    color: white;
}


ul.checkmark {
    list-style: none;
    padding-left: 0;
    counter-reset: foo;
    display: table;
}

ul.checkmark li {
    counter-increment: foo;
    display: table-row;
}

ul.checkmark li:before {
    content: '✓';
    padding-right: 12px;
    color: #d67533;
    font-weight: bolder;
    font-size: 125%;
    display: table-cell; /* aha! */
}