/*
    Theme Name: BuzzMag
    Theme URI: https://www.flatlayers.com/themes/buzzmag
    Author: FlatLayers
    Author URI: https://www.flatlayers.com
    Description: Viral News WordPress Magazine/Blog Theme
    Version: 2.3
    Tested up to: 6.1
    Requires PHP: 5.6
    License: GNU/GPL Version 2 or later. 
    License URI: http://www.gnu.org/licenses/gpl.html 
    Tags: custom-background, custom-colors, custom-header, custom-menu, featured-images, post-formats, theme-options
    Text Domain: buzzmag
*/

/*-------------------------------------------------------------------------
[Table of contents]

    1. Browser Reset + Main Styels + Gutengerg
    2. Main Containers + Clearfix
    3. Headings    
    4. Header + Drawer
    5. Featured Post
    6. Loop Styles
    7. Sidebar
    8. Article Style 
    9. Ajax Pagination & Comments toggle 
    10. Single Post & Page Style
    11. Comments
    12. Footer
    13. Archive Pages Style
    14. Media Queries
-------------------------------------------------------------------------*/

/*-------------------------------------------------------------------------*/
/*  1. Browser Reset + Main Styels + Gutengerg
/*-------------------------------------------------------------------------*/
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
/* Reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section { display: block; }

:focus { outline: 0; }
input[type=submit] { -webkit-appearance: none; }

html,
body {
    width: 100%;
    height: 100%;
}
html { font-size: var(--fl-body-font-size); } 
body {
    position: relative;
    background-color: var(--fl-body-background);
    color: var(--fl-body-color);
    font-family: var(--fl-body-font);
    font-size: 1rem;
    font-weight: normal;
    line-height: 1.75;
    background-repeat: repeat-x;
    background-size: cover;
    background-attachment: fixed;
    background-position: top center;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}

::-moz-selection {
    background: var(--fl-body-color);
    color: var(--fl-body-background);
}
::selection {
    background: var(--fl-body-color);
    color: var(--fl-body-background);
}

ol, ul { list-style: none; }
input[type=text]::-ms-clear { display: none; }
sup {
    font-size: .85rem;
    vertical-align: super;
}
sub {
    font-size: .85rem;
    vertical-align: sub;
}
strong { font-weight: 700; }
em { font-style: italic; }
p:empty { display: none; }
hr {
    border: none;
    border-top: 2px dotted;
    opacity: 0.2;
    height: 2px;
    margin: 0 auto;
    width: 100%;
}

a {
    text-decoration: none;
    color: var(--fl-accent-color);
    -webkit-transition: color .2s ease, background .2s ease;
    -moz-transition: color .2s ease, background .2s ease;
    -ms-transition: color .2s ease, background .2s ease;
    -o-transition: color .2s ease, background .2s ease;
    transition: color .2s ease, background .2s ease;
}

a:hover { color: var(--fl-body-color); }

/* BlockQuotes */
blockquote,
q {
    position: relative;
    display: block;
    margin-bottom: 24px;
    padding: 24px 0 24px 56px;
    font-size: 1.5rem;
    border: none;
    box-shadow: none;
    font-family: var(--fl-headings-font);
    border-top: 2px solid rgba(128,128,128,.1);
    border-bottom: 2px solid rgba(128,128,128,.1);
}
blockquote:before,
q:before {
    overflow: hidden;
    display: block;
    font-family: FontAwesome;
    content: "\f097";
    position: absolute;
    left: 0;
    top: 24px;
    line-height: 1;
    font-size: 2.5rem;
    min-width: 100px;
    text-align: left;
    color: var(--fl-accent-color);
    z-index: 0;
}

blockquote p, q p { margin-bottom: 0; }

.wp-block-quote.is-large,
.wp-block-quote.is-style-large {
    margin-bottom: 24px;
    padding: 24px 0 24px 56px;
}
.wp-block-quote.is-large:before,
.wp-block-quote.is-style-large:before { font-size: 3rem; }

blockquote cite, q cite, pre cite {
    position: relative;
    font-size: 1rem;
}

blockquote cite:before,
q cite:before,
pre cite:before {
    content: "\2015";
    margin-right: 8px;
    font-size: 1.5rem;
    color: var(--fl-accent-color);
}

/* Tables */
table, dl {
    margin-bottom: 24px;
    width: 100%;    
    border: 2px solid rgba(128,128,128,.1);
}
table thead, dt {
    font-weight: bold;
    background: rgba(128,128,128,.1);
}
table th, table td, dt, dd {
    padding: 8px;
    border: 1px solid rgba(128,128,128,.1);
}

/* Address, Pre, Code ...etc */
pre, address, code {
    display: block;
    position: relative;
    padding: 24px 24px 24px 64px;
    margin-bottom: 24px;
    overflow: auto;
    max-width: 100%;
    background: rgba(128,128,128,.1);
}
address:before,
code:before {
    overflow: hidden;
    display: block;
    font-family: FontAwesome;
    position: absolute;
    left: 24px;
    top: 24px;
    line-height: 1;
    font-size: 1.6rem;
    min-width: 100px;
    text-align: left;
    color: var(--fl-accent-color);
    z-index: 0;
}
address:before{ content: "\f041"; }
code:before{ content: "\f121"; }

pre { padding: 24px; }

fieldset {
    margin: 16px 0;
    padding: 16px;
    border: 2px solid rgba(128,128,128,.1);
}

legend {
    font-size: 1.2rem;
    font-weight: 700;
    padding: 0 16px;
}

/* General and Response Inputs Style */
input,
textarea,
select,
button { font-family: var(--fl-body-font); }

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="tel"],
input[type="search"],
textarea,
select {
    border: 2px solid rgba(128,128,128,.1);
    background: var(--fl-input-background);
    color: var(--fl-body-color);
    padding: 8px;
    width: 100%;
    margin: 0;
    border-radius: 0;
    outline: none;
    box-shadow: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="search"]:focus,
textarea:focus,
select:focus { border-color: var(--fl-accent-color); }

/* radio and checkboxes */
input[type="radio"],
input[type="checkbox"] {
    width: 24px;
    height: 24px;
    margin-right: 8px;
    cursor: pointer;
    display: inline-block;
    vertical-align: bottom !important;
    background-repeat: no-repeat;
    background-position: center;
    background: var(--fl-input-background);
    color: var(--fl-body-color);
    border: 2px solid rgba(128,128,128,0.2);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-print-color-adjust: exact;
}
input[type="radio"] { border-radius: 50%; }

