/**
 * Front end specific CSS
 */
/**
* default Widget css.
*/
.widget .eaw-block ul {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
}

.widget .eaw-block li {
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
    padding-bottom: 10px;
    list-style-type: none;
}

.widget .eaw-block a {
    display: inline;
    text-decoration: none;
}

.widget .eaw-block h3 {
    background: none;
    clear: none;
    margin-bottom: 0;
    margin-top: 0;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.5em;
}

.widget .eaw-thumb {
    border: 1px solid #EEE;
    box-shadow: none;
    margin: 2px 10px 2px 0;
    padding: 3px;
}

.widget .eaw-summary {
    font-size: 12px;
}

.widget .eaw-time {
    color: #bbb;
    font-size: 11px;
}

.widget .eaw-comment {
    color: #bbb;
    font-size: 11px;
    padding-left: 5px;
}

.widget .eaw-alignleft {
    display: inline;
    float: left;
}

.widget .eaw-alignright {
    display: inline;
    float: right;
}

.widget .eaw-aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.widget .eaw-clearfix:before, .widget .eaw-clearfix:after {
    content: "";
    display: table;
}

.widget .eaw-clearfix:after {
    clear: both;
}

.widget .eaw-clearfix {
    zoom: 1;
}

/* <fs_premium_only> */
/**
* Shortcode layout 1 default styling  - Genesis & 2017
 */
section.wfea {
    box-sizing: border-box;
}

section.wfea button {
    margin-bottom: 1em;
    margin-top: 1em;
}

@media (min-width: 1024px) {
    section.wfea button {
        width: 100%;
        margin-top: 0em;
    }
}

section.wfea .more-link {
    margin-bottom: 1em;
}

@media (min-width: 1024px) {
    section.wfea .more-link {
        float: right;
    }
}

section.wfea article .wfea-group {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

@media (min-width: 1024px) {
    section.wfea article .wfea-group {
        display: table;
        table-layout: fixed;
        border-collapse: separate;
        border-spacing: 0 1em;
    }
}

section.wfea article .wfea-group .wfea-banner {
    background-color: #ebebeb;
}

section.wfea article .wfea-group .wfea-row {
    margin-bottom: 1em;
}

@media (min-width: 1024px) {
    section.wfea article .wfea-group .wfea-row {
        display: table-row;
    }
}

section.wfea article .wfea-group .wfea-row .wfea-cell {
    border-bottom: 1px solid #d2d2d2;
}

@media (min-width: 1024px) {
    section.wfea article .wfea-group .wfea-row .wfea-cell {
        display: table-cell;
        float: none;
        vertical-align: top;
        overflow: hidden;
    }
}

section.wfea article .wfea-group .wfea-row .wfea-left {
    width: 100%;
}

@media (min-width: 1024px) {
    section.wfea article .wfea-group .wfea-row .wfea-left {
        width: 66%;
    }
}

section.wfea article .wfea-group .wfea-row .wfea-right {
    width: 100%;
}

@media (min-width: 1024px) {
    section.wfea article .wfea-group .wfea-row .wfea-right {
        width: 33%;
    }
}

section.wfea article .wfea-group .wfea-row .entry-content {
    padding: 1em;
}

section.wfea article .wfea-group figure {
    margin: 0;
    overflow: hidden;
}

section.wfea article .wfea-group figure img {
    display: inline-block;
    width: 100%;
    float: left;
}

section.wfea article .wfea-group header {
    padding: 1em;
}

section.wfea article .wfea-group header p {
    margin: 0 0 0.1em;
}
/*
Genesis
 */
@media (min-width: 1024px) {
    section.wfea.genesis article .wfea-group header .entry-title {
        font-size: 2.2rem;
    }
}


/**
* Shortcode layout divi default styling  - Divi
 */
section.wfea.divi article .booknow {
    margin-bottom: 1em;
    margin-top: 1em;
}

@media (min-width: 1024px) {
    section.wfea.divi article .booknow .submit {
        width: 100%;
        margin-top: 0em;
    }
}

/**
* Shortcode layout grid default styling
 */
/* for browsers that DO NOT support CSS Grid */

section.wfea.grid  {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    -webkit-justify-content: space-between;
    -webkit-align-content: flex-start;
    flex-flow: row wrap;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: flex-start;
}

section.wfea.grid  article {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-flow: column;
    flex-flow: column;
    width: 31%;
}

@media (max-width: 900px) {
    section.wfea.grid p article {
        width: 48%;
    }
}

@media (max-width: 450px) {
    section.wfea.grid  article {
        width: 100%;
    }
}

/* -- end of flex box --- */
/* For browsers that do support CSS Grid */
@supports ( (display: grid)) {
    section.wfea.grid {
        display: grid;
        justify-content: stretch;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 30px;
    }

    @media (max-width: 900px) {
        section.wfea.grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    @media (max-width: 450px) {
        section.wfea.grid {
            grid-template-columns: repeat(1, 1fr);
        }
    }
    section.wfea.grid article {
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-justify-content: space-between;
        justify-content: space-between;
        width: auto;
    }
}

section.wfea.grid .booknow {
    margin-top: auto;
}

section.wfea.grid button {
    width: 100%;
}

section.wfea.grid article .wfea-group header .entry-title {
    margin-top: 5px;
}


section.wfea.grid .entry-meta {
    font-style: italic;
    border-bottom: 1px solid #d2d2d2;
}

/*
Theme specific
 */
section.wfea.grid.twentyseventeen article .wfea-group header .entry-title {
    font-size: 120%;
}
section.wfea.divi.grid article .booknow .submit {
    width: 100%;
}

/* full calendar specific  */
.entry-content .wfea .fc table {
    margin: 0;
}
/* divi */
#content-area .wfea .fc table tr, #content-area .wfea .fc table td, #content-area .wfea .fc table th {
    padding: 0 .587em;
}


/* </fs_premium_only> */

/*# sourceMappingURL=frontend.css.map */
