/*
 * Responsive (width) size notes
 *
 * Description  Min     Max     Container   Body Class (added by JavaScript)
 * -------------------------------------------------------------
 * smallest     0       479     310         device-xxs
 * handheld     480     767     470         device-xs
 * tablet       768     991     750         device-sm
 * laptop       992     1199    970         device-md
 * desktop      1200    10000   1170        device-lg
 *
*/

/*
 * Layout
*/

#wrapper {
    overflow: hidden;
}

/* additional xs 15px margin size following Canvas patterns */
.allmargin-xs { margin: 15px !important; }
.leftmargin-xs { margin-left: 15px !important; }
.rightmargin-xs { margin-right: 15px !important; }
.topmargin-xs { margin-top: 15px !important; }
.bottommargin-xs { margin-bottom: 15px !important; }
.clear-bottommargin-xs { margin-bottom: -15px !important; }

.container-smaller,
.container-maxwidth {
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
    position: relative;
}
.container-smaller {
    width: 50%;
}
.container-maxwidth {
    width: 100%;
    max-width: 1600px;
}

body.stretched .container,
body.stretched .container-headerwidth {
    padding: 0 15px;
    margin: 0 auto;
}

@media (min-width: 480px) {
    body.stretched .container-headerwidth {
        width: 470px;
    }
    .container-smaller {
        width: 270px;
    }
}

@media (min-width: 560px) {
    .container-smaller {
        width: 310px;
    }
}

@media (min-width: 768px) {
    body.stretched .container-headerwidth {
        width: 750px;
    }
    .container-smaller {
        width: 470px;
    }
}

@media (min-width: 991.0000000001px) {
    body.stretched .container-headerwidth {
        width: 970px;
    }
    .container-smaller {
        width: 750px;
    }
}

@media (min-width: 1120px) and (max-width: 1199px) {
    body.stretched .container-headerwidth {
        width: 100%;
    }
}

@media (min-width: 1200px) {
    body.stretched .container-headerwidth {
        width: 1170px;
    }
    .container-smaller {
        width: 970px;
    }
}

@media (min-width: 1360px) {
    body.stretched .container-headerwidth {
        width: 1310px;
        padding: 0 30px;
    }
    .container-smaller {
        width: 1170px;
    }
}

@media (min-width: 1480px) {
    body.stretched .container-headerwidth {
        width: 100%;
        max-width: 1900px;
    }
    body.stretched .container-headerwidth {
        padding: 0 100px;
    }
}

@media (min-width: 1600px) {
    body.stretched .container-headerwidth {
        width: 100%;
        padding: 0 100px;
    }
    .breadcrumb {
        padding-right: 15px !important;
        right: 0 !important;
    }
}

/* auto-clear helpers for grids. place auto-clear class on parent of items.
 * items need a col- class for each of the sizes for this to work properly,
 * although full width sizes can be skipped.
*/
@media (min-width:1200px) {
    .auto-clear .col-lg-1:nth-child(12n+1)  { clear: left; }
    .auto-clear .col-lg-2:nth-child(6n+1)   { clear: left; }
    .auto-clear .col-lg-3:nth-child(4n+1)   { clear: left; }
    .auto-clear .col-lg-4:nth-child(3n+1)   { clear: left; }
    .auto-clear .col-lg-6:nth-child(odd)    { clear: left; }
}
@media (min-width:992px) and (max-width:1199px) {
    .auto-clear .col-md-1:nth-child(12n+1)  { clear: left; }
    .auto-clear .col-md-2:nth-child(6n+1)   { clear: left; }
    .auto-clear .col-md-3:nth-child(4n+1)   { clear: left; }
    .auto-clear .col-md-4:nth-child(3n+1)   { clear: left; }
    .auto-clear .col-md-6:nth-child(odd)    { clear: left; }
}
@media (min-width:768px) and (max-width:991px) {
    .auto-clear .col-sm-1:nth-child(12n+1)  { clear: left; }
    .auto-clear .col-sm-2:nth-child(6n+1)   { clear: left; }
    .auto-clear .col-sm-3:nth-child(4n+1)   { clear: left; }
    .auto-clear .col-sm-4:nth-child(3n+1)   { clear: left; }
    .auto-clear .col-sm-6:nth-child(odd)    { clear: left; }
}
@media (max-width:767px) {
    .auto-clear .col-xs-1:nth-child(12n+1)  { clear: left; }
    .auto-clear .col-xs-2:nth-child(6n+1)   { clear: left; }
    .auto-clear .col-xs-3:nth-child(4n+1)   { clear: left; }
    .auto-clear .col-xs-4:nth-child(3n+1)   { clear: left; }
    .auto-clear .col-xs-6:nth-child(odd)    { clear: left; }
}

/* debugging aids */
.test-grid-cell {
    border-left: 15px solid blue;
    border-right: 15px solid red;
    border-bottom: 1px solid black;
    border-top: 1px solid black;
}

/* column gutter modifiers (default gutter is 30px)*/

/* 0 */
.row.gutter-0 {
    margin-left: 0;
    margin-right: 0;
}
.mce-visualblocks.tinymce-textarea .row.gutter-0,
.mce-visualblocks.mce-edit-focus .row.gutter-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
}
.row.gutter-0 > .bs-col,
.row.gutter-0 > .bs-col10 {
      padding-left: 0;
      padding-right: 0;
}

/* 10 */
.row.gutter-10 {
    margin-left: -5px;
    margin-right: -5px;
}
.mce-visualblocks.tinymce-textarea .row.gutter-10,
.mce-visualblocks.mce-edit-focus .row.gutter-10 {
    margin-left: -5px !important;
    margin-right: -5px !important;
}
.row.gutter-10 > .bs-col,
.row.gutter-10 > .bs-col10 {
      padding-left: 5px;
      padding-right: 5px;
}

/* 12 */
.row.gutter-12 {
    margin-left: -6px;
    margin-right: -6px;
}
.mce-visualblocks.tinymce-textarea .row.gutter-12,
.mce-visualblocks.mce-edit-focus .row.gutter-12 {
    margin-left: -6px !important;
    margin-right: -6px !important;
}
.row.gutter-12 > .bs-col,
.row.gutter-12 > .bs-col10 {
      padding-left: 6px;
      padding-right: 6px;
}

/* 14 */
.row.gutter-14 {
    margin-left: -7px;
    margin-right: -7px;
}
.mce-visualblocks.tinymce-textarea .row.gutter-14,
.mce-visualblocks.mce-edit-focus .row.gutter-14 {
    margin-left: -7px !important;
    margin-right: -7px !important;
}
.row.gutter-14 > .bs-col,
.row.gutter-14 > .bs-col10 {
      padding-left: 7px;
      padding-right: 7px;
}

/* 16 */
.row.gutter-16 {
    margin-left: -8px;
    margin-right: -8px;
}
.mce-visualblocks.tinymce-textarea .row.gutter-16,
.mce-visualblocks.mce-edit-focus .row.gutter-16 {
    margin-left: -8px !important;
    margin-right: -8px !important;
}
.row.gutter-16 > .bs-col,
.row.gutter-16 > .bs-col10 {
      padding-left: 8px;
      padding-right: 8px;
}

/* 20 */
.row.gutter-20 {
    margin-left: -10px;
    margin-right: -10px;
}
.mce-visualblocks.tinymce-textarea .row.gutter-20,
.mce-visualblocks.mce-edit-focus .row.gutter-20 {
    margin-left: -10px !important;
    margin-right: -10px !important;
}
.row.gutter-20 > .bs-col,
.row.gutter-20 > .bs-col10 {
      padding-left: 10px;
      padding-right: 10px;
}

/* 30 */
.row.gutter-30 {
    margin-left: -15px;
    margin-right: -15px;
}
.mce-visualblocks.tinymce-textarea .row.gutter-30,
.mce-visualblocks.mce-edit-focus .row.gutter-30 {
    margin-left: -15px !important;
    margin-right: -15px !important;
}
.row.gutter-30 > .bs-col,
.row.gutter-30 > .bs-col10 {
      padding-left: 15px;
      padding-right: 15px;
}

/* 40 */
.row.gutter-40 {
    margin-left: -20px;
    margin-right: -20px;
}
.mce-visualblocks.tinymce-textarea .row.gutter-40,
.mce-visualblocks.mce-edit-focus .row.gutter-40 {
    margin-left: -20px !important;
    margin-right: -20px !important;
}
.row.gutter-40 > .bs-col,
.row.gutter-40 > .bs-col10 {
      padding-left: 20px;
      padding-right: 20px;
}

/* 50 */
.row.gutter-50 {
    margin-left: -25px;
    margin-right: -25px;
}
.mce-visualblocks.tinymce-textarea .row.gutter-50,
.mce-visualblocks.mce-edit-focus .row.gutter-50 {
    margin-left: -25px !important;
    margin-right: -25px !important;
}
.row.gutter-50 > .bs-col,
.row.gutter-50 > .bs-col10 {
      padding-left: 25px;
      padding-right: 25px;
}

/* 60 */
.row.gutter-60 {
    margin-left: -30px;
    margin-right: -30px;
}
.mce-visualblocks.tinymce-textarea .row.gutter-60,
.mce-visualblocks.mce-edit-focus .row.gutter-60 {
    margin-left: -30px !important;
    margin-right: -30px !important;
}
.row.gutter-60 > .bs-col,
.row.gutter-60 > .bs-col10 {
      padding-left: 30px;
      padding-right: 30px;
}

/* 70 */
.row.gutter-70 {
    margin-left: -35px;
    margin-right: -35px;
}
.mce-visualblocks.tinymce-textarea .row.gutter-70,
.mce-visualblocks.mce-edit-focus .row.gutter-70 {
    margin-left: -35px !important;
    margin-right: -35px !important;
}
.row.gutter-70 > .bs-col,
.row.gutter-70 > .bs-col10 {
      padding-left: 35px;
      padding-right: 35px;
}