input[type="checkbox"]:checked,
input[type="radio"]:checked {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
    background-color: var(--fl-accent-color);
    border-color: var(--fl-accent-color);
}
input[type="radio"]:checked { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e"); }

.form-allowed-tags { display:block; }

input[type="submit"],
button,
.button {
    padding: 8px 16px;    
    text-transform: uppercase;  
    font-size: 0.8rem;
    letter-spacing: 1px;
    line-height: 1.7;
    color: #ffffff;
    border-radius: 0;
    box-shadow: none;
    outline: none;
    font-family: var(--fl-headings-font);
    font-weight: var(--fl-headings-font-weight);
    background: var(--fl-button-background);
    border: none;
    cursor: pointer;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
input[type="submit"]:hover,
button:hover,
.button:hover {
    background: var(--fl-accent-color);
    color: #ffffff;
}

/* Gutenberg Blocks -> Buttons */
.wp-block-button {
    text-align: center;
    margin-bottom: 24px;
}
.wp-block-button__link { background-color: var(--fl-button-background); }

.wp-block-button__link:hover { background-color: var(--fl-accent-color); }

.is-style-outline>.wp-block-button__link:not(.has-text-color),
.wp-block-button__link.is-style-outline:not(.has-text-color) { color: var(--fl-button-background); }

.is-style-outline>.wp-block-button__link:not(.has-text-color):hover,
.wp-block-button__link.is-style-outline:not(.has-text-color):hover { color: var(--fl-accent-color); }

.wp-block-button.is-style-squared .wp-block-button__link { border-radius: 0; }

/* Gutenberg Blocks -> Cover */
.wp-block-cover-image h1:not(.has-text-color),
.wp-block-cover-image h2:not(.has-text-color),
.wp-block-cover-image h3:not(.has-text-color),
.wp-block-cover-image h4:not(.has-text-color),
.wp-block-cover-image h5:not(.has-text-color),
.wp-block-cover-image h6:not(.has-text-color),
.wp-block-cover-image p:not(.has-text-color),
.wp-block-cover h1:not(.has-text-color),
.wp-block-cover h2:not(.has-text-color),
.wp-block-cover h3:not(.has-text-color),
.wp-block-cover h4:not(.has-text-color),
.wp-block-cover h5:not(.has-text-color),
.wp-block-cover h6:not(.has-text-color),
.wp-block-cover p:not(.has-text-color) { color: #ffffff; }

.wp-block-cover, .wp-block-cover-image { margin-bottom: 24px; }


/* Gutenberg Blocks -> Gallery & Images & Embeds*/
.wp-block-image, .wp-block-embed { margin-bottom: 24px; }

.fl-post-content .blocks-gallery-grid,
.fl-post-content .wp-block-gallery {
    list-style: none;
    margin: 0;
    padding: 0;
}
.fl-post-content .wp-block-gallery { margin-bottom: 24px; }

.fl-post-content .wp-block-gallery.alignleft { margin-right: 24px; }
.fl-post-content .wp-block-gallery.alignright { margin-left: 24px; }

.blocks-gallery-grid .blocks-gallery-image figcaption,
.blocks-gallery-grid .blocks-gallery-item figcaption,
.wp-block-gallery .blocks-gallery-image figcaption,
.wp-block-gallery .blocks-gallery-item figcaption {
    font-size: .9em;
    line-height: 1.4;
}

.wp-block-image figcaption,
.wp-block-gallery figcaption,
.wp-block-embed figcaption,
.wp-caption .wp-caption-text,
.entry-caption,
.gallery-caption {
    line-height: 1.4;
    font-size: .9rem;
}

.wp-block-image figcaption:before,
.wp-block-gallery figcaption:before,
.wp-block-embed figcaption:before,
.wp-caption .wp-caption-text:before,
.entry-caption:before,
.gallery-caption:before {
    content: "\2015";
    margin-right: 8px;
    font-size: 1.2rem;
    color: var(--fl-accent-color);
}

.blocks-gallery-grid figcaption { opacity: 1; }
.blocks-gallery-grid figcaption:before { display: none; }

.gallery-item dt.gallery-icon { line-height: 0; }
.gallery-item dt.gallery-icon img { border: none; }


/* Gutenberg Blocks -> Widgets */
.fl-post-content .wp-block-archives,
.fl-post-content .wp-block-latest-comments,
.fl-post-content .wp-block-latest-posts,
.fl-post-content .wp-block-categories,
.fl-post-content .wp-block-rss {
    margin-left: 0;
    list-style: none;
}

.fl-post-content .wp-block-archives a,
.fl-post-content .wp-block-latest-comments a,
.fl-post-content .wp-block-latest-posts a,
.fl-post-content .wp-block-categories a,
.fl-post-content .wp-block-rss a { color: var(--fl-body-color); }

.fl-post-content .wp-block-archives a:hover,
.fl-post-content .wp-block-latest-comments a:hover,
.fl-post-content .wp-block-latest-posts a:hover,
.fl-post-content .wp-block-categories a:hover,
.fl-post-content .wp-block-rss a:hover { color: var(--fl-accent-color); }

.fl-post-content .wp-block-search,
.fl-post-content .wp-block-calendar,
.fl-post-content .wp-block-categories,
.fl-post-content .wp-block-archives-dropdown { margin-bottom: 24px; }

.wp-block-search .wp-block-search__input { border: 2px solid rgba(128,128,128,.1); }
.wp-block-search .wp-block-search__button {
    margin-left: 0;
    background-color: var(--fl-button-background);
    color: #ffffff;
    border: none;
    padding: 8px 16px;
}
.wp-block-search .wp-block-search__button:hover { background-color: var(--fl-accent-color); }

.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button { padding: 8px; }
.wp-block-search .wp-block-search__button svg { fill: #ffffff; }

.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper { border: 2px solid rgba(128,128,128,.1); }

.wp-block-latest-posts__post-author,
.wp-block-latest-posts__post-date,
.wp-block-latest-comments__comment-date { color: var(--fl-meta-color); }

.wp-block-calendar table { border-collapse: inherit; }

.wp-block-calendar table th { background: rgba(128,128,128,.1); }

.wp-block-calendar tbody td,
.wp-block-calendar th { border: 1px solid rgba(128,128,128,.1); }

.wp-block-loginout {
    padding: 16px;
    border: 2px solid rgba(128,128,128,.1);
}

.wp-block-loginout p { margin-bottom: 8px; }

.wp-block-social-links,
.wp-block-social-links.has-normal-icon-size { justify-content: center; }
.wp-block-social-links .wp-social-link.wp-social-link.wp-social-link { padding: 0; }

.wp-block-social-links .wp-block-social-link .wp-block-social-link-anchor svg { fill: #ffffff; }

.wp-block-latest-posts li a {
    display: block;
    font-size: 1rem;
    font-weight: var(--fl-headings-font-weight);
    line-height: 1.3;
}

.wp-block-latest-posts__post-author,
.wp-block-latest-posts__post-date {
    display: inline-block;
    margin-right: 4px;
}

.wp-block-latest-posts__post-excerpt {
    margin-top: 8px;
    margin-bottom: 0;
    font-size: .9rem;
}

.wp-block-latest-posts__featured-image { margin-bottom: 8px; }
.wp-block-latest-posts__featured-image img {
    line-height: 0;
    border-radius: 50%;
    border: 2px solid rgba(128,128,128,.1);
}

/* Gutenberg Blocks -> Layout Elements */
.wp-block-group p:last-child { margin-bottom: 0; }
.wp-block-group.has-background {
    padding: 24px;
    margin-bottom: 24px;
}

.wp-block-media-text { margin-bottom: 24px; }

pre code {
    padding: 0 0 0 40px;
    margin-bottom: 0;
}
pre code:before {
    left: 0;
    top: 0;
}

.wp-block-table.is-style-stripes { margin-bottom: 24px; }

.wp-block-pullquote {
    text-align: initial;
    margin: auto;
    padding: 0;
}

.wp-block-columns { margin-top: 2em; }

.wp-block-separator {
    border-top: 2px dotted;
    border-bottom: none;
}

.wp-block-separator.is-style-dots { opacity: 0.4; }
.wp-block-separator.is-style-dots:before {
    font-size: 3em;
    letter-spacing: 24px;
    padding-left: 24px;
}

/* Alignment */
.wp-block-image .alignleft,
.alignleft {
    float: left;
    margin-left: 0;
    margin-right: 24px;
}
.wp-block-image .alignright,
.alignright {
    float: right;
    margin-right: 0;
    margin-left: 24px;
}
.wp-block-image .aligncenter,
.aligncenter {
    margin-left: auto;
    margin-right: auto;
}

#fl-post-container.no-sidebar .alignwide {
    width: 1140px;
    margin-left: -171px;
}

#fl-post-container.no-sidebar .alignfull {
    margin-left: calc(50% - 50vw);
    width: 100vw;
    padding: 0 32px;
}

@media only screen and (max-width: 1224px) {
    #fl-post-container.no-sidebar .alignwide {
        width: calc(100vw - 64px);
        margin-left: calc(50% - 50vw + 32px);
    }
}

@media only screen and (max-width: 768px) {
    #fl-post-container.no-sidebar .alignwide {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    #fl-post-container.no-sidebar .alignfull { padding: 0 16px; }
}


/* Images */
img,
.wp-caption {
    height: auto;
    max-width: 100%;
}
.wp-post-image {
    display: block;
    margin: 0 auto;
}
img.alignright,
.wp-caption.alignright { margin: 8px 0 8px 24px; }

img.alignleft,
.wp-caption.alignleft { margin: 8px 24px 8px 0; }
img.aligncenter{}

/* Embeds and iframes */
embed,
iframe,
object,
video { max-width: 100%; }

/* Post Protected */
form.post-password-form p {
    display: flex;
    flex-flow: row wrap;
    align-items: flex-end;
}
form.post-password-form label { flex: 1; }
form.post-password-form input[type=submit] { line-height: 1.4; }

.screen-reader-text {
    clip: rect(1px,1px,1px,1px);
    height: 1px;
    overflow: hidden;
    position: absolute;
    width: 1px;
    word-wrap: normal;
}

/*-------------------------------------------------------------------------*/
/*  3. Headings
/*-------------------------------------------------------------------------*/
h1 {font-size: 2rem;}
h2 {font-size: 1.77rem;}
h3 {font-size: 1.57rem;}
h4 {font-size: 1.39rem;}
h5 {font-size: 1.23rem;}
h6 {font-size: 1rem;}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.5;
    margin-bottom: 1.38rem;
    font-family: var(--fl-headings-font);
    font-weight: var(--fl-headings-font-weight);    
    word-wrap: break-word;
    word-break: break-word;
    color: var(--fl-headings-color);
}

p { margin-bottom: 24px; }
small { font-size: 0.75rem; }

/*-------------------------------------------------------------------------*/
/*  2. Main Containers + Clearfix / .fl-container .clearfix
/*-------------------------------------------------------------------------*/
#wpadminbar { display: fixed !important; }
.fl-container {
    position: relative;
    display: block;
    width: 100%;
    max-width: 1188px;
    padding: 0 24px;    
    margin: 0 auto;
}
.clearfix:after {
    content: "\0020";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

#fl-main-warp { padding-top: 64px; }

#fl-content {    
    position: relative;
    display: block;
    margin-top: 64px;
}

#fl-post-container {
    width: 70%;
    display: block;
    float: left;
    position: relative;
}

.fl-left { float: left !important; }
.fl-right { float: right !important; }
.fl-full-width { width: 100% !important; }

#fl-post-container.no-sidebar {
    float: none;
    margin: 0 auto;
}

/*-------------------------------------------------------------------------*/
/*  4. Header + Drawer
/*-------------------------------------------------------------------------*/
#fl-header {
    height: 64px;
    background: var(--fl-header-background);
    color: var(--fl-header-color);
    position: fixed;
    display: block;
    text-transform: uppercase;
    width: 100%;    
    border-bottom: 1px solid rgba(128,128,128,.1);
    z-index: 900;    
    font-family: var(--fl-headings-font);
}

#fl-header a { color: var(--fl-header-color); }
#fl-header a:hover,
#fl-header .fl-post:hover .title,
#fl-topsearch:hover { color: var(--fl-accent-color); }


/* Drawer Icon */
#fl-drawer-icon {    
    position: relative;
    display: block;
    float: left;
    height: 64px;
    margin-right: 16px;
    padding-right: 16px;
    border-right: 1px solid rgba(128,128,128,.1);    
    cursor: pointer;
}
#fl-drawer-icon .icon {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 24px;
    height: 64px;
    margin-top: 0;
    padding: 0;
    background-color: transparent !important;
    overflow: hidden;
    font-size: 0;
}
#fl-drawer-icon .icon:hover { background-color: transparent !important; }
#fl-drawer-icon .icon span {
    background-color: var(--fl-header-color);
    display: block;
    height: 2px;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
#fl-drawer-icon .icon span:before,
#fl-drawer-icon .icon span:after {
    transition-duration: .2s, .2s;
    transition-delay: .2s, 0s;
    content: '';
    background-color: var(--fl-header-color);
    display: block;
    height: 2px;
    position: absolute;
    left: 0;
    right: 0;
}
#fl-drawer-icon .icon span:before {
    transition-property: top, transform;
    top: -8px;
}
#fl-drawer-icon .icon span:after {
    transition-property: bottom, transform;
    bottom: -8px;
}
#fl-drawer-icon.active .icon span,
#fl-drawer-icon.active:hover .icon span { background: transparent; }
#fl-drawer-icon.active .icon span:before {
    top: 0;
    transform: rotate(45deg);
}
#fl-drawer-icon.active .icon span:after {
    bottom: 0;
    transform: rotate(-45deg);
}
#fl-drawer-icon .text {
    display: inline-block; 
    padding-left: 8px;     
    line-height: 64px;
    font-size: 1.5rem;
}
#fl-drawer-icon:hover { color: var(--fl-accent-color); }
#fl-drawer-icon:hover .icon span,
#fl-drawer-icon:hover .icon span:before,
#fl-drawer-icon:hover .icon span:after { background: var(--fl-accent-color); }

/* Logo */
#fl-logo {
    position: relative;
    display: block;
    float: left;
    margin-right: 16px;
    overflow: hidden;
    height: 64px;
    border-bottom: 1px solid rgba(128,128,128,.1);
    background: var(--fl-header-background);
}
#fl-logo a { display: block; }
#fl-logo h1,
#fl-logo p {
    font-size: 2rem;
    line-height: 64px;
    font-weight: var(--fl-headings-font-weight);
    padding: 0;
    margin: 0;
}
#fl-logo img {
    max-height: 48px;
    width: auto;
    margin: 8px 0;
}

#fl-logo .dark-logo { display: none; }

html[data-theme="dark"] #fl-logo .light-logo { display: none; }
html[data-theme="dark"] #fl-logo .dark-logo { display: inline-block; }

/* Top Menu */
#fl-topmenu {
    display: block;
    float: left;
    height: 64px;
    border-bottom: 1px solid rgba(128,128,128,.1);
    background: var(--fl-header-background);
}
#fl-topmenu li {
    position: relative;
    display: inline-block;
}

#fl-topmenu li a {
    position: relative;
    display: block;
    font-size: .75rem;
    padding: 0 8px;
    letter-spacing: 1px;
    font-weight: var(--fl-headings-font-weight);
    line-height: 64px;
}
#fl-topmenu li.current-menu-item > a { color:var(--fl-accent-color); }

#fl-topmenu li.menu-item-has-children a,
#fl-topmenu li.fl-megamenu a { padding: 0 24px 0 16px; }
#fl-topmenu li.menu-item-has-children > a:after,
#fl-topmenu li.fl-megamenu > a:after {
    position: absolute;
    font-family: FontAwesome;
    content: "\f078";
    font-size: .65rem;
    margin-left: 8px;
    font-weight: 400;
}

#fl-topmenu li .sub-menu {
    display: none;
    position: absolute;
    background: var(--fl-submenu-background);
    text-transform: none;
    min-width: 200px;
    z-index: 800;
    left: 0;
    height: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-box-shadow: 0 2px 6px rgba(0,0,0,.1);
    -moz-box-shadow: 0 2px 6px rgba(0,0,0,.1);
    box-shadow: 0 2px 6px rgba(0,0,0,.1);
}
#fl-topmenu li .sub-menu li {
    display: block;
    position: relative;
    padding: 0;
    margin-right: 0;
}
#fl-topmenu li .sub-menu li a {
    position: relative;
    display: block;
    margin: 0;
    line-height: 40px;
    font-weight: 400;
    color: var(--fl-submenu-color);
    letter-spacing: normal;
    padding: 0 24px;
    border-right: none;
    border-bottom: 1px solid rgba(128,128,128,.1);
    white-space: nowrap;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;    
}
#fl-topmenu li .sub-menu li:last-child a,
#fl-topmenu li .sub-menu li.menu-item-has-children:last-child li:last-child a { border-bottom: none; }
#fl-topmenu li .sub-menu li.menu-item-has-children:last-child li a { border-bottom: 1px solid rgba(128,128,128,.1); }
#fl-topmenu li .sub-menu li.menu-item-has-children > a:after {
    content: "\f105";
    position: absolute;
    right: 24px;
    font-size: .75rem;
}
#fl-topmenu li .sub-menu li a:hover {
    background: rgba(128,128,128,.1);
    color: var(--fl-submenu-color);
}
#fl-topmenu li:hover > .sub-menu {
    display: block;
    visibility: visible;
    height: auto;
    opacity: 1;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease; 
}
#fl-topmenu li .sub-menu li ul {
    left: 100%;
    margin: 0;
    top: 0;
    border-top: none;
    z-index: 800;
}

/* MegaMenu */
@keyframes fadeAnimation {
  0%   { opacity:1; }
  50%  { opacity:.1; }
  100% { opacity:1; }
}
@-o-keyframes fadeAnimation{
  0%   { opacity:1; }
  50%  { opacity:.1; }
  100% { opacity:1; }
}
@-moz-keyframes fadeAnimation{
  0%   { opacity:1; }
  50%  { opacity:.1; }
  100% { opacity:1; }
}
@-webkit-keyframes fadeAnimation{
  0%   { opacity:1; }
  50%  { opacity:.1; }
  100% { opacity:1; }
}
.animate-loading {
   -webkit-animation: fadeAnimation 1s infinite;
   -moz-animation: fadeAnimation 1s infinite;
   -o-animation: fadeAnimation 1s infinite;
    animation: fadeAnimation 1s infinite;
}

#fl-topmenu li.fl-megamenu {  position: inherit; }
#fl-topmenu li.fl-megamenu.menu-item-has-children { position: relative; }

#fl-topmenu li.fl-megamenu .megamenu {
    display: none;
    position: absolute;
    background: var(--fl-submenu-background);
    z-index: 800;
    left: 24px;
    right: 24px;
    height: 0;
    opacity: 0;
    visibility: hidden;    
    -webkit-box-shadow: 0 2px 6px rgba(0,0,0,.1);
    -moz-box-shadow: 0 2px 6px rgba(0,0,0,.1);
    box-shadow: 0 2px 6px rgba(0,0,0,.1);
}

#fl-topmenu li.fl-megamenu:hover > .megamenu {
    display: block;
    visibility: visible;
    height: auto;
    opacity: 1;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
}
#fl-topmenu li.fl-megamenu .megamenu .cats-list {
    text-align: center;
    background: var(--fl-button-background);
}
#fl-topmenu li.fl-megamenu .megamenu .cats-list .cat-link {
    display: inline-block;
    padding: 0 24px;
    line-height: 40px;
    color: #ffffff;
    opacity: .5;
    border-right: 1px solid rgba(128,128,128,.3);
}
#fl-topmenu li.fl-megamenu .megamenu .cats-list .cat-link:last-child { border-right: none; }
#fl-topmenu li.fl-megamenu .megamenu .cats-list .active,
#fl-topmenu li.fl-megamenu .megamenu .cats-list .cat-link:hover { opacity: 1; border-color: rgba(128,128,128,.15) }
#fl-topmenu li.fl-megamenu .megamenu .cats-list .active:after {
    content: "";
    display: block;
    position: absolute;
    border-top: 4px solid var(--fl-button-background);
    border-right: 8px solid transparent !important;
    border-left: 8px solid transparent !important;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 0;
    margin-left: -8px;
}

.fl-loading,
.fl-error {
    display: block;
    text-align: center;
    font-size: 3.5rem;
    letter-spacing: 4px;
}
#fl-topmenu li.fl-megamenu .megamenu .error { font-size: 12px;  letter-spacing: normal;}

#fl-topmenu li.fl-megamenu .megamenu-list {
    float: left;
    width: 100%;
    padding: 24px 12px 16px 12px;
    display: none;
}
#fl-topmenu li.fl-megamenu .megamenu-list.ajax-loaded { display: block; }
#fl-topmenu li.fl-megamenu .megamenu-list li {
    display: block;
    float: left;
    overflow: hidden;
    width: 20%;
    padding: 0 12px;
}
#fl-topmenu li.fl-megamenu .megamenu-list li a { padding: 0; }
#fl-topmenu li.fl-megamenu .megamenu-list li .title {
    background: none;
    padding-top: 8px;
    font-size: .75rem;
    text-transform: none;
    line-height: 1.6;
    color: var(--fl-submenu-color);
    letter-spacing: normal;
}
#fl-topmenu li.fl-megamenu .megamenu-list .fl-post:hover .title { color: var(--fl-accent-color); }

#fl-header .header-icons {
    position: absolute;
    right: 24px;
    display: block;
    z-index: -1;
}
/* Social Icons */
#fl-header .social-icons {
    position: relative;
    display: inline-block;
    vertical-align: top;
}
#fl-header .social-icons a {
    display: inline-block;
    font-size: .9rem;
    width: 24px;
    text-align: center;
    line-height: 64px;
}
#fl-header .social-icons a span {
    font-size: 0;
    line-height: 0;
}

/* Search Icon */
#fl-topsearch {
    display: inline-block;
    font-size: 1rem;
    line-height: 64px;
    height: 64px;
    width: 24px;
    text-align: center;
    cursor: pointer;
    vertical-align: top;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    transition: all 0.25s ease;
}
#fl-topsearch .fa-times { display: none; }

/* Overlay Search */
#fl-search-overlay { 
    display: none;   
    position: fixed;
    background: rgba(6,25,35,0.9);   
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 700;
}
.overlay-table {
    display: table;
    height: 100%;
    width: 100%;
}
.overlay-cell {
    display: table-cell;
    vertical-align: middle;
}
.overlay-search {
    display: block;
    max-width: 800px;
    margin: 0 auto;
}
.overlay-search form {
    position: relative;
    display: block;
    line-height: 0;    
    color: var(--fl-headings-color);
}
.overlay-search form:before {
    position: absolute;
    font-family: FontAwesome;
    content: "\f002";
    left: 0;
    top: 0;
    font-size: 1.5rem;
    line-height: 64px;
    width: 64px;
    text-align: center;
}
.overlay-search .searchform input[type="text"] {
    border: none;
    font-size: 1.2rem;
    line-height: 64px;
    height: 64px;
    margin: 0;
    padding: 0 160px 0 64px;
    background: var(--fl-input-background);
    border: none;
}
.overlay-search .searchform button {
    position: absolute;
    font-size: 1rem;
    right: 0;
    top: 0;
    height: 64px;
    margin: 0;
    padding: 0 40px;
}
.overlay-search .searchform button:hover { background: var(--fl-accent-color); }

.overlay-search .cats {
    display: block;
    position: relative;
    margin-top: 24px;
    text-align: center;
    font-family: var(--fl-headings-font);
}
.overlay-search .cat-link {
    display: inline-block;
    font-weight: var(--fl-headings-font-weight);
    font-size: .875rem;
    color: #ffffff;
    padding: 4px 16px;
    margin: 8px 0;
}

.overlay-search .cat-link:hover { background: var(--fl-accent-color); }


/* Cart Icon && My Account -> WooCommerce */
#fl-header .cart-contents,
#fl-header .my-account {
    position: relative;
    display: inline-block;
    width: 24px;
    height: 64px;    
    line-height: 64px;
    text-align: center;
    font-size: 1rem;
    vertical-align: top;
}

#fl-header .cart-contents .cart-count {
    position: absolute;
    display: block;
    width: 100%;
    height: 16px;
    line-height: 16px;
    z-index: 1;
    bottom: 4px;
    border-radius: 8px;
    font-size: 0.6rem;
    font-weight: var(--fl-headings-font-weight);
    text-align: center;
    background: var(--fl-accent-color);
    color: #ffffff;
}