/* 80 */
.row.gutter-80 {
    margin-left: -40px;
    margin-right: -40px;
}
.mce-visualblocks.tinymce-textarea .row.gutter-80,
.mce-visualblocks.mce-edit-focus .row.gutter-80 {
    margin-left: -40px !important;
    margin-right: -40px !important;
}
.row.gutter-80 > .bs-col,
.row.gutter-80 > .bs-col10 {
      padding-left: 40px;
      padding-right: 40px;
}


/*
 * Classes to maintain aspect ratio
*/

.ratio {
    padding: 100% 0 0 0; /* 1:1 aspect ratio*/
    position: relative;
}
.ratio-inner {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

/* various ratios calculated by height/width. (can also set padding-top inline or in element's CSS) */
.ratio-16-5 { padding-top:  31.25%  /* 16:5  aspect ratio */ }
.ratio-3-1  { padding-top:  33.333% /*  3:1  aspect ratio */ }
.ratio-16-7 { padding-top:  43.75%  /* 16:7  aspect ratio */ }
.ratio-2-1  { padding-top:  50.0%   /*  2:1  aspect ratio */ }
.ratio-9-5  { padding-top:  55.556% /*  9:5  aspect ratio */ }
.ratio-16-9 { padding-top:  56.25%  /* 16:9  aspect ratio */ }
.ratio-8-5  { padding-top:  62.5%   /*  8:5  aspect ratio */ }
.ratio-3-2  { padding-top:  66.667% /*  3:2  aspect ratio */ }
.ratio-4-3  { padding-top:  75.0%   /*  4:3  aspect ratio */ }
.ratio-5-4  { padding-top:  80.0%   /*  5:4  aspect ratio */ }

.ratio-1-1  { padding-top: 100.0%   /*  1:1  aspect ratio */ }

.ratio-4-5  { padding-top: 125.0%   /*  4:5  aspect ratio */ }
.ratio-3-4  { padding-top: 133.333% /*  3:4  aspect ratio */ }
.ratio-2-3  { padding-top: 150.0%   /*  2:3  aspect ratio */ }
.ratio-5-8  { padding-top: 160.0%   /*  5:8  aspect ratio */ }
.ratio-9-16 { padding-top: 177.778% /*  9:16 aspect ratio */ }
.ratio-5-9  { padding-top: 180.0%   /*  5:9  aspect ratio */ }
.ratio-1-2  { padding-top: 200.0%   /*  1:2  aspect ratio */ }
.ratio-7-16 { padding-top: 228.571% /*  7:16 aspect ratio */ }
.ratio-1-3  { padding-top: 300.0%   /*  1:3  aspect ratio */ }
.ratio-5-16 { padding-top: 320.0%   /*  5:16 aspect ratio */ }

/*
 * Images
*/

.css-image {
    height: 100%;
    background-size: 100%;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}

.css-image-cover {
    height: 100%;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}

.css-image-contain {
    height: 100%;
    background-size: contain;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}

/*
 * Global overrides, workarounds
*/

p,
pre,
ul,
ol,
dl,
dd,
blockquote,
address,
table,
fieldset,
form {
    margin-bottom: 15px;
}

.portfolio-overlay {
    background-color: rgba(0, 0, 0, 0.25);
}

/* iOS/Safari scroll workaround */
.scroll-wrapper {
    -webkit-overflow-scrolling: touch !important;
    overflow: auto !important;
}

.scroll-wrapper iframe {
    height: 100%;
    width: 100%;
}

a:hover {
    cursor: pointer;
}

/*
 * Header
*/

#header, #header-wrap, #logo img {
    height: 115px;
}

/* Padding change for sticky-header */
@media (min-width: 992px) {
    #header.sticky-header:not(.static-sticky):not(.sticky-style-2):not(.sticky-style-3) #logo img {
        padding-top: 12px;
        padding-bottom: 18px;
    }
}

/*
 * Logo
*/

#logo {
    margin-right: 0;
}

#logo img {
    padding-top: 25px;
    padding-bottom: 30px;
    -webkit-transition: height .4s ease, padding .4s ease, opacity .3s ease;
    -o-transition: height .4s ease, padding .4s ease, opacity .3s ease;
    transition: height .4s ease, padding .4s ease, opacity .3s ease;
}

/*
 * Primary Menu
*/

/* nevermind; this messes up calculated(?) sub-menus
#primary-menu ul ul:not(.mega-menu-column),
#primary-menu ul li .mega-menu-content {
    width: 230px;
}
*/

@media (min-width: 991.0000000001px) {
    #primary-menu {
        margin: 0 -10px;
        float: right;
    }
}

@media (min-width: 991.0000000001px) and (max-width: 1829.9999999999px) {
    #primary-menu .pm-9 {
        display: none;
    }
}
@media (max-width: 991px), (min-width: 1830px) {
    #primary-menu .pm-more .mm-9 {
        display: none;
    }
}

@media (min-width: 991.0000000001px) and (max-width: 1659.9999999999px) {
    #primary-menu .pm-8 {
        display: none;
    }
}
@media (max-width: 991px), (min-width: 1660px) {
    #primary-menu .pm-more .mm-8 {
        display: none;
    }
}

@media (min-width: 991.0000000001px) and (max-width: 1529.9999999999px) {
    #primary-menu .pm-7 {
        display: none;
    }
}
@media (max-width: 991px), (min-width: 1530px) {
    #primary-menu .pm-more .mm-7 {
        display: none;
    }
}

@media (min-width: 991.0000000001px) and (max-width: 1359.9999999999px) {
    #primary-menu .pm-6 {
        display: none;
    }
}
@media (max-width: 991px), (min-width: 1360px) {
    #primary-menu .pm-more .mm-6 {
        display: none;
    }
}

@media (min-width: 991.0000000001px) and (max-width: 1129.9999999999px) {
    #primary-menu .pm-5 {
        display: none;
    }
}
@media (max-width: 991px), (min-width: 1130px) {
    #primary-menu .pm-more .mm-5 {
        display: none;
    }
}

/* padding changes on primary menu items */
#primary-menu ul li > a {
    padding: 47px 10px;
    font-size: 14px;
}

/* disable transitions on the top level menu items, until I can figure out a better way
 * to fix their quirks
#primary-menu ul li > a {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
}
*/

@media (min-width: 992px) {
    #primary-menu ul li > a {
        -webkit-transition: height .4s ease, padding .4s ease, opacity .3s ease;
        -o-transition: height .4s ease, padding .4s ease, opacity .3s ease;
        transition: height .4s ease, padding .4s ease, opacity .3s ease;
    }
}

/*
 * sub-head / sub-items: #primary-menu sub headings/lists without popping up a sub-menu
 *
*/

#primary-menu ul ul .sub-head {
    border-top: 1px solid #EEE;
}
#primary-menu ul ul .sub-head:first-child {
    border-top: 0;
}
#primary-menu ul ul .sub-head > a {
    padding: 11px 5px;
    display: block;
    font-family: Lato, sans-serif;
    font-size: 13px;
    font-weight: 400;
}

#primary-menu ul ul .sub-head .sub-items {
    border-top: 1px solid #EEE;
    padding-left: 15px
}

@media (min-width: 992px) {
    #primary-menu ul ul .sub-head {
        border-top: 0;
        padding-left: 5px
    }

    #primary-menu ul ul .sub-head > a {
        text-transform: uppercase;
        font-family: Lato, sans-serif;
        font-size: 12px;
        font-weight: 400;
    }

    #primary-menu ul ul .sub-head .sub-items {
        border-top: 0;
    }
}


/*
 * Page Title
*/

#page-title {
    background-color: #f7eccc;
    color: #777777;
    border-bottom: 0;
}

#page-title.page-title {
    padding-top: 48px;
    padding-bottom: 32px;
}

#page-title.page-title h1,
#page-title.page-title-mini h1 {
    color: #739b3d;
    font-weight: 600;
    letter-spacing: 0;
}

#page-title span {
    font-weight: 300;
    margin-top: 1px;
}


.breadcrumb > li + li:before,
.breadcrumb a {
    color: #555555;
}

.breadcrumb {
    top: 75% !important;
}

/*
 * Footer
*/

.widget p {
    margin-bottom: 24px;
}

.widget p:last-child {
    margin-bottom: 0;
}

.dark .widget p {
    opacity: 1.0;
}

#footer.dark, .dark #footer {
    background-color: #90615c;
    border-top-color: #734d49;
    color: #ffffff;
}

.dark .widget > h4 {
    color: #f9e2bf;
    margin-bottom: 10px;
}
.dark .widget h5 {
    color: #ffffff;
}

.dark .widget a,
.dark .widget_nav_menu li a,
.dark .widget_links li a,
.dark .widget_meta li a,
.dark .widget_archive li a,
.dark .widget_recent_comments li a,
.dark .widget_recent_entries li a,
.dark .widget_categories li a,
.dark .widget_pages li a,
.dark .widget_rss li a {
    color: #ffffff;
}

.dark .widget a:hover,
.dark .widget_nav_menu li a:hover,
.dark .widget_links li a:hover,
.dark .widget_meta li a:hover,
.dark .widget_archive li a:hover,
.dark .widget_recent_comments li a:hover,
.dark .widget_recent_entries li a:hover,
.dark .widget_categories li a:hover,
.dark .widget_pages li a:hover,
.dark .widget_rss li a:hover {
    color: #cccccc;
}

.dark .spost .entry-title h4 a,
.dark .mpost .entry-title h4 a {
    color: #ffffff;
}

.dark .spost, .dark .mpost {
    border-top-color: #c6aeab;
}

.dark .entry-meta li {
    color: #dadada;
}

.dark .spost .entry-title h4 a:hover,
.dark .mpost .entry-title h4 a:hover {
    color: #cccccc;
}

.dark .widget .si-dark {
    color: #ffffff !important;
    background-color: #804b46 !important;
}

.dark .widget .social-icon {
    font-size: 15px;
}

.dark #copyrights {
    color: #ffffff;
    background-color: #333333;
    border-bottom: 8px solid #90615c;
}

.dark .copyright-links a {
    color: #ffffff;
    border-bottom: 0;
}

.dark .copyright-links a:hover {
    color: #cccccc;
    border-bottom: 0;
}

.dark .widget .input-group-addon,
.dark .widget .input-group-btn .btn-default {
    color: #fff;
    background-color: #804b46;
    border-color: #804b46;
}

.dark .widget .input-group-addon {
    color: #7f7f7f;
    background-color: #4a4747;
    border-color: #3c2925;
}

.dark .widget .input-group input {
    color: #666666;
    background-color: #e9dfde;
    border-color: #6b4844;
}

/* Constant Contact (CC) newsletter form overrides */
#footer .ctct-form-defaults {
    padding: 0;
}
#footer h2.ctct-form-header {
    font-size: 22px;
    line-height: 1em;
}
#footer .ctct-form-text {
    font-size: 14px;
}
#footer .ctct-form-required::before,
#footer .ctct-form-errorMessage {
    color: #f9e2bf !important;
}


/*
 * Alerts (Errors and Messages)
*/
.messages-wrap > .messages-padding {
    padding-top: 30px;
}
.messages-wrap > .messages-padding:only-child {
    display: none;
}
.messages-wrap > .alert:last-child {
    margin-bottom: 0;
}
.alert {
    margin-bottom: 10px;
}
.alert ul {
    list-style-position: inside;
}
.alert a:not(:hover):not(:focus) {
    color: inherit;
}
.alert span {
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
}

/*
 * Forms
*/

.edit-form-container {
    margin-left: auto;
    margin-right: auto;
}
@media (min-width: 768px) {
    .edit-form-container-670 {
        max-width: 670px;
    }
    .edit-form-container-770 {
        max-width: 770px;
    }
}
.form-control-static {
    line-height: 1.5 !important;
    font-size: 13px;
}

label.control-label {
    margin-bottom: 5px;
}
@media (max-width: 1199px) {
    .margin-bottom-15-md {
        margin-bottom: 15px;
    }
}

/* .btn-wrap is used to line up buttons horizontally and control margins between them */
.btn-wrap {
    margin-bottom: 15px;
}

.btn-wrap > :nth-child(1n+0) {
    float: left;
    margin-bottom: 7px;
    margin-right: 7px;
}

.form-shrink,
.btn-shrink {
    border: 0;
    margin: 0;
    padding: 0;
    display: inline-block;
    vertical-align: baseline;
    line-height: 1.0;
}

/*
 * Misc UI elements
*/

.divider.divider-large i {
    font-size: 25px !important;
    width: 25px;
    height: 25px;
}

.divider.divider-large:before,
.divider.divider-large:after {
    top: 11px;
}

.btn-read-more {
    border: 2px solid #ffffff;
    border-radius: 4px;
    padding: 12px 20px;
}
a.btn-read-more {
    color: #ffffff;
}
a:hover.btn-read-more,
a:focus.btn-read-more {
    background-color: #ffffff;
    color: #333333;
}

.btn-launch {
    background-color: #1abc9c;
    color: #ffffff;
    border-bottom: 3px solid #15967d;
    padding-left: 20px;
    padding-right: 20px;
}
a:hover.btn-launch,
a:focus.btn-launch {
    background-color: #15967d;
    border-bottom: 3px solid #15665d;
    color: #ffffff;
}

.btn-long-submit {
    width: 100%;
    background-color: #1abc9c;
    color: #ffffff;
    padding-left: 20px;
    padding-right: 20px;
}
.btn-long-submit:hover,
.btn-long-submit:focus {
    background-color: #15967d;
    color: #ffffff;
}


/*
 * Content Tools (edit/admin toolbar)
*/

#content-tools {
    padding-bottom: 10px;
}

#content-tools .tool-button {
    padding: 2px;
    font-size: 14px;
    color: #666;
}
#content-tools .tool-button:hover {
    color: #333;
}
#content-tools .tools-left {
    float: left;
    margin-left: -2px;
}
#content-tools .tools-right {
    float: right;
    margin-right: -2px;
}

/*
 * Image and File Browsers, modal dialogs
*/

/* shared modal features */

.modal-iframe {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-y: auto;
    overflow-x: hidden;
}
.modal-body.no-padding {
    padding: 0;
}
.modal-body.no-modal-footer {
    padding-bottom: 15px;
}

.browser-header,
.browser-body,
.browser-footer,
.upload-header,
.upload-body,
.upload-footer {
    padding: 15px;
}

#image-browser .modal-dialog,
#file-browser .modal-dialog,
.modal-dialog.modal-fixed,
.browser-wrapper,
.upload-wrapper {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    overflow-y: initial !important;
}

#image-browser .modal-content,
#file-browser .modal-content,
.modal-dialog.modal-fixed .modal-content,
.browser-content,
.upload-content
{
    height: 1px;
    min-height: 300px;
    max-height: 100%;
}

#image-browser .modal-body,
#file-browser .modal-body,
.modal-dialog.modal-fixed .modal-body,
.browser-body,
.upload-body
{
    height: 100px;
    overflow-x: hidden;
    overflow-y: auto;
}

#image-browser .modal-footer,
#file-browser .modal-footer,
.modal-dialog.modal-fixed .modal-footer,
.browser-footer,
.upload-footer
{
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: right;
}


/* image and file browser only */

#image-browser #image-browser-form,
#file-browser #file-browser-form {
    margin-bottom: -15px;
}

#image-browser .item-wrapper,
#file-browser .item-wrapper {
    padding: 12px;
}

#image-browser .item-wrapper:hover,
#image-browser .item-selected,
#file-browser .item-wrapper:hover,
#file-browser .item-selected {
    background-color: #e0e0e0;
}

#image-browser .portfolio-image,
#file-browser .portfolio-form {
    height: 200px;
}

#image-browser .portfolio-desc,
#file-browser .portfolio-desc {
    height: 80px;
}

#image-browser .portfolio-desc,
#image-browser .portfolio-desc h4,
#image-browser .portfolio-desc span,
#file-browser .portfolio-desc,
#file-browser .portfolio-desc h4,
#file-browser .portfolio-desc span {
    margin: 0;
    padding: 0;
}


#image-browser .btn-wrap-left,
#image-browser .btn-wrap-right,
#file-browser .btn-wrap-left,
#file-browser .btn-wrap-right {
    margin: 0;
}

#image-browser .btn-wrap-left > :nth-child(1n+0),
#file-browser .btn-wrap-left > :nth-child(1n+0) {
    float: left;
    margin-right: 7px;
}

#image-browser .btn-wrap-right > :nth-child(1n+0),
#file-browser .btn-wrap-right > :nth-child(1n+0) {
    margin-left: 7px;
}

@media (max-width: 479px) {
    #image-browser .btn-wrap-left > :nth-child(1n+0),
    #file-browser .btn-wrap-left > :nth-child(1n+0)
    {
        margin-bottom: 7px;
        margin-right: 0;
    }

    #image-browser .btn-wrap-right > :nth-child(1n+0),
    #file-browser .btn-wrap-right > :nth-child(1n+0)
    {
        margin-bottom: 7px;
        margin-left: 0;
    }

    #image-browser .btn-group,
    #image-browser .btn-wrap-left,
    #image-browser .btn-wrap-right,
    #image-browser .btn-wrap-right button,
    #file-browser .btn-group,
    #file-browser .btn-wrap-left,
    #file-browser .btn-wrap-right,
    #file-browser .btn-wrap-right button
    {
        width: 100%;
    }

    #image-browser .btn-wrap-left .btn-1,
    #file-browser .btn-wrap-left .btn-1
    {
        width: 90%;
    }

    #image-browser .btn-wrap-left .dropdown-toggle,
    #file-browser .btn-wrap-left .dropdown-toggle
    {
        width: 10%;
    }
}

/*
 * Upload Dialogs
*/

#image-upload form,
#file-upload form {
    margin: 0;
    padding: 0;
}

#image-upload .modal-dialog,
#file-upload .modal-dialog {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    overflow-y: initial !important;
}

#image-upload .modal-content,
#file-upload .modal-content {
    min-height: 300px;
    max-height: 100%;
    height: 400px;
}

#image-upload .modal-body,
#file-upload .modal-body {
    height: 100px;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
}

#image-upload .dialog-body-content,
#file-upload .dialog-body-content {
    margin: 0 0 -15px 0;
    padding: 15px 15px 0 15px;
}

#image-upload .modal-footer,
#file-upload .modal-footer {
    position: absolute;
    bottom: 0;
    width: 100%;
}

/*
 * Magnific Popup
*/

/* add class to move popup zindex above modal (1050 in bootstrap) */
.mfp-above-modal.mfp-bg         { z-index: 2042; }
.mfp-above-modal.mfp-wrap       { z-index: 2043; }
.mfp-above-modal .mfp-content   { z-index: 2045; }
.mfp-above-modal .mfp-preloader { z-index: 2044; }
.mfp-above-modal button.mfp-arrow     { z-index: 2046; }
.mfp-above-modal button.mfp-close     { z-index: 2046; }

/*
 * Message Overlay
*/

.message-overlay-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    /* height: 100%; */
    outline: none !important;
    box-sizing: border-box;
    /* pointer-events: none; */
    z-index: 3000;
}

.message-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    /* height: 100%; */
    margin: 0;
    padding: 15px 15px 5px 15px;
    outline: none !important;
    box-sizing: border-box;
    /* pointer-events: none; */
    z-index: 3001;
}

.message-overlay .popup-message {
    /* pointer-events: visible; */
    z-index: 3002;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
}

/*
 * Home Page
*/

/* Home page color boxes */
.ratio-color-boxes {
    padding-top: 8.38% /* ~1600:134  aspect ratio */
}
.color-boxes-image {
    width: 100%;
    background-image: url('../images/color_boxes.png');
    background-size: cover;
    background-repeat: repeat-x;
}

.home-page #admin-standalone {
    margin-top: 15px;
}

/* Home page - slider */

.home-page #slider #slider-arrow-left,
.home-page #slider #slider-arrow-right {
    z-index: -1;
    opacity: 0;
    -webkit-transition: opacity .3s ease-in-out, background-color .3s ease-in-out;
    -o-transition: opacity .3s ease-in-out, background-color .3s ease-in-out;
    transition: opacity .3s ease-in-out, background-color .3s ease-in-out;
}
.home-page #slider:hover #slider-arrow-left,
.home-page #slider:hover #slider-arrow-right {
    z-index: 10;
    opacity: 1.0;
}