/* Theme Switch */
.fl-theme-switch {
    display: inline-block;
    line-height: 64px;
    height: 64px;
    width: 24px;
    text-align: center;
    font-size: 1rem;
    cursor: pointer;    
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    transition: all 0.25s ease;
}
.fl-theme-switch:hover { color: var(--fl-accent-color); }
.fl-theme-switch input { display:none; }

.fl-theme-switch .fa-sun-o { display: none; }

html[data-theme="dark"] .fl-theme-switch .fa-moon-o { display: none; }
html[data-theme="dark"] .fl-theme-switch .fa-sun-o { display: inline-block; }


#fl-drawer {
    display: block;
    background: var(--fl-submenu-background);
    color: var(--fl-submenu-color);
    max-width: 75%;
    width: 360px;
    padding: 32px;
    top: 64px;
    height: calc(100% - 64px);
    z-index: 800;
    position:fixed;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-transform: translateX(-360px);
    -ms-transform: translateX(-360px);
    transform: translateX(-360px);
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

#fl-drawer a { color: var(--fl-submenu-color); }
#fl-drawer a:hover { color: var(--fl-accent-color); }

#fl-drawer.open {
    -webkit-transform: translateX(0px);
    -ms-transform: translateX(0px);
    transform: translateX(0px);
}

#fl-drawer .fl-widget:last-child { margin-bottom: 16px; }

.push-overlay {
    position: fixed;
    z-index: 700;
    top: 0;
    width: 0;
    height: 0;
    background: rgba(6,25,35,0.9);
    content: '';
    opacity: 0;
    -webkit-transition: opacity 0.3s ease-out;
    -moz-transition: opacity 0.3s ease-out;
    transition: opacity 0.3s ease-out;
}

.push-overlay.open {
    width: 100%;
    height: 100%;
    opacity: 1;
    left: 0;
}

/* To Top */
#fl-top {
    display: block;
    position: fixed;
    bottom: -48px;
    right: 8px;
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    background: var(--fl-button-background);
    color: #ffffff;
    font-size: 1.25rem;
    cursor: pointer;    
    z-index: 900;
    -webkit-box-shadow: 0 0 5px 2px rgba(128,128,128,.2);
    -moz-box-shadow: 0 0 5px 2px rgba(128,128,128,.2);
    box-shadow: 0 0 5px 2px rgba(128,128,128,.2);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
}
#fl-top:hover { background: var(--fl-accent-color); }

/*-------------------------------------------------------------------------*/
/*  5. Featured Posts
/*-------------------------------------------------------------------------*/
/* Featured Posts Area */
/* 1 Post  */
#fl-featured .post-1 .fl-post {
    position: relative;
    height: 480px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
#fl-featured .post-1 .fl-post .content {
    display: block;
    position: absolute;
    text-align: center;    
    width: 544px;
    left: 50%;
    margin-left: -272px;
    bottom: -12px;
    z-index: 2;
}
#fl-featured .fl-category { display: block; }
#fl-featured .fl-category a { padding: 0 16px; }
#fl-featured .post-1 .fl-post .content .inner {
    position: relative;
    display: block;
    float: left;
    width: 100%;
    padding: 24px 24px 0;
    background: var(--fl-body-background);
}
#fl-featured .post-1 .fl-post .content .inner .title {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 16px;
}
#fl-featured .post-1 .fl-post .content .inner .title a {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}
#fl-featured .post-1 .fl-post .content .inner .fl-meta {
    margin: 0 8px;
    line-height: 24px;
}
#fl-featured .post-1 .fl-post .fl-picture {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
}
#fl-featured .post-1 .fl-post .fl-picture a {
    display: block;
    width: 100%;
    height: 100%;
}

/* 5 Posts */
#fl-featured .posts-5 {
    display: block;
    position: relative;
    margin-top: 56px; 
}
#fl-featured .posts-5 .fl-post {
    width: 32%;
    position: relative;
    display: block;
    float: left;
    clear: left;
}
#fl-featured .posts-5 .fl-post .fl-picture {
    display: block;
    width: 48%;
    margin-right: 6%;
    float: left;
}
#fl-featured .posts-5 .fl-post .fl-picture img {
    object-fit: cover;
    height: 150px;
}
#fl-featured .posts-5 .fl-post .content {
    display: block;
    width: 46%;
    float: left;
}
#fl-featured .posts-5 .fl-post .category {
    font-size: .7rem;
    display: block;
    letter-spacing: 1px;
    font-family: var(--fl-headings-font);
    font-weight: var(--fl-headings-font-weight);
}

#fl-featured .posts-5 .fl-post .meta {
    font-size: .7rem;
    display: block;
    letter-spacing: 1px;
    font-style: italic;
    color: var(--fl-meta-color);
}
#fl-featured .posts-5 .fl-post .content .title {
    display: block;
    margin-top: 8px;
    margin-bottom: 0;
    word-break: break-word;
    font-size: 1rem;
}
#fl-featured .posts-5 .fl-post .content .title a {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
}

#fl-featured .posts-5 .fl-post:nth-child(1) {
    position: absolute;
    left: 32%;
    margin: 0 2%;
    padding: 0 2%;
    border-left: 1px solid rgba(128,128,128,.1);
    border-right: 1px solid rgba(128,128,128,.1);
}

#fl-featured .posts-5 .fl-post:nth-child(1) .fl-picture img { height: 270px; }

#fl-featured .posts-5 .fl-post:nth-child(1) .fl-picture,
#fl-featured .posts-5 .fl-post:nth-child(1) .content {
    width: 100%;
    text-align: center;
}
#fl-featured .posts-5 .fl-post:nth-child(1) .content .category { margin-top: 12px; }

#fl-featured .posts-5 .fl-post:nth-child(odd) {
    float: right;
    clear: right;
}

#fl-featured .posts-5 .fl-post:nth-child(2),
#fl-featured .posts-5 .fl-post:nth-child(3) {
    padding-bottom: 38px;
    border-bottom: 1px solid rgba(128,128,128,.1);
}

#fl-featured .posts-5 .fl-post:nth-child(4),
#fl-featured .posts-5 .fl-post:nth-child(5) { padding-top: 38px; }

#fl-featured .posts-5 .fl-post:nth-child(3),
#fl-featured .posts-5 .fl-post:nth-child(4) { text-align: right; }

#fl-featured .posts-5 .fl-post:nth-child(3) .fl-picture,
#fl-featured .posts-5 .fl-post:nth-child(4) .fl-picture {
    float: right;
    margin-left: 6%;    
    margin-right: 0;
}

/* 4 Posts */
#fl-featured .posts-4 .post-wrap {
    display: block;
    width: 50%;
    float: left;
    padding: 0 1px 2px;
}

#fl-featured .posts-4 .post-wrap .fl-post {
    position: relative;
    overflow: hidden;    
    height: 271px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
#fl-featured .posts-4 .post-wrap .fl-post .content {
    position: absolute;
    left: 24px;
    right: 8px;
    bottom: 16px;
}
#fl-featured .posts-4 .post-wrap .fl-post .content .title { margin: 8px 0; }
#fl-featured .posts-4 .post-wrap .fl-post .content .title a {
    color: #ffffff;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}
#fl-featured .posts-4 .post-wrap .fl-post .content .fl-meta {
    color: #f3f3f3;
    margin-left: 0;
    margin-right: 10px;
    line-height: 24px;
}
#fl-featured .posts-4 .post-wrap .fl-post .content .fl-meta:last-child { margin-right: 0; }
#fl-featured .posts-4 .post-wrap .fl-post .content .fl-meta a { color: #f3f3f3; }


#fl-featured .posts-4 .post-wrap:nth-child(1) .fl-post { height: 544px; }

#fl-featured .posts-4 .post-wrap:nth-child(n+2) .fl-post .content .fl-category a {
    padding: 0 8px;
    line-height: 24px;
    font-size: 10px;
}
#fl-featured .posts-4 .post-wrap:nth-child(n+2) .fl-post .content .title {
    font-size: 1.25rem;
    padding: 8px 0 0 0;
}

#fl-featured .posts-4 .post-wrap:nth-child(n+3) { width: 25%; }
#fl-featured .posts-4 .post-wrap:nth-child(n+3) .fl-post .content .title { font-size: .95rem; }


#fl-featured .posts-4 .post-wrap .fl-post .fl-picture {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,.2);
    background: -webkit-linear-gradient(transparent, rgba(0,0,0,.4));
    background: -o-linear-gradient(transparent, rgba(0,0,0,.4));
    background: -moz-linear-gradient(transparent, rgba(0,0,0,.4));
    background: linear-gradient(transparent, rgba(0,0,0,.4));
}
#fl-featured .posts-4 .post-wrap .fl-post .fl-picture .format-overlay {
    top: 24px;
    right: 24px;
    left: auto;
    margin-left: 0;
    margin-top: 0;
}


/* Loop Taps */
.fl-loop-tabs {
    position: sticky;
    background: var(--fl-body-background);
    margin-bottom: 40px;
    display: flex;
    z-index: 77;
}
.fl-loop-tabs a {
    position: relative;
    flex: 1;
    padding: 8px;
    font-size: 14px;
    text-align: center;
    white-space: nowrap;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: var(--fl-headings-font);
    font-weight: var(--fl-headings-font-weight);
    color: var(--fl-headings-color);
    background: rgba(128,128,128,.1);
    border-right: 1px solid rgba(128,128,128,.1);
}
.fl-loop-tabs a:last-child { border-right: none; }
.fl-loop-tabs a i { margin-right: 8px; }
.fl-loop-tabs a:hover,
.fl-loop-tabs a.active {
    background: var(--fl-accent-color);
    color: #ffffff;
}
.fl-loop-tabs a.active:after {
    content: "";
    display: block;
    position: absolute;
    border-top: 4px solid var(--fl-accent-color);
    border-right: 8px solid transparent !important;
    border-left: 8px solid transparent !important;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 0;
    margin-left: -8px;
}

/*-------------------------------------------------------------------------*/
/*  6. Loop Styles
/*-------------------------------------------------------------------------*/
/* Post Loop Style */
.fl-loop-section .fl-post .title {
    font-size: 1.2rem;
    display: block;
    margin: 24px 0 16px 0;
}

.fl-post .title a {
    display: block;
    color: var(--fl-headings-color);
}
.fl-post .title a:hover { color: var(--fl-accent-color); }

.fl-post .post-meta {
    background: rgba(128,128,128,.1);
    height: 32px;
    font-size: 0;
    overflow: hidden;
    padding-right: 4px;
}
.fl-category {
    font-size: 0;
    display: inline-block;
    overflow: hidden;
}
.fl-category a {
    display: inline-block;
    background: var(--fl-button-background);
    color: #ffffff;
    line-height: 32px;
    padding: 0 8px;
    text-transform: uppercase;
    border-right: 1px solid rgba(128,128,128,.1);
    font-size: 10px;
    letter-spacing: 1px;
    font-family: var(--fl-headings-font);
    font-weight: var(--fl-headings-font-weight);
}
.fl-category a:last-child { border-right: none; }
.fl-category a:hover { background: var(--fl-accent-color); }

/* Show only first 2 categories in loops */
.fl-post .fl-category a:nth-child(n+3) { display: none; }

/* Sticky */
.fl-post .post-meta .sticky {
    display: inline-block;
    overflow: hidden;
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    font-size: 1.1rem;
    font-family: "FontAwesome";
    content: "\f08d";
    color: #ffffff;
    background: var(--fl-accent-color);
}

.fl-meta {
    display: inline-block;
    overflow: hidden;
    color: var(--fl-meta-color);
    font-size: .7rem;
    margin-left: 16px;
    line-height: 32px;
    font-weight: var(--fl-headings-font-weight);
}
.fl-meta i { margin-right: 4px; }
.fl-meta a { color: var(--fl-meta-color); }

.fl-meta i img {
    border-radius: 50%;
    vertical-align: bottom;
}

.fl-excerpt { font-size: .75rem; }
.fl-excerpt p { opacity: .75; }
.fl-excerpt p:last-child { margin-bottom: 0; }

/* List Style */
.fl-list .fl-post {
    display: block;
    overflow: hidden;
    vertical-align: top;
    padding-bottom: 32px;
    margin-bottom: 32px;
    border-bottom: 1px solid rgba(128,128,128,.1);
}
.fl-list .fl-post .fl-picture {
    width: 42%;
    margin-right: 4%;
    position: relative;
    float: left;
}
.fl-list .fl-post .content {
    width: 54%;
    float: left;
    position: relative;
    display: block;
}

.fl-list .fl-post .title { font-size: 1.25rem; }

/* Grid Style */
.fl-grid .fl-loop-section {
    margin: 0 -16px;
    font-size: 0;
}
.fl-grid .fl-post {
    position: relative;
    display: inline-block;
    vertical-align: top;
    float: none;
    width: 50%;
    margin-bottom: 40px;
    padding: 0 16px;
}

.fl-grid.col-3 .fl-post {
    width: 33.33333%;
    width: calc(100% / 3);
}

/* Default Style */
/* Without thumbnail */
.fl-standard .fl-post { margin-bottom: 48px; }
.fl-standard .fl-post .content {
    max-width: 80%;
    margin: 0 auto;
}
/* With thumbnail */
.fl-standard .fl-post.has-post-thumbnail {
    position: relative;
    padding-bottom: 72px;
}
.fl-standard .fl-post.has-post-thumbnail .content {
    position: absolute;
    z-index: 1;
    min-height: 104px;
    bottom: 0;
    width: 80%;
    left: 10%;
}
.fl-standard .fl-post .content .post-meta {
    margin: 0 32px;
    background: transparent;
}
.fl-standard .fl-post .content .post-meta .fl-category a { padding: 0 16px; }

.fl-standard .fl-post.has-post-thumbnail .content .post-meta .fl-meta,
.fl-standard .fl-post.has-post-thumbnail .content .post-meta .fl-meta a {
    color: #ffffff;
    text-shadow: 0 0 3px #000;
}
.fl-standard .fl-post .content .title {
    margin: 0;
    padding: 24px 32px 16px 32px;
    font-size: 1.6rem;
    background: var(--fl-body-background);
}
.fl-standard .fl-post .content .fl-excerpt {
    padding: 0 32px;
    background: var(--fl-body-background);
    font-size: .9rem;
}

/*-------------------------------------------------------------------------*/
/*  7. Sidebar
/*-------------------------------------------------------------------------*/
#fl-sidebar {
    position: relative;
    float: right;
    display: block;
    width: calc(30% - 32px);
}
.widget { background: var(--fl-blog-background); }
.fl-widget a,
.widget a { color: var(--fl-body-color); }

.fl-widget a:hover,
.widget a:hover { color: var(--fl-accent-color); }

#fl-sidebar .fl-widget:last-child { margin-bottom: 0; }

.fl-widget a.wp-block-button__link,
.widget a.wp-block-button__link { color: #ffffff; }

/* Widgets Styles */
.fl-widget,
.widget {
    display: block;
    position: relative;
    font-size: .875rem;
    margin-bottom: 40px;
}

.fl-widget-title,
.widgettitle {
    position: relative;
    display: flex;
    font-size: 1.2rem;
    text-transform: uppercase;
    margin-bottom: 16px;
    align-items: center;
    gap: 16px;
}
.fl-widget-title:after,
.widgettitle:after {
    position: relative;
    flex: 1;
    height: 6px;
    background: rgba(128,128,128,.1);
    content: " ";
}

/* UL */
.fl-widget ul li,
.widget ul li {
    position: relative;
    display: block;
    border-bottom: 1px dotted rgba(128,128,128,.1);
    padding: 8px 0;
}

.fl-widget ul li ul,
.widget ul li ul {
    margin-top: 8px;
    padding: 0 24px;
    background: rgba(128,128,128,0.05);
}

.fl-widget ul li a,
.widget ul li a { font-weight: var(--fl-headings-font-weight); }

.fl-widget ul li ul li a,
.widget ul li ul li a { font-weight: 400; }

.fl-widget ul li ul li:last-child,
.widget ul li ul li:last-child { border-bottom: none; }

.fl-widget p:last-child,
.fl-widget table:last-child,
.widget p:last-child,
.widget table:last-child { margin-bottom: 0; }

.fl-widget .wp-block-image,
.fl-widget .wp-block-embed { margin-bottom: 0; }

/* Menu widget */
.fl-widget ul.menu li,
.widget ul.menu li {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    padding: 0;
}

.fl-widget ul.menu li ul.sub-menu,
.widget ul.menu li ul.sub-menu {
    width: 100%;
    display: none;
    margin-top: 0;
}

.fl-widget ul.menu li a,
.widget ul.menu li a {
    flex: 1;
    font-family: var(--fl-headings-font);
    letter-spacing: 0.5px;
    padding: 8px 0;
}

.fl-widget ul.menu li a:before,
.widget ul.menu li a:before {
    font-size: 1.4em;
    content: "\203a";
    padding-right: 8px;
    line-height: 1;
    font-weight: 400;
}

.fl-widget ul.menu li span.arrow,
.widget ul.menu li span.arrow {
    width: 48px;
    font-size: 1.4em;
    cursor: pointer;
    text-align: center;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
}

.fl-widget ul.menu li span.line,
.widget ul.menu li span.line {
    content: "";
    width: 1px;
    margin: 8px 0;
    align-self: stretch;
    background: rgba(128,128,128,.1);
}

.fl-widget ul.menu li span.arrow:hover,
.widget ul.menu li span.arrow:hover { color: var(--fl-accent-color); }

.fl-widget ul.menu li span.arrow.open,
.widget ul.menu li span.arrow.open {
    transform: rotate(90deg);
}


/* Tag Widget */
.tagcloud a,
.wp-block-tag-cloud a {
    display: inline-block;
    padding: 0 16px;
    margin: 2px;
    line-height: 32px;
    color: var(--fl-body-color);
    background: rgba(128,128,128,.1);
    font-size: 0.875rem !important;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -o-border-radius: 16px;
    border-radius: 16px;
}
.tagcloud a:hover,
.wp-block-tag-cloud a:hover {
    color: #ffffff;
    background: var(--fl-accent-color);
}

/* Calendar Widget */
.widget_calendar { overflow: auto; }
.widget_calendar table {
    margin-bottom: 8px;
    text-align: center;
}
.widget_calendar table td { padding: 4px 0; }
.widget_calendar nav { text-align: center; }

/* Search Form */
form.searchform { display: flex; }

/* Buzzmag Posts Widgets */
.fl-posts-widget { overflow: inherit; }
.fl-posts-widget .fl-post {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(128,128,128,.1);
}
.fl-posts-widget .fl-post:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
}
.fl-posts-widget .fl-picture {
    max-width: 120px;
    margin-right: 16px;
}
.fl-posts-widget .fl-picture a { height: 100%; }
.fl-posts-widget .fl-picture a img {
    object-fit: cover;
    height: 100%;
}
.fl-posts-widget .fl-post:not(.trend) .fl-picture .format-overlay {
    margin-left: -20px;
    margin-top: -20px;
    width: 40px;
    height: 40px;
    line-height: 40px;
}

.fl-posts-widget .fl-post .content { flex: 1; }
.fl-posts-widget .fl-post .content .title {
    margin-bottom: 8px;
    font-size: .875rem;
}
.fl-posts-widget .fl-post .content .title a {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4; /* number of lines to show */
           line-clamp: 4; 
    -webkit-box-orient: vertical;
}
.fl-posts-widget .fl-post .content .fl-meta {
    margin-left: 0;
    margin-right: 8px;
    line-height: 1;
}

/* Counter */
.fl-posts-widget {
    list-style-type: none;
    counter-reset: css-counter 0;
}
.fl-posts-widget .fl-post.count,
.fl-posts-widget .fl-post.trend { counter-increment: css-counter 1; }

.fl-posts-widget .fl-post.count .fl-picture a:before {
    content: counter(css-counter);
    position: relative;
    background: transparent;
    color: var(--fl-accent-color);
    font-size: 2.2rem;
    font-weight: 400;
    font-style: italic;
}

/* Trend Style */
.fl-posts-widget .fl-post.trend {
    display: block;
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
    margin-top: 32px;
}
.fl-posts-widget .fl-post.trend .fl-picture {
    max-width: 100%;
    margin-right: 0;
    overflow: inherit;
}
.fl-posts-widget .fl-post.trend .fl-picture a:after {    
    position: absolute;
    content: counter(css-counter);
    z-index: 1;
    top: -20px;
    left: 20px;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    font-style: italic;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    color: #ffffff;
    background: var(--fl-accent-color);
}

.fl-posts-widget .fl-post.trend .title {
    padding-top: 8px;
    font-size: 1rem;
}