/* reset canvas swiper heights */
.home-page #slider,
.home-page #slider .swiper-slide,
.home-page #slider:not(.full-screen):not(.canvas-slider-grid),
.home-page #slider:not(.full-screen):not(.canvas-slider-grid) .swiper-slide,
.home-page #slider:not(.force-full-screen),
.home-page #slider:not(.force-full-screen):not(.canvas-slider-grid) .swiper-slide {
    height: initial !important;
}


.home-page #slider .slider-caption {
    top: 9999px;
    max-width: 50%;
    padding: 15px 5%;
}
.home-page #slider .slider-caption h2,
.home-page #slider .slider-caption p {
    text-shadow: none;
}
.home-page #slider .slider-caption h2 {
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 15px !important;
}
.home-page #slider .slider-caption p {
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    font-style: italic;
    font-size: 12px;
    letter-spacing: -0.2px;
    line-height: 1.45;
    display: block !important;
    margin-bottom: 0;
}

.home-page #slider .slide-image-mother-child .slider-caption {
    max-width: 50%;
    padding-left: 8%;
    padding-right: 8%;
}
.home-page #slider .slide-image-mature-couple .slider-caption {
    max-width: 50%;
    padding-left: 4%;
    padding-right: 5%;
}
.home-page #slider .slide-image-girl-on-blue .slider-caption {
    max-width: 50%;
    padding-left: 8%;
    padding-right: 8%;
}
.home-page #slider .slide-image-lollipop .slider-caption {
    max-width: 40%;
    padding-left: 5%;
    padding-right: 2%;
}
.home-page #slider .slide-image-family .slider-caption {
    max-width: 26%;
    padding-left: 5%;
    padding-right: 0%;
    padding-bottom: 13%;
}

@media (min-width: 480px) {
    .home-page #slider .slider-caption h2 {
        font-size: 18px;
    }
}
@media (min-width: 768px) {
    .home-page #slider .slider-caption h2 {
        font-size: 30px;
    }
    .home-page #slider .slider-caption p {
        font-size: 16px;
    }
}
@media (min-width: 992px) {
    .home-page #slider .slider-caption h2 {
        font-size: 40px;
    }
    .home-page #slider .slider-caption p {
        font-size: 20px;
    }
}
@media (min-width: 1200px) {
    .home-page #slider .slider-caption h2 {
        font-size: 52px;
        letter-spacing: 2px;
    }
    .home-page #slider .slider-caption p {
        font-size: 23px;
    }
}
@media (min-width: 1440px) {
    .home-page #slider .slider-caption h2 {
        font-size: 64px;
    }
    .home-page #slider .slider-caption p {
        font-size: 27px;
    }
}

/*
 * Home page - podcast promo
*/

/* section (full width background) */

.home-page #podcast-promo {
    background-color: #f5f6f6;
}

/* container */

@media (min-width: 992px) {
    .home-page #podcast-promo .container {
        width: 900px;
    }
}

/* columns */

.home-page #podcast-promo .row .left-column {
    float: left;
    width: 100%;
    max-width: 250px;
    position: relative;
    min-height: 1px;
    padding-left: 0;
    padding-right: 0;
}
.home-page #podcast-promo .row .right-column {
    float: left;
    width: 100%;
    position: relative;
    min-height: 1px;
    padding-left: 0;
    padding-right: 0;
    padding-top: 25px;
    padding-bottom: 25px;
}

/* heading */

.home-page #podcast-promo h2 {
    font-size: 28px;
    font-weight: 100;
    line-height: 32px;
    color: #eb956d;
    margin: 0 0 8px 0;
}
.home-page #podcast-promo h2 strong {
    font-weight: 900;
}
.home-page #podcast-promo h2 strong span {
    color: #444444;
}

/* paragraph */

.home-page #podcast-promo p {
    font-family: 'Lato', sans-serif;
    font-size: 21px;
    line-height: 32px;
    color: #777777;
}

/* listen button */

.home-page #podcast-promo .btn-listen {
    float: left;
    padding: 0 12px;
    border-radius: 8px;
    background-color: #dca53e;
    color: #ffffff;
    text-transform: uppercase;
    font-family: 'Lato', sans-serif;
    font-size: 21px;
    line-height: 32px;
}
.home-page #podcast-promo a:hover.btn-listen,
.home-page #podcast-promo a:focus.btn-listen {
    background-color: #c29136 !important;
    color: #ffffff;
}
@media (min-width: 768px) {
    .home-page #podcast-promo .btn-listen {
        float: right;
    }
}

/* responsive adjustments at larger sizes */

@media (min-width: 768px) {
    .home-page #podcast-promo .row .left-column {
        float: left;
        width: 30%;
        position: relative;
        min-height: 1px;
        padding-left: 0;
        padding-right: 0;
    }
    .home-page #podcast-promo .row .right-column {
        float: left;
        width: 70%;
        position: relative;
        min-height: 1px;
        padding-left: 30px;
        padding-right: 10px;
        padding-top: 25px;
        padding-bottom: 10px;
    }
    .home-page #podcast-promo p {
        margin-bottom: -15px;
    }
}

@media (min-width: 992px) {
    .home-page #podcast-promo .row .left-column {
        width: 180px;
    }
    .home-page #podcast-promo .row .right-column {
        width: calc(100% - 180px);
    }
    .home-page #podcast-promo h2 {
        font-size: 36px;
        line-height: 32px;
    }
    .home-page #podcast-promo p {
        font-size: 21px;
        line-height: 32px;
        margin-bottom: 0px;
    }
}

/* Home page - welcome section */

.home-page #welcome {
    margin-bottom: 0;
}

.home-page #welcome h1 {
    text-align: center;
    margin: 60px 0 30px 0;
    color: #444444;
}

/* welcome text */
.home-page #welcome p {
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    font-size: 24px;
    color: #eb956d;
    text-align: center;
}
@media (min-width: 768px) {
    .home-page #welcome p {
        font-size: 30px;
    }
}

/* Home page - house w/ hot spots */

/* margin to allow for scaled house */
.home-page #house {
    margin-top: 90px;
    margin-bottom: 200px;
}

/* scale up house at lower widths */
.home-page #house .house-inner {
    transform: scale(1.5);
}
/* scale to normal at larger widths */
@media (min-width: 768px) {
    .home-page #house {
        margin-top: 20px;
        margin-bottom: 50px;
    }
    .home-page #house .house-inner {
        transform: scale(1.0);
    }
}


/* house text "Select a project..." */

.home-page p#select-a-project {
    text-align: center;
    color: #444444;
    font-family: 'Lato', sans-serif;
    font-size: 24px;
}
.home-page p#select-a-project a {
    color: #eb956d;
    border-bottom: 2px solid #eb956d;
}
/* old positioned version
@media (min-width: 920px) {
    .home-page #house p {
        text-align: left;
        padding-right: 100px;
        position: absolute;
        left: 46%;
        top: 89%;
        color: #eb956d;
        font-family: 'Lato', sans-serif;
        font-size: 24px;
    }
}
*/

/* (old version) cancel out the scaling on the text
@media (max-width: 767px) {
    .home-page #house p {
        transform: scale(0.666);
    }
}
*/

/* modal */

#home-modal .modal-content {
    height: 100%;
    border-radius: 0;
}
#home-modal .modal-header {
    border-bottom: none;
    height: 50px;
}
#home-modal .modal-body {
    border-bottom: none;
    padding: 0;
    margin: 0;
    height: 90%;
    height: calc(100% - 50px);
    overflow: initial;
}

/* for browsers without calc() */
@media (max-height: 300px) {
    #home-modal .modal-body {
        height: 85%;
        height: calc(100% - 50px);
    }
}

/* modal content - meant to be loaded inside iframe */

.hs-body-wrapper {
    padding: 15px;
}
@media (min-width: 480px) {
    .hs-body-wrapper {
        padding: 0 65px 15px 65px;
    }
}

.hs-body-wrapper h2 {
    font-family: 'Lato', sans-serif;
    font-size: 22px;
    color: #444444;
    line-height: 1.0;
    margin: 0;
}
.hs-body-wrapper p {
    margin-bottom: 15px;
    font-family: 'Lato', sans-serif;
    font-size: 22px;
    color: #999999;
    line-height: 1.2 !important;
}
.hs-body-wrapper p a {
    color: #999999;
}
.hs-body-wrapper p a:hover {
    color: #666666;
}
.hs-body-wrapper p strong {
    color: #444444;
}
.hs-body-wrapper div.footnote {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    color: #999999;
    margin-bottom: 15px;
}

/* Home page - products */

.home-page #products .product-icon {
    position: absolute;
    left: -43px;
    top: 0px;
    width: 45px;
    height: 45px;
    background-size: cover;
}
.home-page #products .product-section {
    position: relative;
}
.home-page #products .product-section h2 {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 45px;
    margin: 0 -15px 30px 0;
}
.home-page #products .product-section p {
    line-height: 1.8;
    color: #999999;
}

@media (max-width: 767px) {
    .home-page #products .product-sections {
        margin-left: -10%;
        margin-right: -10%;
    }
}
@media (min-width: 992px) {
    .home-page #products .product-sections {
        width: 109.0909%;
        margin-bottom: 15px;
    }
    .home-page #products .product-section {
        position: relative;
        padding-right: 60px;
    }
    .home-page #products .product-section h2 {
        /*
        letter-spacing: 1.0px;
        */
    }
}
.home-page #products {
    margin-bottom: 40px;
}

.home-page #products .products-spacing-top {
    margin: 0 0 0 -60px;
    padding: 50px 0 0 0;
    border-top: 1px solid #eeeeee;
}

.home-page #products .product-blurb {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    color: #999999;
    text-align: center;
    margin-left: -45px;
    margin-right: -45px;
    margin-bottom: 110px;
}

.home-page #advantage,
.home-page #advantage a {
    color: #eb956d;
}
.home-page #advantage {
    font-family: 'Raleway', sans-serif;
    font-size: 30px;
    font-weight: 600;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 0;
}
.home-page #advantage a {
    border-bottom: 2px solid #eb956d;
}

/* Home page - info */

.home-page #info h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    font-weight: 700;
    letter-spacing: 3px;
    text-align: center;
}
@media (max-width: 479px) {
    .home-page #info h1 {
        font-size: 18px;
        letter-spacing: 2px;
    }
}
@media (min-width: 480px) {
    .home-page #info h1 {
        font-size: 22px;
        letter-spacing: 2px;
    }
}
@media (min-width: 768px) {
    .home-page #info h1 {
        font-size: 28px;
        letter-spacing: 3px;
    }
}
@media (min-width: 1200px) {
    .home-page #info h1 {
        font-size: 41px;
    }
}

.home-page #info .home-section {
    padding: 45px 30px;
}
.home-page #info .home-section-1 {
    background-color: #93594d;
}
.home-page #info .home-section-2 {
    background-color: #8db0bb;
}
.home-page #info .home-section-3 {
    background-color: #69886a;
}
.home-page #info .home-section,
.home-page #info .home-section h2 {
    text-align: left;
}
.home-page #info .home-section {
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    line-height: 30px;
    color: #ffffff;
    padding: 45px 30px;
}
.home-page #info .home-section h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 24px;
    line-height: 1.0;
    text-transform: uppercase;
    height: 30px;
}
.home-page .home-section .btn {
    border: 2px solid #ffffff;
    border-radius: 4px;
    padding: 12px 20px;
}
.home-page .home-section a {
    color: #ffffff;
}
.home-page .home-section a:hover,
.home-page .home-section a:focus {
    background-color: #ffffff;
    color: #333333;
}
@media (min-width: 992px) {
    .home-page #info .home-section {
        height: 350px;
        padding: 60px 30px;
        text-align: left;
    }
    .home-page #info .home-section h2 {
        font-size: 22px;
        margin-right: -20px;
    }
}
@media (min-width: 1200px) {
    .home-page #info .home-section h2 {
        font-size: 24px;
        margin-right: 0;
    }
}
@media (min-width: 1600px) {
    .home-page #info .home-section {
        height: 350px;
        padding: 75px 60px;
    }
}
.home-page #info  {
    margin-bottom: 60px;
}

/* Home page - news */

.home-page #news .news-heading h2 {
    margin: 35px 0 30px 0;
    font-weight: 700;
    text-align: center;
    line-height: 1.0;
}
.home-page #news .entry-title h2 {
    margin: 20px 0 20px 0;
    font-weight: 700;
    font-size: 16px;
    text-align: left;
    text-transform: none;
    letter-spacing: 0;
    line-height: 1.0;
}
.home-page #news .entry-meta {
    margin: 10px 0 10px 0;
}
.home-page #news .entry-meta li {
    font-size: 13px;
}
.home-page #news .entry-meta li i {
    color: #000000;
}
.home-page #news .entry-content {
    color: #777777;
    margin: 0;
    font-size: 16px;
    line-height: 1.8;
}
.home-page #news .entry {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}
.home-page #news  {
    margin-bottom: 60px;
}

/* Home page - projects */

.home-page #home-projects .home-projects-header {
    background-color: #e68e6e;
}
.home-page #home-projects .home-projects-header h2 {
    margin: 30px 0;
    color: #ffffff;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 32px;
    text-align: center;
}
.home-page #home-projects .home-projects-header h2 > a {
    color: #ffffff;
    border-bottom: 2px solid #f8e3db;
    font-weight: 700;
}
.home-page #home-projects .home-projects-header h2 > a:hover {
    color: #dddddd;
    border-bottom: 2px solid rgba(248,227,219,0.5);
}
.home-page #home-projects .portfolio  {
    margin: 0 -2px -2px 0 !important;
}
.home-page #home-projects .portfolio .portfolio-item {
    padding: 0 2px 2px 0 !important;
}

/* Become a Dealer */

.home-page .dealer-info-wrap {
    background-color: #f5f6f6;
    margin: 0 -15px;
    padding: 60px 60px;
}
@media (min-width: 992px) {
    .home-page .dealer-info-wrap {
        padding: 60px 160px;
    }
}
@media (min-width: 480px) {
    .home-page .dealer-info-image-wrap {
        width: 100%;
        height: 246px;
        position: relative;
    }
    .home-page .dealer-info-image {
        width: 100%;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }
}
.home-page .dealer-info-content-wrap {
    height: 246px;
    position: relative;
}
.home-page .dealer-info-content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
@media (min-width: 700px) {
    .home-page .dealer-info-content {
        padding-left: 15px;
    }
}
.home-page .dealer-info h3 {
    text-transform: uppercase;
    margin: 0 0 10px 0;
}

.home-page .dealer-info .btn-contact-us {
    padding: 10px 40px;
    border-radius: 8px;
    background-color: #dca53e;
    color: #ffffff;
}
a:hover.btn-contact-us,
a:focus.btn-contact-us {
    background-color: #c29136 !important;
    color: #ffffff;
}

/*
 * Content
*/

/* needed to make drop down menus appear over footer */
#content { overflow: visible; }

.content-wrap {
    padding-top: 30px;
    overflow: visible;
}
.minimal .content-wrap {
    padding-top: 15px;
    padding-bottom: 15px;
}

.content-wrap-top {
    padding-top: 30px;
}

.content-wrap-bottom {
    padding-top: 15px;
    padding-bottom: 65px;
}



/*
 * User styles (for content edited in HTML editor)
*/

.user-image-left {
    float: left;
    margin-right: 30px;
    margin-bottom: 15px;
}

.user-image-right {
    float: right;
    margin-left: 30px;
    margin-bottom: 15px;
}

.user-image-fill-width {
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.user-image-responsive-left {
    display: block;
    float: left;
    width: initial;
    max-width: 100%;
    height: auto;
}

.user-image-responsive-right {
    display: block;
    float: right;
    width: initial;
    max-width: 100%;
    height: auto;
}


/*
 * Pagination
*/

.pagination {
    margin: 0;
    padding: 16px 0;
}

/*
 * Filter
*/

/* filter buttons */

.btn.btn-listings-filter {
    color: #333333;
    background-color: #ffffff;
    border-color: #dddddd;
    padding: 10px 15px;
}

.btn.btn-listings-filter.selected {
    color: #ffffff;
    background-color: #1abc9c;
    border-color: #1abc9c;
}

.btn.btn-listings-filter.selected +
.btn.btn-listings-filter.selected {
    border-left-color: #ffffff;
}

.btn.btn-listings-filter.selected +
.btn.btn-listings-filter:not(.selected) {
    border-left: 0;
    padding-left: 16px;
}


.btn-listings-filter:hover {
	color: #333333;
	background-color: #eeeeee;
        border-color: #cccccc;
}

.btn-listings-filter.selected:hover {
	color: #ffffff;
	background-color: #17a387;
        border-color: #17a387;
}

/*
 * unused button stuff initially copied from bootstrap
.btn-listings-filter:focus,
.btn-listings-filter.focus {
	color: #333333;
	background-color: #e6e6e6;
	border-color: #8c8c8c;
}
.btn-listings-filter:hover {
	color: #333333;
	background-color: #e6e6e6;
	border-color: #adadad;
}
.btn-listings-filter:active,
.btn-listings-filter.active,
.open > .dropdown-toggle.btn-listings-filter {
	color: #333333;
	background-color: #e6e6e6;
	border-color: #adadad;
}
.btn-listings-filter:active:hover,
.btn-listings-filter.active:hover,
.open > .dropdown-toggle.btn-listings-filter:hover,
.btn-listings-filter:active:focus,
.btn-listings-filter.active:focus,
.open > .dropdown-toggle.btn-listings-filter:focus,
.btn-listings-filter:active.focus,
.btn-listings-filter.active.focus,
.open > .dropdown-toggle.btn-listings-filter.focus {
	color: #333333;
	background-color: #d4d4d4;
	border-color: #8c8c8c;
}
.btn-listings-filter:active,
.btn-listings-filter.active,
.open > .dropdown-toggle.btn-listings-filter {
	background-image: none;
}
.btn-listings-filter.disabled:hover,
.btn-listings-filter[disabled]:hover,
fieldset[disabled] .btn-listings-filter:hover,
.btn-listings-filter.disabled:focus,
.btn-listings-filter[disabled]:focus,
fieldset[disabled] .btn-listings-filter:focus,
.btn-listings-filter.disabled.focus,
.btn-listings-filter[disabled].focus,
fieldset[disabled] .btn-listings-filter.focus {
	background-color: #ffffff;
	border-color: #cccccc;
}
.btn-listings-filter .badge {
	color: #ffffff;
	background-color: #333333;
}
*/

/* Filter section */

#filters {
    margin-bottom: 30px;
}


/*
 * Nestable (Drag and Drop) tree list views
*/

.dd-tools {
    margin: 5px 5px 0 5px;
}
.dd-tools .tool-button {
    display: inline-block;
    float: left;
    padding: 0 4px;
    font-size: 14px;
    color: #666;
}
.dd-tools .tool-button:hover {
    color: #333;
}
.dd-tools.tools-left {
    float: left;
}
.dd-tools.tools-right {
    float: right;
}
.dd-handle > i[class^="icon-"]:first-child + span.dd-content {
    padding-left: 5px;
}


/*
 * .entry: general outermost entry area (an entire entry)
*/
.entry {
}

/*
 * .entry-content: general innermost entry content area (only content body)
*/

/* list defaults: works fine except when flowing around a float left */

.entry-content ul,
.entry-content ol {
    list-style-position: outside;
    line-height: 1.8;
    padding-left: 30px;
}
.entry-content ul li,
.entry-content ol li {
    padding: 3px 0 3px 0;
    display: list-item;
}

/* list use class flow-right when flowing around a float: left */