/* About Widget */
.fl-about {
    display: block;
    position: relative;
    overflow: hidden;
}
.fl-about .profile { position: relative; }
.fl-about .profile .title {
    position: absolute;
    bottom: 0;
    width: 80%;
    left: 10%;
    background: var(--fl-body-background);
    padding-top: 8px;
    margin-bottom: 0;
    text-align: center;
}
.fl-about p {
    margin-top: 20px;
    padding-bottom: 0;
}

.fl-about .fl-meta {
    display: block;
    margin-left: 0;
    margin-top: 8px;
    line-height: 1.3;
    font-size: .8rem;
    text-align: center;
}
.fl-about .desc {
    display: block;
    margin-top: 8px;
    font-size: .8rem;
}
.fl-about .signing {
    display: table;
    margin: 16px auto 0 auto;
    max-width: 120px;
}

html[data-theme="dark"] .fl-about .signing { filter: invert(100%); }

/* Socials Widget */
.fl-socials .social-icons {
    padding: 0;
    text-align: center;
}
.fl-socials .social-icons a {
    display: inline-block;
    margin: 4px;
    font-size: 18px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: rgba(128,128,128,.1);
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -o-border-radius: 20px;
    border-radius: 20px;
}
.fl-socials .social-icons a:hover {
    background: var(--fl-accent-color);
    color: #ffffff !important;
}
.fl-socials .social-icons a span { font-size: 0; }

/* mc4wp-form */
.widget_mc4wp_form_widget {
    position: relative;
    text-align: center;
    padding: 40px 32px 24px;
    border: 4px solid rgba(128,128,128,.1);
    border-radius: 8px;
}
.widget_mc4wp_form_widget:before {
    content: "\f0e0";
    font-family: Fontawesome;
    position: absolute;
    display: block;
    width: 48px;
    height: 48px;
    font-size: 1.4rem;
    line-height: 48px;
    top: -24px;
    left: 50%;
    margin-left: -24px;
    background: rgba(128,128,128,.1);    
    color: var(--fl-headings-color);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%; 
}
.widget_mc4wp_form_widget .fl-widget-title:before,
.widget_mc4wp_form_widget .widgettitle:before {
    position: relative;
    flex: 1;
    height: 6px;
    background: rgba(128,128,128,.1);
    content: " ";
}
.mc4wp-form .mc4wp-alert {
    font-size: .75rem;
    margin-top: 8px;
}
.mc4wp-form .mc4wp-form-fields input[type="email"] { text-align: center; }
.mc4wp-form .mc4wp-form-fields input[type="submit"] {
    display: block;
    margin-top: 0;
    width: 100%;
}

/*-------------------------------------------------------------------------*/
/*  8. Article Style
/*-------------------------------------------------------------------------*/
/* Post Formats Styles */
.gallery-slider {
   width: 100%;
   display: block;
   position: relative;
   overflow: hidden;
}
.fl-picture {
    position: relative;
    display: block;
    overflow: hidden;
    font-size: 0;
    max-width: 100%;
}
.fl-picture img {
    width: 100%;
    height: auto;
    display: block;
}
.fl-picture a:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(6,25,35,0.15);
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.fl-picture .format-overlay {
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    margin-left: -24px;
    margin-top: -24px;
    width: 48px;
    height: 48px;
    line-height: 48px;
    font-size: 14px;
    text-align: center;
    background: var(--fl-button-background);
    color: #ffffff;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;    
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.fl-post:hover .fl-picture a:before { background: rgba(6,25,35,0.0); }
.fl-post:hover .fl-picture .format-overlay { background: var(--fl-accent-color); }
.fl-post:hover .title,
.fl-post:hover .title a { color: var(--fl-accent-color); }

.fl-video,
.fl-audio {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
    z-index: 0;
    line-height: 0;
}
.fl-audio iframe,
.fl-video iframe {
    margin: 0;
    padding: 0;
    z-index: 0;
    width: 100%;
}


/* Ad Place*/
.fl-ad { margin-top: 40px; }
.fl-ad .adtitle {
    display: block;
    text-align: center;
    margin-bottom: 8px;
    font-size: .75rem;
    font-weight: 400;
    opacity: .7;
}

/*-------------------------------------------------------------------------*/
/*  9. Ajax Pagination & Comments toggle
/*-------------------------------------------------------------------------*/
.fl-ajax-end {
    display: block;
    max-width: 400px;
    text-align: center;
    font-size: .75rem;
    margin: 32px auto 0;
    background: rgba(128,128,128,.1);
    padding: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 24px;
}
.fl-load-more,
.fl-comments-toggle {
    display: table;
    background: rgba(128,128,128,.1);
    color: var(--fl-headings-color);
    padding: 16px 32px;
    margin: 32px auto 0;
    font-size: .875rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--fl-headings-font);
    font-weight: var(--fl-headings-font-weight);
    -webkit-border-radius: 32px;
    -moz-border-radius: 32px;
    -o-border-radius: 32px;
    border-radius: 32px;
}
.fl-load-more:hover,
.fl-comments-toggle:hover {
    background: var(--fl-accent-color);
    color: #ffffff;
}
.fl-load-more i,
.fl-comments-toggle i { margin-right: 8px; }

.fl-comments-toggle {
    display: block;
    width: 240px;
    margin: 48px auto;
}

/*-------------------------------------------------------------------------*/
/*  10. Single Post & Page Style
/*-------------------------------------------------------------------------*/
/* Article Style */
#fl-content.fl-single { margin-top: 0; }

.fl-article .fl-category { display: block; }
.fl-article .fl-category a { padding: 0 16px; }

.fl-post-header { padding-top: 24px; }

body.page .fl-post-header { padding-top: 0; }

.fl-post-header .fl-excerpt {
    margin-bottom: 24px;
    font-size: .9rem;
}

.fl-post-header .fl-meta {
    font-size: .875rem;
    margin-left: 0;
    margin-right: 16px;
    line-height: 40px;
}
.fl-post-header .fl-meta i { margin-right: 8px; }

.fl-media-wrap { margin-bottom: 40px; }

/* Negative Margin */
.negative-margin .fl-article {
    margin-top: -180px;
    z-index: 1;
}
.negative-margin .fl-post-header,
body.page .negative-margin .fl-post-header {
    background: var(--fl-body-background);
    padding: 24px 32px 0 32px;
    margin: 0 -32px;
}

/* post content */
.fl-post-content {
    position: relative;
    display: block;
    font-size: 16px; 
    border-top: 2px solid rgba(128,128,128,.1);
    padding-top: 32px;
}

.fl-post-content.template {
    padding-top: 0;
    border-top: 0;
}

.fl-post-content h1,
.fl-post-content h2,
.fl-post-content h3,
.fl-post-content h4,
.fl-post-content h5,
.fl-post-content h6 { padding-top: 16px; }

.fl-post-content hr { margin-bottom: 24px; }

/* Content List Style and Mixes Lists */
.fl-post-content ul {
    list-style: disc;
    margin-left: 48px;
    margin-bottom: 24px;
}
.fl-post-content ol {
    list-style: decimal;
    margin-left: 48px;
    margin-bottom: 24px;
}
.fl-post-content ul ul,
.fl-post-content ol ol,
.fl-post-content ul ol,
.fl-post-content ol ul {
    margin-bottom: 0;
    margin-left: 40px;
}

/* OWl Carousel */
.owl-carousel { z-index: 0; }
.owl-carousel .owl-nav {
    position: absolute;
    bottom: 0;
    right: 0;
}
.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
    height: 40px;
    line-height: 40px;
    margin: 0;
    padding: 0 16px;
    color: var(--fl-headings-color);
    background-color: var(--fl-body-background);
    text-align: center;
    overflow: hidden;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
}

.owl-carousel .owl-nav button:hover {
    background-color: var(--fl-headings-color);
    color: var(--fl-body-background);
}
.owl-carousel .owl-nav button.owl-prev { border-right: 1px solid rgba(128,128,128,.1); }
.owl-carousel .owl-nav button:before {
    display: block;
    overflow: hidden;
    font: normal normal normal 16px/40px FontAwesome;
}
.owl-carousel .owl-nav button.owl-prev:before { content: "\f177"; }
.owl-carousel .owl-nav button.owl-next:before { content: "\f178"; }

/* page links */
.fl-page-links {
    display: block;
    position: relative;
    overflow: hidden;
    padding: 32px 0;
    text-align: center;
}
.fl-page-links a {
    display: inline-block;
    line-height: 40px;
    width: 140px;
    font-size: .875rem;
    font-weight: var(--fl-headings-font-weight);
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -o-border-radius: 20px;
    border-radius: 20px;    
    background: rgba(128,128,128,.1);
    color: var(--fl-headings-color);
}

.fl-page-links a:hover {
    background: var(--fl-accent-color);
    color: #ffffff;
}
.fl-page-links a span,
.fl-page-links a i { padding: 0 4px; }

.fl-page-links .page-link-sep {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: var(--fl-headings-font-weight);
    padding: 0 16px;
}
.fl-page-links .page-link-sep span {
    display: block;
    color: var(--fl-meta-color);
    font-size: .875rem;
}

/* Sharing */
.mashsb-container { margin-bottom: 32px; }

.fl-tags {
    display: block;
    margin-top: 40px;
}
.fl-tags .tag,
.fl-tags a {
    display: inline-block;
    padding: 0 16px;
    margin: 2px;
    line-height: 32px;
    background: rgba(128,128,128,.1);
    color: var(--fl-meta-color);
    font-size: 0.875rem;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -o-border-radius: 16px;
    border-radius: 16px;
}
.fl-tags .tag {
    margin: 0;
    background: var(--fl-headings-color);
    color: var(--fl-body-background);
    font-weight: var(--fl-headings-font-weight);
}
.fl-tags a:hover {
    color: #ffffff;
    background: var(--fl-accent-color);
}

/* Author Section */
body.single .fl-box {
    padding: 24px;
    gap: 24px;
    margin-top: 48px;
    margin-bottom: 0;
    border-radius: 8px;
}

/* Related Posts */
.fl-related { margin-top: 48px; }
.fl-related .fl-loop-section {
    margin: 0 -12px;
    font-size: 0;
}
.fl-related .fl-loop-section .fl-post {
    padding: 0 12px;
    margin-bottom: 24px;
    border-bottom: 0;
}
.fl-related .fl-loop-section .fl-post .title {
    font-size: .875rem;
    margin: 0;
    padding: 12px 0 8px;
}
.fl-related .fl-loop-section .fl-post .fl-meta {
    line-height: 1.75;
    margin-left: 0;
    margin-right: 12px;
}
.fl-related .fl-loop-section .fl-post .fl-meta:last-child { margin-right: 0; }
.fl-related .fl-loop-section .fl-post .fl-meta.category a { color: var(--fl-accent-color); }