.entry-content ul.flow-right,
.entry-content ol.flow-right {
    list-style: none;
    line-height: 1.8;
    padding: 0 30px 0 0;
}
.entry-content ol.flow-right {
    counter-reset: ec-counter;
}
.entry-content ul.flow-right li,
.entry-content ol.flow-right li {
    display: list-item;
    transform: translateX(30px);
    text-indent: -30px;
}
.entry-content ol.flow-right li::before,
.entry-content ul.flow-right li::before {
    display: inline-block;
    width: 30px;
    text-indent: 0;
    text-align: right;
}
.entry-content ol.flow-right li::before {
    counter-increment: ec-counter;
    content: counter(ec-counter) ".";
    padding-right: 3px;
}
.entry-content ul.flow-right li::before {
    content: '\2022';
    font-family: monospace;
    padding-right: 7px;
}
/* indent level 2: white bullet (open circle) */
.entry-content ul.flow-right li ul.flow-right li::before {
    content: '\25e6';
}
/* indent level 3: square bullet */
.entry-content ul.flow-right li ul.flow-right li ul.flow-right li::before {
    content: '\25aa ';
}
.entry-content ol.flow-right li::after,
.entry-content ul.flow-right li::after {
    display: block;
    content: " ";
}


/*
 * Listings. Created for product listings; may need to differentiate later.
 * Product listings template adds classes 'product-listings' and 'listings' on content section
*/

.listings .item {
    margin-bottom: 30px;
}


/*
 * Product listings specific
*/

.product-listings h2 {
    text-transform: uppercase;
    font-weight: 700;
    color: #333333;
    border-bottom: 1px solid #333333;
    margin-left: -4px;
    margin-right: -4px;
    padding-left: 4px;
    padding-right: 4px;
}

.product-listings .portfolio-image {
    height: 300px;
}
.product-listings .portfolio-desc {
    height: 130px;
}
@media (min-width: 992px) {
    .product-listings .portfolio-image {
        height: 400px;
    }
}

.product-listings .portfolio-desc,
.product-listings .portfolio-desc h3,
.product-listings .portfolio-desc span {
    margin: 0;
    padding: 0;
}

.product-listings div.portfolio-desc {
    padding-top: 10px;
}

.product-listings .portfolio-desc p {
    padding-top: 5px;
}

.product-listings .portfolio-desc h3 {
    font-weight: 600;
    color: #739b3d;
}
@media (min-width: 768px) {
    .product-listings .portfolio-desc h3 {
        font-size: 22px;
    }
}

.product-listings .portfolio-desc p {
    font-size: 15px;
    font-weight: 400;
    color: #777777;
    font-family: 'Raleway', sans-serif;
}

@media (max-width: 767px) and (min-width: 480px) {
    .product-listings .portfolio:not(.portfolio-1) .portfolio-item {
        padding: 0 15px 15px 0;
    }
}
.product-listings #filters {
    margin-bottom: 60px;
}

.similar-products > h3 {
    font-weight: 700;
    font-size: 22px;
    color: #403b34;
}

.similar-products .portfolio-image {
    height: 200px;
}

.product-article .product-content {
        padding-top: 30px;
}

.product-article ul.product-resources {
}
.product-article ul.product-resources > li {
    position: relative;
    list-style-type: none;
    margin-left: 16px;
    line-height: 25px;
}
.product-article ul.product-resources > li > i {
    position: absolute;
    left: -16px;
}

@media (min-width: 768px) {
    .product-article .product-content {
        padding-top: 60px;
        padding-left: 30px;
    }
}

a.product-file-link {
    text-transform: uppercase;
    color: #333333;
}
a:hover.product-file-link {
    color: #111111;
}

.product-file-link i {
    margin-right: 6px;
}

/* spec panel and spec table */

.spec-panel {
    display: inline-block;
    margin: 0 0 20px 0;
    padding: 5px 13px 10px 13px;
    border: 2px solid #ebebeb;
    border-radius: 7px;
}

table.spec-table {
    margin: 0;
}

.spec-table td,
.spec-table th {
    font-weight: bold;
    padding: 0 30px 10px 0;
}

.spec-table tr:last-child th,
.spec-table tr:last-child td {
    padding-bottom: 0;
}

@media (min-width: 768px) {
    .spec-panel {
        margin: 0 0 20px -15px;
        padding: 5px 13px 10px 13px;
    }
}

/*
 * Product data listings (aka literature): spec sheet and MSDS listings
*/

.product-data-listings section > h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
}

.product-data-listings .item-info h3 {
    font-size: 22px;
    line-height: 1.3;
    color: #739b3d;
    margin-bottom: 6px;
}

@media (min-width: 768px) {
    .product-data-listings div.item-image {
        padding-right: 0;
    }
}
.product-data-listings .item-info p {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    color: #555555;
    margin-bottom: 6px;
}

.product-data-listings .item-info a.product-file-link {
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    font-weight: bold;
    color: #555555;
    padding-right: 20px;
    vertical-align: middle;
}

.product-data-listings .item-info a:hover.product-file-link {
    color: #121212;
}

.product-data-listings .item-info a > i {
    color: #121212;
    vertical-align: middle;
    font-size: 26px;
}

.product-data-listings .item-info a:hover > i {
    color: #000000;
}

/*
 * Project Listings
*/

.project-listings .item {
    margin: 40px 0;
}

.project-listings .item-title h2,
.project-listings .item-title h2 > a {
    color: #739b3d;
    font-size: 22px;
}

.project-listings .item-title h2 {
    margin-bottom: 5px;
}

.project-listings .item-subtitle h3 {
    color: #aaaaaa;
    font-size: 14px;
    margin-bottom: 10px;
}

.project-listings .item + .item {
    padding-top: 40px;
    border-top: 1px solid #eeeeee;
}
.project-listings .items-pagination {
    padding-top: 10px;
}

.similar-projects > h3 {
    font-weight: 700;
    font-size: 22px;
    color: #403b34;
}

.similar-projects .portfolio-image {
    height: 200px;
}

/*
 * Project (individual)
*/

.project-article {
    margin-top: 20px;
}
.project-article .project-image {
    padding-right: 20px;
    margin-bottom: 20px;
}
.project-article h2 {
    color: #739b3d;
    padding-bottom: 10px;
    border-bottom: 3px solid #aaaaaa;
    margin-bottom: 15px;
}
.project-article h3 {
    color: #aaaaaa;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

/*
 * Dealer Listings (Dealer Locator)
*/

.dealer-listings #filters {
    margin-bottom: 50px;
}

/*
 * Dealer listings: main page (region selection / All)
*/

.dealer-listings #region-select h2 {
    color: #739b3d;
    font-size: 22px;
    margin: 0 0 5px 0;
}

.dealer-listings #region-select ul {
    list-style-type: none;
    position: relative;
    height: 100%;
}

.dealer-listings #region-select li {
    position: absolute;
}

.dealer-listings #region-select li a {
    font-family: 'Raleway', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    position: absolute;
}

.dealer-listings #region-select li a:hover {
    color: rgba(255,255,255,0.8);
}

/* ---- */

.dealer-listings #region-select #region-alaska {
    top: 9.5%;
    left: 17.75%;
}
.dealer-listings #region-select #region-northwest {
    top: 9.5%;
    left: 40%;
}
.dealer-listings #region-select #region-canada {
    top: 9.5%;
    left: 83%;
}

/* ---- */

.dealer-listings #region-select #region-hawaii {
    top: 36%;
    left: 7%;
}
.dealer-listings #region-select #region-west {
    top: 36%;
    left: 28.5%;
}
.dealer-listings #region-select #region-midwest {
    top: 36%;
    left: 50.5%;
}
.dealer-listings #region-select #region-east {
    top: 36%;
    left: 72.5%;
}

/* ---- */

.dealer-listings #region-select #region-southwest {
    top: 62.5%;
    left: 18%;
}
.dealer-listings #region-select #region-south {
    top: 62.5%;
    left: 61.5%;
}
.dealer-listings #region-select #region-international {
    top: 62.5%;
    left: 83.5%;
}

/* ---- */

.dealer-listings #region-select #region-mexico {
    top: 88.5%;
    left: 7%;
}

/* ---- */

.dealer-listings #region-select {
    margin-bottom: 50px;
}

/*
 * Dealer listings
*/

.dealer-listings .content-wrap {
    padding-bottom: 0px;
}

/* embedded edit links */

.dealer-listings .header-wrapper > h3 > a.edit {
    font-size: 90%;
}
/* hide edit links by default */
.dealer-listings a.edit,
.dealer-listings button.edit {
    display: none;
}
/* show edit links on hover over relevant containers */
.dealer-listings .header-wrapper:hover a.edit,
.dealer-listings .item:hover a.edit,
.dealer-listings .item:hover button.edit {
    display: initial;
}
/* left gutter items */
.dealer-listings .header-wrapper > a.edit,
.dealer-listings .item > .item-heading > a.edit {
    float: left;
    width: 15px;
    margin-left: -15px;
}

/* Region level */

.dealer-listings .section-level-2 > .header-wrapper > h2
{
    text-transform: uppercase;
    font-weight: 700;
    color: #333333;
    border-bottom: 1px solid #333333;
    margin-left: -4px;
    margin-right: -4px;
    padding-left: 4px;
    padding-right: 4px;
}