/* Editor Picks */
.fl-related.picks { margin-top: 32px; }
.fl-related .fl-list .fl-post {
    display: inline-block;
    width: 50%;
}
.fl-related .fl-list .fl-loop-section .fl-post .title { padding: 0 0 8px 0; }

#fl-post-container.no-sidebar .fl-related.alignwide .fl-list .fl-post,
body.error404 .fl-related.alignwide .fl-list .fl-post {
    width: 33.33333%;
    width: calc(100% / 3);
}

/*-------------------------------------------------------------------------*/
/*  11. Comments
/*-------------------------------------------------------------------------*/
.fl-comments { display: none; }
.fl-comment-list {
    display: block;
    position: relative;
    overflow: hidden;
}
.fl-comment-list li.comment,
.fl-comment-list li.trackback,
.fl-comment-list li.pingback {
    position: relative;
    display: block;
    overflow: hidden;
    padding-left: 76px;
    margin-bottom: 40px;
}
.fl-comment-list li.comment:before,
.fl-comment-list li.trackback:before,
.fl-comment-list li.pingback:before {
    content: "";
    position: absolute;
    left: 28px;
    top: 60px;
    bottom: 0;
    width: 2px;
    background: rgba(128,128,128,.1);
}
.fl-comment-list li.comment:after,
.fl-comment-list li.trackback:after,
.fl-comment-list li.pingback:after {
    content: "";
    position: absolute;
    left: 28px;
    right: 0;
    bottom: 0;
    height: 2px;
    background: rgba(128,128,128,.1);
}
.fl-comment-list li.trackback,
.fl-comment-list li.pingback {
    padding-left: 58px;
    padding-bottom: 8px;
}
.fl-comment-list li.comment div.comment-author img.avatar {
    position: absolute;
    top: 0;
    left: 0;
    border: 2px solid rgba(128,128,128,.1);
    -webkit-border-radius: 50%;
       -moz-border-radius: 50%;
            border-radius: 50%;
}
.fl-comment-list li.comment:not(.bypostauthor) div.comment-author img.avatar { border: 2px solid rgba(128,128,128,.1); }

.fl-comment-list li.comment div.comment-author .fn,
.fl-comment-list li.comment div.comment-author .fn a {
    display: inline-block;
    margin-top: 4px;
    font-size: 1rem;
    font-weight: var(--fl-headings-font-weight);
    color: var(--fl-headings-color);
}
.fl-comment-list li.comment div.comment-author .says { display: none; }
.fl-comment-list li.comment .comment-meta {
    display: block;
    font-size: .85rem;
    line-height: 1;
    margin-top: 4px;
    margin-bottom: 24px;
}
.fl-comment-list li.comment .comment-meta a { color: var(--fl-meta-color); }

/* bypostauthor */
.fl-comment-list li.bypostauthor:before,
.fl-comment-list li.bypostauthor:after { background: var(--fl-accent-color); }
.fl-comment-list li.bypostauthor div.comment-author img.avatar { border-color: var(--fl-accent-color); }

.fl-comment-list div.comment-body ul {
    list-style: disc;
    margin-left: 24px;
    margin-bottom: 24px;
}
.fl-comment-list div.comment-body ol {
    list-style: decimal;
    margin-left: 24px;
    margin-bottom: 24px;
}
.fl-comment-list div.comment-body ul ul,
.fl-comment-list div.comment-body ol ol,
.fl-comment-list div.comment-body ul ol,
.fl-comment-list div.comment-body ol ul {
    margin-bottom: 0;
    margin-left: 24px;
}

.reply a {
    position: absolute;
    bottom: 4px;
    right: 0;
    font-size: .75rem;
    line-height: 32px;
    padding: 0 16px;
    font-weight: var(--fl-headings-font-weight);
    background: rgba(128,128,128,.1);
    color: var(--fl-body-color);
    border-radius: 16px;
}
.reply a:hover {
    color: #ffffff;
    background: var(--fl-accent-color);
}

.fl-comments .fl-pagination { padding-top: 0; }

.fl-comments .fl-no-comments { text-align: center; }

/* Respond */
#respond {
    border: 2px solid rgba(128,128,128,.1);
    padding: 24px;
}
#fl-reply-title { position: relative; }
#fl-reply-title small {
    display: block;
    margin-top: 8px;
}
#respond form {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    gap: 16px;
}
#respond form p {
    margin-bottom: 0;
    flex: 1;
}
#respond form .comment-notes,
#respond form .comment-form-comment,
#respond form .comment-form-cookies-consent { flex: 100%; }
#respond form .form-submit {
    margin-bottom: 0;
    flex: 100%;
}

#respond form .form-submit input[type="submit"] {
    display: table;
    margin: 0 auto;
    border-radius: 24px;
}

.fl-comment-list li.comment #respond { margin-bottom: 40px; }

/*-------------------------------------------------------------------------*/
/*  12. Footer
/*-------------------------------------------------------------------------*/
.fl-ad.footer { margin-top: 80px; }
#fl-footer {
    position: relative;
    display: block;
    margin-top: 80px;
    overflow: hidden;   
    background-color: var(--fl-footer-background);    
    color: var(--fl-footer-color);
}

#fl-footer a { color: var(--fl-footer-color); }

#fl-footer a:hover,
#fl-footer .title a:hover,
#fl-footer .fl-widget.widget_mc4wp_form_widget:before,
#fl-footer h1,
#fl-footer h2,
#fl-footer h3,
#fl-footer h4,
#fl-footer h5,
#fl-footer h6 { color: var(--fl-footer-headings-color); }

#fl-footer input[type="submit"],
#fl-footer button { background: var(--fl-accent-color); }

#fl-footer input[type="submit"]:hover,
#fl-footer button:hover { opacity: .8; }

#fl-footer-widgets { padding-top: 56px; }
#fl-footer-widgets .widget-column {
    position: relative;
    display: block;
    float: left;
    width: 30%;
    margin-right: 5%;
}
#fl-footer-widgets .widget-column:last-child { margin-right: 0; }

#fl-footer-widgets .fl-widget .fl-meta { opacity: .7; }

#fl-footer-widgets .fl-widget .fl-meta,
#fl-footer-widgets .fl-widget .fl-meta a,
#fl-footer-widgets #fl-footer { color: var(--fl-footer-color); }

#fl-copyright {    
    font-size: .75rem;
    padding: 24px 0;
    border-top: 1px solid rgba(128,128,128,.1);
}

#fl-copyright .footer-menu {
    float: right;
    display: block;
}
#fl-copyright .copyright {
    display: block;
    float: left;
}
#fl-copyright .footer-menu li {
    position: relative;
    display: inline-block;
}
#fl-copyright .footer-menu li a {
    position: relative;
    display: block;
    padding: 0 8px;
    font-weight: var(--fl-headings-font-weight);
}

/*-------------------------------------------------------------------------*/
/*  13. Archive Pages Style
/*-------------------------------------------------------------------------*/
/* Category, Tag, Author,...etc box Style */
.fl-box {
    display: flex;
    flex-flow: row wrap;
    background: rgba(128,128,128,.1);
    padding: 40px;    
    margin-bottom: 40px;
    gap: 32px;
    align-items: center;
}
.fl-box .head .title {
    margin-bottom: 0;
    text-transform: uppercase;
}
.fl-box .fl-category a {
    margin: 0 4px;
    padding: 0 16px;
    border-radius: 16px;
}
.fl-box div.avatar img {
    -webkit-border-radius: 50%;
       -moz-border-radius: 50%;
            border-radius: 50%;
}
.fl-box .info { flex: 1; }
.fl-box .info .title { margin-bottom: 8px; }
.fl-box .info a { color: var(--fl-body-color); }
.fl-box .info a:hover { color: var(--fl-accent-color); }
.fl-box .fl-meta {
    display: block;
    margin-left: 0;
    font-size: .875rem;
}
.fl-box .info p {
    opacity: .8;
    margin-bottom: 8px;
    font-size: .875rem;
}
.fl-box .info p:last-child { margin-bottom: 0; }
.fl-box .social a {
    display: inline-block;
    padding: 0 8px;
    font-size: .9rem;
}
body.error404 .fl-box .head .title { font-size: 3rem; }

/*-------------------------------------------------------------------------*/
/*  14. Media Queries
/*-------------------------------------------------------------------------*/

@media only screen and (max-width: 1024px) {
    #fl-topmenu { display: none; }
    #fl-drawer-icon { display: block !important; }

    /* Featured Posts */
    /* 4 Posts */
    #fl-featured .posts-4 .post-wrap .fl-post { height: 239px; }
    #fl-featured .posts-4 .post-wrap:nth-child(1) .fl-post { height: 480px; }

    /* 5 Posts */
    #fl-featured .posts-5 .fl-post:nth-child(2),
    #fl-featured .posts-5 .fl-post:nth-child(3) { padding-bottom: 16px; }
    #fl-featured .posts-5 .fl-post:nth-child(4),
    #fl-featured .posts-5 .fl-post:nth-child(5) { padding-top: 16px; }
    #fl-featured .posts-5 .fl-post .category,
    #fl-featured .posts-5 .fl-post .meta { font-size: 10px; }
    #fl-featured .posts-5 .fl-post .content .title {
        margin-top: 4px;
        font-size: 14px;
    }

    #fl-featured .posts-5 .fl-post .fl-picture img { height: 120px; }
    #fl-featured .posts-5 .fl-post:nth-child(1) .fl-picture img { height: 184px; }

    .fl-loop-tabs a { font-size: 12px; }

    .fl-meta { margin-left: 8px; }

    .fl-standard .fl-post.has-post-thumbnail { padding-bottom: 96px; }
    .fl-standard .fl-post.has-post-thumbnail .content { min-height: 128px; }
}


@media only screen and (max-width: 768px) {
    #fl-header .fl-container { padding: 0; }
    #fl-drawer-icon { padding: 0 16px; }
    #fl-header .header-icons { right: 0; }
    #fl-topsearch,
    #fl-header .cart-contents,
    #fl-header .my-account,
    .fl-theme-switch { width: 32px; }

    #fl-drawer-icon .text { display: none; }
    .fl-container { padding: 0 16px; }
    #fl-drawer { padding: 16px; }

    .overlay-search { max-width: 576px; }
    .overlay-search form:before {
        font-size: 16px;
        line-height: 48px;
        width: 48px;
    }
    .overlay-search .searchform input[type="text"] {
        font-size: .875rem;
        line-height: 48px;
        height: 48px;
        padding: 0 120px 0 48px;
    }
    .overlay-search .searchform button {
        font-size: .8rem;
        height: 48px;
        padding: 0 24px;
    }


    /* Featured Posts */
    /* 1 Post */
    #fl-featured .post-1 {
        padding: 0;
        margin-bottom: 24px;
    }
    #fl-featured .post-1 .fl-post { height: 360px; }
    #fl-featured .post-1 .fl-post .fl-picture .format-overlay { top: 40%; }
    #fl-featured .post-1 .fl-post .content .inner { padding: 16px 8px 0; }
    #fl-featured .post-1 .fl-post .content .inner .title { font-size: 18px; }
    #fl-featured .post-1 .fl-post .content .inner .fl-meta { margin: 0 4px; }

    /* 4 Posts */    
    #fl-featured .posts-4 {
        margin: 0;
        padding: 0;
    }
    #fl-featured .posts-4 .post-wrap .fl-post { height: 200px; }
    #fl-featured .posts-4 .post-wrap:nth-child(1) .fl-post { height: 402px; }
    #fl-featured .posts-4 .post-wrap .fl-post .content { left: 16px; }
    #fl-featured .posts-4 .post-wrap .fl-post .fl-picture .format-overlay {
        top: 16px;
        right: 16px;
    }

    /* 5 Posts */
    #fl-featured .posts-5 {
        max-width: 576px;
        margin-top: 0;
    }
    #fl-featured .posts-5 .fl-post {
        width: 100%;
        padding: 16px 0 !important;
        border-bottom: 1px solid rgba(128,128,128,.1);
    }

    #fl-featured .posts-5 .fl-post .fl-picture,
    #fl-featured .posts-5 .fl-post:nth-child(1) .fl-picture { width: 160px; }

    #fl-featured .posts-5 .fl-post .fl-picture img,
    #fl-featured .posts-5 .fl-post:nth-child(1) .fl-picture img { height: auto; }

    #fl-featured .posts-5 .fl-post .content,
    #fl-featured .posts-5 .fl-post:nth-child(1) .content {
        width: calc(100% - 176px);
        overflow: hidden;
        text-overflow: ellipsis;
    }

    #fl-featured .posts-5 .fl-post:nth-child(1) {
        position: relative;
        left: auto;
        right: auto;
        margin: 0;
        padding: 0;
        border-left: none;
        border-right: none;
    }
    #fl-featured .posts-5 .fl-post:nth-child(1) .content .category { margin-top: 0; }
    #fl-featured .posts-5 .fl-post:nth-child(even) .fl-picture {
        float: right;
        margin-left: 16px;
        margin-right: 0;
    }
    #fl-featured .posts-5 .fl-post:nth-child(odd) .fl-picture {
        float: left;
        margin-right: 16px;
        margin-left: 0;
    }
    #fl-featured .posts-5 .fl-post:nth-child(even) .content { text-align: right; }
    #fl-featured .posts-5 .fl-post:nth-child(odd) .content { text-align: left; }

    /* Ad Place */
    .fl-ad { margin-top: 24px; }

    /* Main Content */
    #fl-content { margin-top: 24px; }

    #fl-post-container {
        width: 100%;
        float: none;
    }
    #fl-sidebar {
        width: 100%;
        float: none;
        margin-top: 48px;
    }

    .fl-left,
    .fl-right { float: none !important; }

    .fl-widget {
        max-width: 500px;
        width: 100%;
        margin: 0 auto 40px;
    }

    /* Loop Tabs */
    .fl-loop-tabs { margin: 0 -16px 32px; }
    .fl-loop-tabs a {
        padding: 12px 0 8px;
        font-size: 8px;
        white-space: normal;
    }
    .fl-loop-tabs a i {
        display: block;
        margin-right: 0;
        margin-bottom: 4px;
        font-size: 16px;
    }

    /* Grid 3 Col */    
    .fl-grid.col-3 .fl-post { width: 50%; }

    /* Single Post */
    .fl-media-wrap { margin: 0 -16px 40px -16px; }
    .negative-margin .fl-article { margin-top: -72px; }

    body.page .negative-margin .fl-article { margin-top: -40px; }

    .negative-margin .fl-post-header,
    body.page .negative-margin .fl-post-header {
        padding: 24px 0 0 0;
        margin: 0;
    }

    .owl-carousel .owl-nav {  
        bottom: 32px;
        right: 16px !important;
        left: auto !important;
    }

    /* Related Posts */
    .fl-related .fl-loop-section .fl-post {
        width: 33.33333%;
        width: calc(100% / 3);
    }
    /* Editor Picks */
    .fl-related .fl-list .fl-post,
    #fl-post-container.no-sidebar .fl-related.alignwide .fl-list .fl-post,
    body.error404 .fl-related.alignwide .fl-list .fl-post { width: 50%; }


    /* Footer */
    .fl-ad.footer { margin-top: 48px; }

    #fl-footer { margin-top: 48px; }

    #fl-footer-widgets { padding-top: 40px; }

    #fl-footer-widgets .widget-column {
        display: block;
        width: 100%;
    }
    #fl-copyright { padding: 16px 0; }
    #fl-copyright .footer-menu,
    #fl-copyright .copyright {
        float: none;
        text-align: center;
    }

    #fl-copyright .footer-menu { margin-bottom: 8px; }

    /* Archive Box */
    .fl-box {
        padding: 24px 16px;
        margin: 0 -16px 24px -16px;
        gap: 16px;
    }
    .fl-box .info { flex: 100%; }
    body.single .fl-box {
        margin-left: 0;
        margin-right: 0;
    }
    body.single .fl-box .info { flex: 1; }
    
}

@media only screen and (max-width: 576px) {

    /* Headings */
    h1 {font-size: 1.77rem;}
    h2 {font-size: 1.57rem;}
    h3 {font-size: 1.39rem;}
    h4 {font-size: 1.23rem;}
    h5 {font-size: 1rem;}

    #fl-header .social-icons { display: none; }

    /* Featured Posts */
    /* 1 Post */
    #fl-featured .post-1 .fl-post .content {
        width: auto;
        right: 16px;
        left: 16px;
        margin-left: 0;
    }
    /* 4 Posts */
    #fl-featured .posts-4 .post-wrap {
        width: 100%;
        padding: 0 0 2px;
    }
    #fl-featured .posts-4 .post-wrap:nth-child(1) .fl-post { height: 360px; }
    #fl-featured .posts-4 .post-wrap:nth-child(n+3) {
        width: 50%;
        padding: 0 1px;
    }

    /* Grid Posts */
    .fl-loop-section .fl-post .title { margin: 16px 0 8px 0; }
    .fl-grid .fl-loop-section { margin: 0; }
    .fl-grid .fl-post,
    .fl-grid.col-3 .fl-post {
        display: block;
        width: 100%;
        padding: 0;
    }
    /* List Posts */
    .fl-list .fl-post {
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 40px;
    }
    .fl-list .fl-post .fl-picture,
    .fl-list .fl-post .content {
        width: 100%;
        margin: 0;
        float: none;
    }

    /* Default Style */
    /* Without thumbnail */
    .fl-standard .fl-post .content {
        max-width: 100%;
        margin: 0 auto 40px auto;
    }
    /* With thumbnail */
    .fl-standard .fl-post.has-post-thumbnail { padding-bottom: 0; }
    .fl-standard .fl-post.has-post-thumbnail .content {
        position: relative;
        min-height: auto;
        bottom: auto;
        width: 100%;
        left: auto;
    }
    .fl-standard .fl-post .content .post-meta {
        margin: 0;
        background: rgba(128,128,128,.1);
    }
    .fl-standard .fl-post .content .post-meta .fl-category a { padding: 0 8px; }

    .fl-standard .fl-post.has-post-thumbnail .content .post-meta .fl-meta,
    .fl-standard .fl-post.has-post-thumbnail .content .post-meta .fl-meta a {
        color: var(--fl-meta-color);
        text-shadow: none;
    }
    .fl-standard .fl-post .content .title {
        padding: 16px 0 8px 0;
        font-size: 1.2rem;
    }
    .fl-standard .fl-post .content .fl-excerpt {
        padding: 0;
        font-size: .75rem;
    }

    /* Single Post*/
    .fl-post-header .fl-meta {
        font-size: .8rem;
        margin-right: 8px;
    }
    .fl-post-header .fl-meta i { margin-right: 4px; }

    .fl-page-links a { width: 104px; }

    .fl-box { gap: 8px !important; }
    .fl-box div.avatar {
        width: 100%;
        text-align: center;
    }

    .fl-box .fl-category a {
        padding: 0 10px;
        margin: 0 4px;
    }

    /* Related Posts */
    .fl-related .fl-loop-section {
        margin: 0 -8px;
    }
    .fl-related .fl-loop-section .fl-post {
        padding: 0 8px;
        width: 50%;
        display: inline-block;
    }
    .fl-related .fl-loop-section .fl-post .fl-meta { margin-right: 8px; }

    /* Editor Picks */
    .fl-related .fl-list .fl-post,
    #fl-post-container.no-sidebar .fl-related.alignwide .fl-list .fl-post,
    body.error404 .fl-related.alignwide .fl-list .fl-post {
        display: block;
        width: 100%;
    }
    .fl-related .fl-list .fl-post .fl-picture {
        width: 42%;
        margin-right: 4%;
        position: relative;
        float: left;
    }
    .fl-related .fl-list .fl-post .content {
        width: 54%;
        float: left;
        position: relative;
        display: block;
    }

    /* Comments */
    .fl-comment-list li.comment,
    .fl-comment-list li.trackback,
    .fl-comment-list li.pingback {
        padding-left: 58px;
        margin-bottom: 32px;
    }

    .fl-comment-list li.comment:before,
    .fl-comment-list li.trackback:before,
    .fl-comment-list li.pingback:before {
        left: 23px;
        top: 50px;
    }
    .fl-comment-list li.comment:after,
    .fl-comment-list li.trackback:after,
    .fl-comment-list li.pingback:after { left: 23px; }

    .fl-comment-list li.comment div.comment-author img.avatar { width: 50px; }
    .fl-comment-list li.comment .comment-meta { margin-bottom: 16px; }
    #respond { padding: 16px; }
    #respond form p { flex: 100%; }
}