/* paint sticks */
@media (min-width: 768px) {
    .dealer-listings .section-level-2 > .header-wrapper {
        position: absolute;
        width: 106px;
        height: 100%;
        margin-right: 70px;
        background-image: url('../images/locator/stir4.jpg');
        background-repeat: no-repeat;
        background-size: cover;
    }

    .dealer-listings.filter-alaska .section-level-2 > .header-wrapper {
        background-image: url('../images/locator/stir1.jpg');
    }
    .dealer-listings.filter-hawaii .section-level-2 > .header-wrapper {
        background-image: url('../images/locator/stir2.jpg');
    }
    .dealer-listings.filter-northwest .section-level-2 > .header-wrapper {
        background-image: url('../images/locator/stir3.jpg');
    }
    .dealer-listings.filter-west .section-level-2 > .header-wrapper {
        background-image: url('../images/locator/stir4.jpg');
    }
    .dealer-listings.filter-southwest .section-level-2 > .header-wrapper {
        background-image: url('../images/locator/stir5.jpg');
    }
    .dealer-listings.filter-midwest .section-level-2 > .header-wrapper {
        background-image: url('../images/locator/stir6.jpg');
    }
    .dealer-listings.filter-east .section-level-2 > .header-wrapper {
        background-image: url('../images/locator/stir7.jpg');
    }
    .dealer-listings.filter-south .section-level-2 > .header-wrapper {
        background-image: url('../images/locator/stir8.jpg');
    }
    .dealer-listings.filter-international .section-level-2 > .header-wrapper {
        background-image: url('../images/locator/stir9.jpg');
    }

    .dealer-listings .section-level-2 > .header-wrapper > h2 {
        position: absolute;
        text-transform: none;
        white-space: nowrap;
        font-weight: 700;
        color: #ffffff;
        border-bottom: none;
        margin: 0;
        padding: 0;
        line-height: 0.0;
        -webkit-transform-origin: 100% 50%;
        -moz-transform-origin: 100% 50%;
        transform-origin: 100% 50%;
        -webkit-transform: rotate(-90deg);
        -moz-transform: rotate(-90deg);
        transform: rotate(-90deg);
        right: 50%;
        top: 40px;
    }

    .dealer-listings.filter-east .section-level-2 > .header-wrapper > h2,
    .dealer-listings.filter-south .section-level-2 > .header-wrapper > h2 {
        color: #555;
    }

    .dealer-listings .section-level-2 > .subsection-wrapper,
    .dealer-listings .section-level-2 > p {
        padding-left: 176px;
    }
}

/* columns on region level sections */
.dealer-listings .section-level-2 > .subsection-wrapper {
    -webkit-column-width: 218px;
    -moz-column-width: 218px;
    column-width: 218px;

    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
}

.dealer-listings .section-level-2 {
    margin-bottom: 50px;
}
@media (min-width: 768px) {
    .dealer-listings .section-level-2 {
        margin-bottom: 215px;
    }
}


/* avoid column breaks here (PHP code adds many-items class to allow breaking out of this) */
.dealer-listings .section-level-3:not(.many-items),
.dealer-listings .section-level-4:not(.many-items),
.dealer-listings article {
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    break-inside: avoid;
    display: table; /* FF fix */
    width: 100%;
}

/*
 * State level
*/

/* create a hover/gutter area to the left */
.dealer-listings .section-level-3 > .header-wrapper {
    margin-left: -15px;
    padding-left: 15px;
}
.dealer-listings .section-level-3 > .header-wrapper > a.edit {
    font-size: 17px;
    line-height: 1.9;
}
.dealer-listings .section-level-3 > .header-wrapper > h3 > a.edit {
    padding-left: 5px;
}
.dealer-listings .section-level-3 > .header-wrapper > h3 {
    color: #739b3d;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
    padding: 0 0 7px 0;
}

/*
 * City level
*/

/* create a hover/gutter area to the left */
.dealer-listings .section-level-4 > .header-wrapper {
    margin-left: -15px;
    padding-left: 15px;
}
.dealer-listings .section-level-4 > .header-wrapper > a.edit {
    line-height: 1.6;
}
.dealer-listings .section-level-4 > .header-wrapper > h4 > a.edit {
    padding-left: 5px;
}

.dealer-listings .section-level-4 > .header-wrapper > h4 {
    font-size: 15px;
    font-weight: 500;
    font-family: 'Lato', sans-serif;
    letter-spacing: -0.5px;
    color: #555555;
    text-transform: uppercase;
    margin: 0;
    padding: 0 0 3px 0;
}

/*
 * Item level (dealer content)
*/

/* create a hover/gutter area to the left */
.dealer-listings article {
    margin-left: -15px;
    padding-left: 15px;
    box-sizing: content-box;
}
.dealer-listings .item > .item-heading > a.edit {
    line-height: 1.6;
}
.dealer-listings .item > .item-heading button.edit {
    line-height: 1.6;
}

/* dealer title */
.dealer-listings article .item-title > h5
{
    font-size: 15px;
    font-weight: 500;
    font-family: 'Lato', sans-serif;
    letter-spacing: -0.5px;
    color: #555555;
    margin-bottom: 0px;
}

/* remove bottom margin/padding from last child of brief content */
.dealer-listings article .item-brief p:last-of-type
{
    margin-bottom: 0px;
    padding-bottom: 0px;
}
.dealer-listings article .item-brief .edit-gap
{
    height: 30px;
}

/* workaround for bottom margins affecting next column (chrome) */
.dealer-listings .item {
/*
    padding-bottom: 30px;
*/
    margin-bottom: 0;
}

.dealer-disclaimer.other-pages {
    display: block;
    font-weight: bold;
    font-size: 18px;
}
.dealer-disclaimer.international {
    display: none;
}

.dealer-listings.filter-international .dealer-disclaimer.other-pages {
    display: none;
}
.dealer-listings.filter-international .dealer-disclaimer.international {
    display: block;
}

/*
 * ayurveda
 * .ayurveda-color is used on the subpages
 * .ayurveda-main is used on the main page
 * .ayurveda is set on all
*/

.ayurveda-main .content-wrap-top {
    padding-bottom: 20px;
}
.ayurveda-main .content-wrap-bottom {
    padding-top: 50px;
}

.ayurveda-main #main-image .image-wrapper {
    padding-top: 65.7895%;
}

.ayurveda-main .primary-section h2 {
    text-align: center;
    margin-bottom: 10px;
    font-weight: 700;
}

.ayurveda-main .primary-section .content-section {
    margin-bottom: 30px;
}

.ayurveda-main .primary-section p {
    font-size: 20px;
    color: #818181;
    line-height: 1.55 !important;
}

.ayurveda-main #similar h2 {
    text-align: center;
    margin-bottom: 20px;
}

.ayurveda-main #similar .item-image {
    margin-bottom: 20px;
}

.ayurveda-main #similar h3 {
    text-transform: uppercase;
    color: #749c39;
    text-align: center;
    margin-bottom: 5px;
}

.ayurveda-main #similar h4 {
    font-size: 14px;
    font-weight: normal;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 0;
}

.ayurveda-main #similar .excerpt {
    text-align: center;
}

.ayurveda-main .additional-sections h3 {
    color: #749c39;
    margin-bottom: 10px;
}

.ayurveda-main .additional-sections p {
    color: #7c7c7c;
}

@media (min-width: 768px) {
    .ayurveda-main #main-image .image-wrapper {
        padding-top: 46.9375%;
    }
}

.ayurveda-color #primary-content h2 {
    text-transform: uppercase;
    color: #739b3d;
    margin-bottom: 15px;
}
@media (min-width: 992px) {
    .ayurveda-color #primary-content h2 {
        margin-top: -10px;
    }
}

.ayurveda-color #primary-content h3 {
    font-size: 14px;
    color: #555555;
    letter-spacing: -0.4px;
    text-transform: uppercase;
    margin-bottom: 0;
}

.ayurveda-color #primary-content p {
    color: #555555;
    line-height: 1.6;
}

.ayurveda-color #primary-content {
    margin-bottom: 50px;
}

#ayurveda-palette {
    margin-bottom: 50px;
}

.ayurveda-palette-box {
    position: relative;
    float: left;
    height: 100px;
    width: 100px;
    margin: 0 0 15px 15px;
}
.ayurveda-palette-box-zoom {
    display: none;
    position: absolute;
    left: 35px;
    bottom: 35px;
    height: 300px;
    width: 300px;
    margin: 0 0 15px 15px;
    vertical-align: bottom;
}
.ayurveda-palette-box-zoom > h3 {
    position: absolute;
    margin: 15px;
    bottom: 0;
    color: #333333;
    font-family: 'Lato', sans-serif;
    font-size: 24px;
    text-transform: uppercase;
}
.ayurveda-palette-box-zoom.dark > h3 {
    color: #ffffff;
}
.ayurveda-palette-box:hover > .ayurveda-palette-box-zoom {
    display: block;
    z-index: 200;
}
/* hardcoded shifting of offscreen boxes to the left for the various widths */
@media (max-width: 479px) {
    .ayurveda-palette-box:nth-child(2n) > .ayurveda-palette-box-zoom {
        left: -150px;
    }
}
@media (min-width: 480px) and (max-width: 767px) {
    .ayurveda-palette-box:nth-child(4n) > .ayurveda-palette-box-zoom,
    .ayurveda-palette-box:nth-child(4n-1) > .ayurveda-palette-box-zoom {
        left: -150px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .ayurveda-palette-box:nth-child(6n) > .ayurveda-palette-box-zoom,
    .ayurveda-palette-box:nth-child(6n-1) > .ayurveda-palette-box-zoom {
        left: -150px;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .ayurveda-palette-box:nth-child(8n) > .ayurveda-palette-box-zoom,
    .ayurveda-palette-box:nth-child(8n-1) > .ayurveda-palette-box-zoom,
    .ayurveda-palette-box:nth-child(8n-2) > .ayurveda-palette-box-zoom {
        left: -150px;
    }
}
@media (min-width: 1200px) {
    .ayurveda-palette-box:nth-child(10n) > .ayurveda-palette-box-zoom,
    .ayurveda-palette-box:nth-child(10n-1) > .ayurveda-palette-box-zoom,
    .ayurveda-palette-box:nth-child(10n-2) > .ayurveda-palette-box-zoom {
        left: -150px;
    }
}

/*
 * .ayurveda-similar is for the boxes at the bottom of the ayurveda color pages
 * that summarize and link to the other pages
*/

#similar.ayurveda-similar .item {
    padding: 50px 40px 40px 25px;
    margin-bottom: 30px;
}

#similar.ayurveda-similar .item .header {
    margin-bottom: 15px;
}

#similar.ayurveda-similar :not(.similar-title-no-upper).item h3 {
    text-transform: uppercase;
}

#similar.ayurveda-similar .item h3 {
    line-height: 1.2;
    color: #eeeeee;
    margin: 0;
}

#similar.ayurveda-similar .item .excerpt p {
    color: #eeeeee;
    line-height: 18px;
    font-size: 14px;
}

#similar.ayurveda-similar .item .read-more a {
    font-size: 15px;
    font-weight: bold;
}

@media (min-width: 992px) {
    #similar.ayurveda-similar .item {
        padding: 50px 25px 40px 25px;
        height: 400px;
        position: relative;
    }
    #similar.ayurveda-similar .read-more {
        position: absolute;
        display: block;
        left: 25px;
        bottom: 40px;
    }
}
@media (min-width: 1200px) {
    #similar.ayurveda-similar .item {
        height: 350px;
    }
}

#similar.ayurveda-similar .item.pitta {
    background-color: #acacac;
}

#similar.ayurveda-similar .item.vata {
    background-color: #c1af8e;
}

#similar.ayurveda-similar .item.kapha {
    background-color: #61607f;
}

#similar.ayurveda-similar .item.micropalette {
    background-color: #909984;
}

/* ayurveda micropalette
*/
.ayurveda-micropalette .content-wrap-top {
    padding-bottom: 45px;
}
.ayurveda-micropalette .content-wrap-bottom {
    padding-top: 75px;
    padding-bottom: 80px;
}
.ayurveda-micropalette h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 30px;
    font-weight: bold;
    color: #555555;
}
.ayurveda-micropalette p {
    font-family: 'Lato', sans-serif;
    font-size: 20px;
    line-height: 1.5;
    color: #555555;
}

/*
 * FAQ
*/

.faq-listings #filters {
    margin-bottom: 50px;
}

.faq-listings .section-level-2 .header-wrapper h2 {
    display: none;
}

.faq-listings .item-title {
    margin: 20px 0 0 0;
    padding: 20px 0 0 30px;
    border-top: 2px solid #f7eccc;
}
.faq-listings .item-title:first-child {
    margin: 0;
    padding: 0 0 0 30px;
    border-top: none;
}
.faq-listings .item-title h3 {
    font-size: 22px;
    line-height: 1.5;
    color: #739b3d;
    margin-bottom: 7px;
    position: relative;
}

.faq-listings .item-title i {
    font-size: 22px;
    line-height: 1.5;
    color: #484848;
    position: absolute;
    left: 0;
    top: 20px;
}
.faq-listings .item-title:first-child i {
    top: 0;
}
.faq-listings .item-brief {
    padding: 0 0 0 30px;
    margin: 0;
}
.faq-listings .item-brief p {
    font-size: 15px;
}
.faq-listings .item-brief p:last-child {
    margin-bottom: 0;
}

/*
 * Testimonials
*/

.testimonial-listings .item-brief p {
    font-family: 'Crete Round', serif;
    font-size: 18px;
    font-style: italic;
    line-height: 1.4 !important;
}

.testimonial-listings .item-brief :last-child {
    margin-bottom: 7px;
}
.testimonial-listings .read-more-spacing {
    display: inline-block;
    width: 40px;
}
.testimonial-listings a.read-more {
    float: right;
    padding-right: 50px;
    font-size: 14px;
    color: #739b3d;
}
.testimonial-listings .item-name h5 {
    line-height: 1.6;
    position: relative;
    padding-left: 10px;
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    color: #444444;
    text-transform: uppercase;
    margin-bottom: 0;
}
.testimonial-listings .item-name h5 > span {
    color: #444444;
    position: absolute;
    left: 0;
}

.testimonial-listings .item-company h6 {
    line-height: 1.5;
    padding-left: 10px;
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    font-weight: normal;
    color: #aaaaaa;
    margin-bottom: 0;
}

.testimonial-modal .modal-body p {
    font-family: 'Crete Round', serif;
    font-size: 24px;
    font-style: italic;
    color: #444444;
    line-height: 37px;
}
.testimonial-modal .modal-body p strong {
    color: #2297cb;
}

/*
 * About
*/

.about article h2 {
    font-size: 22px;
    color: #739b3d;
    margin-bottom: 10px;
}

/*
 * News listings
*/

.news-listings .entry {
    padding-bottom: 0;
    margin-bottom: 50px;
}

.news-listings .entry-date {
    margin-bottom: 15px;
    color: #999;
}

/*
 * News show (single item)
*/

.news-show .entry {
    padding-bottom: 0;
    border-bottom: none;
    margin-bottom: 0;
}

.news-show .entry-image {
    width: 100%;
}
.news-show .entry-image-left {
    float: left;
}
.news-show .entry-image-right {
    float: right;
}

@media (min-width: 992px) {
    .news-show .entry-image {
        width: 66.66667%;
    }
    .news-show .entry-image-left {
        margin-right: 15px;
        padding-right: 15px;
    }
    .news-show .entry-image-right {
        margin-left: 15px;
        padding-left: 15px;
    }
}

.news-show .entry-date {
    margin-bottom: 15px;
    color: #999;
}

.news-show .entry-content {
}

.news-show .entry-share-wrap {
    display: flex;
}
.news-show .entry-share-wrap .si-share {
    flex-grow: 1;
}


/*
 * Contractors
*/

.contractors .intro p {
    font-family: 'Lato', sans-serif;
    font-size: 21px;
    color: #555555;
    text-align: center;
}

.contractors .main p {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    color: #555555;
    text-align: center;
}

.contractors .main {
    margin-bottom: 75px;
}

.contractors .left-col {
    padding-right: 30px;
}

.contractors .subsection h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 30px;
    font-weight: bold;
    color: #444444;
    margin-bottom: 5px;
}

.contractors .subsection  {
    margin-bottom: 60px;
}
.contractors .subsection p {
    margin-bottom: 10px;
}
.contractors .subsection p strong {
    font-family: 'Raleway', sans-serif;
    font-size: 22px;
    font-weight: bold;
    color: #739b3d;
    line-height: 1.5;
}
.contractors .subsection p a {
    font-family: 'Raleway', sans-serif;
    font-size: 22px;
    color: #9d9d9d;
    line-height: 1.8;
}
.contractors .subsection p a.inline-link {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    color: #9d9d9d;
    line-height: inherit;
}
.contractors .subsection ul {
    padding-left: 50px;
    margin-bottom: 15px;
}

.contractors .right-image {
    margin-bottom: 110px;
    margin-right: -15px;
}

/*
 * Become A Dealer
*/

@media (min-width: 992px) {
    .become-dealer .left-col {
        padding-top: 100px;
        padding-bottom: 180px;
    }
}
.become-dealer h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 30px;
    font-weight: bold;
    color: #444444;
    margin-bottom: 5px;
}
.become-dealer .content-body ul {
    padding-left: 50px;
    margin-bottom: 15px;
}
.become-dealer p strong {
    font-family: 'Raleway', sans-serif;
    font-size: 22px;
    font-weight: bold;
    color: #739b3d;
    line-height: 1.5;
}
.become-dealer p a {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    color: #555555;
    line-height: inherit;
}
.become-dealer .right-image-wrap {
    height: 300px;
    padding-left: 75px;
    padding-right: 50px;
}
.become-dealer .right-image {
    width: 100%;
}
.become-dealer .content-wrap {
    padding-bottom: 0;
}

/*
 * Advantage
*/

.advantage h2 {
    margin-bottom: 5px;
}
.advantage p {
    margin-bottom: 15px;
}
.advantage p strong {
    font-family: 'Raleway', sans-serif;
    font-size: 22px;
    font-weight: bold;
    color: #739b3d;
    line-height: 1.5;
}

.advantage #main-image {
    margin-bottom: 50px;
}
.advantage #intro {
    text-align: center;
}
.advantage #intro p {
    font-family: 'Lato', sans-serif;
    font-size: 20px;
    color: #777777;
    line-height: 1.5;
}
.advantage #images {
    margin-top: 30px;
    margin-bottom: 40px;
}
.advantage #section-2 {
    background-color: #fbf5e5;
    padding-top: 30px;
    padding-bottom: 30px;
    text-align: center;
    margin-bottom: 60px;
}
.advantage .content-wrap-bottom {
    padding-top: 50px;
}

/*
 * Contact Form
*/


.contact h2 {
    margin-bottom: 5px;
}
.contact p {
    margin-bottom: 10px;
}
.contact p strong {
    font-family: 'Raleway', sans-serif;
    font-size: 22px;
    font-weight: bold;
    color: #739b3d;
    line-height: 1.5;
}
.contact .right-col p strong {
    font-family: 'Lato', sans-serif;
    font-size: 22px;
    font-weight: lighter;
    color: #aaaaaa;
}
.contact .btn-long-submit {
    margin-top: 15px;
}

.contact input,
.contact textarea
{
    border: 2px solid #dddddd;
    border-radius: 0;
}

/*
 * Color Guild
*/

.color-guild p strong,
.color-guild p strong a,
.color-guild p a strong {
    color: #739b3d;
}
.color-guild p strong {
    font-family: 'Raleway', sans-serif;
    font-size: 22px;
    font-weight: bold;
    line-height: 1.5;
}
.color-guild p strong a,
.color-guild p a strong {
    border-bottom: 2px solid #a6bd8b;
}
.color-guild .left-col,
.color-guild .right-col {
    margin-bottom: 30px;
}
@media (min-width: 1200px) {
    .color-guild .left-col {
        margin-bottom: 150px;
    }
}
@media (min-width: 1500px) {
    .color-guild .guild-image {
        position: relative;
        margin-right: -150px;
    }
    .color-guild .guild-image .ratio {
        position: absolute;
        width: 100%;
        z-index: 1;
    }
}

/*
 * TinyMCE
*/

.tinymce-textarea {
    margin: 8px !important;
}
@media (min-width: 768px) {
    .tinymce-textarea {
        margin: 8px 16px 8px 16px !important;
    }
}


/* SVG icons */
.svg-can {
    width: 0.8em;
    height: 100%;
    background-image: url('../images/can-icon.svg');
    background-size: contain;
    background-position: 50% 57%;
    background-repeat: no-repeat;
    display: inline-block;
    vertical-align: middle;
    font-size: inherit;
    font-family: inherit;
    font-weight: inherit;
    line-height: inherit;
}
