 .mega-menu .error-msg{
    justify-content:center
}
 .mobile-menu-toggle{
    display:none;
    height:34px;
    font-size:26px;
    color:var(--header-color);
    align-items:center;
    padding:0 13px 0 16px
}
 .rtl .mobile-menu-toggle{
    padding:0 16px 0 13px
}
 .mobile-menu-toggle:after{
    content:'\e5d2';
    font-family:'Material Icons Round';
    font-weight:400
}
 .mobile-menu-toggle:hover{
    color:var(--header-hover-color)
}
 .toggle-wrap{
    background-color:var(--header-bg);
    display:flex;
    align-items:center;
    z-index:20
}
 .darkmode-toggle{
    display:flex;
    align-items:center;
    position:relative;
    width:34px;
    height:20px;
    background-color:var(--gray-bg);
    font-size:12px;
    color:var(--header-color);
    margin:0 15px 0 0;
    border-radius:20px
}
 .rtl .darkmode-toggle{
    margin:0 0 0 15px
}
 .darkmode-toggle:before{
    position:absolute;
    left:2px;
    content:'\e518';
    font-family:'PBT Icons';
    width:16px;
    height:16px;
    background-color:var(--header-bg);
    flex-shrink:0;
    font-weight:400;
    line-height:16px;
    text-align:center;
    z-index:2;
    border-radius:50%;
    box-shadow:0 0 2px rgba(0,0,0,0.1);
    transition:left .17s ease
}
 .is-dark .darkmode-toggle:before{
    content:'\ea46';
    left:16px
}
 .rtl .darkmode-toggle:before{
    left:16px
}
 .rtl.is-dark .darkmode-toggle:before{
    left:2px
}
 .darkmode-toggle:after{
    position:absolute;
    right:4px;
    content:'\ea46';
    font-family:'Material Icons Round';
    width:10px;
    height:10px;
    flex-shrink:0;
    font-size:8px;
    font-weight:400;
    line-height:10px;
    text-align:center;
    opacity:.5;
    transition:right .17s ease
}
 .is-dark .darkmode-toggle:after{
    content:'\e518';
    right:20px
}
 .rtl .darkmode-toggle:after{
    right:20px
}
 .rtl.is-dark .darkmode-toggle:after{
    right:4px
}
 .darkmode-toggle:hover:before{
    color:var(--header-hover-color)
}
 .search-toggle{
    display:flex;
    align-items:center;
    justify-content:center;
    width:34px;
    height:34px;
    background-color:var(--gray-bg);
    color:var(--header-color);
    font-size:24px;
    cursor:pointer;
    border-radius:var(--radius)
}
 .search-toggle:before{
    display:block;
    content:'\e8b6';
    font-family:'Material Icons Round';
    font-weight:400
}
 .search-toggle:hover{
    color:var(--header-hover-color)
}
 #main-search-wrap{
    display:none;
    position:absolute;
    top:0;
    right:0;
    width:100%;
    height:60px;
    background-color:var(--header-bg);
    z-index:25
}
 .rtl #main-search-wrap{
    left:0;
    right:unset
}
 @-webkit-keyframes showSearch{
    0%{
        width:80%;
        opacity:0
    }
    100%{
        width:100%;
        opacity:1
    }
}
 .main-search{
    position:relative;
    float:right;
    width:100%;
    height:100%;
    display:flex;
    align-items:center;
    animation:showSearch .17s ease
}
 .rtl .main-search{
    float:left
}
 .main-search .search-form{
    display:flex;
    flex:1;
    height:34px
}
 .main-search .search-input{
    width:100%;
    flex:1;
    font-family:inherit;
    font-size:15px;
    color:var(--header-color);
    font-weight:400;
    text-align:left
}
 .rtl .main-search .search-input{
    text-align:right
}
 .main-search .search-input::placeholder{
    color:var(--header-color);
    opacity:.65;
    outline:none
}
 .main-search .search-toggle:before{
    content:'\e5cd'
}
 .overlay{
    visibility:hidden;
    opacity:0;
    position:fixed;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background-color:rgba(17,17,17,0.3);
    z-index:1000;
    -webkit-backdrop-filter:saturate(100%) blur(1px);
    -ms-backdrop-filter:saturate(100%) blur(1px);
    -o-backdrop-filter:saturate(100%) blur(1px);
    backdrop-filter:saturate(100%) blur(1px);
    margin:0;
    transition:all .25s ease
}
 #slide-menu{
    display:none;
    position:fixed;
    width:300px;
    height:100%;
    top:0;
    left:0;
    bottom:0;
    background-color:var(--mobilemenu-bg);
    overflow:hidden;
    z-index:1010;
    left:0;
    -webkit-transform:translateX(-100%);
    transform:translateX(-100%);
    visibility:hidden;
    box-shadow:3px 0 10px rgba(0,0,0,0.1);
    transition:all .25s ease
}
 .rtl #slide-menu{
    left:unset;
    right:0;
    -webkit-transform:translateX(100%);
    transform:translateX(100%)
}
 .nav-active #slide-menu,.rtl .nav-active #slide-menu{
    -webkit-transform:translateX(0);
    transform:translateX(0);
    visibility:visible
}
 .slide-menu-header{
    height:60px;
    background-color:var(--header-bg);
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:space-between;
    box-shadow:0 0 10px rgba(0,0,0,0.1)
}
 .mobile-logo{
    display:flex;
    flex:1;
    width:100%;
    overflow:hidden;
    padding:0 0 0 20px
}
 .rtl .mobile-logo{
    padding:0 20px 0 0
}
 .mobile-logo .homepage{
    max-width:100%;
    font-size:25px;
    color:var(--header-color);
    line-height:40px;
    font-weight:700;
    overflow:hidden;
    white-space:nowrap;
    text-overflow:ellipsis
}
 .mobile-logo .homepage:hover{
    color:var(--header-hover-color)
}
 .mobile-logo .logo-img img{
    display:block;
    width:auto;
    max-width:100%;
    height:auto;
    max-height:40px
}
 .hide-mobile-menu{
    display:flex;
    height:100%;
    color:var(--header-color);
    font-size:26px;
    align-items:center;
    z-index:20;
    padding:0 15px
}
 .hide-mobile-menu:before{
    content:'\e5cd';
    font-family:'Material Icons Round';
    font-weight:400
}
 .hide-mobile-menu:hover{
    color:var(--header-hover-color)
}
 .slide-menu-flex{
    display:flex;
    height:calc(100% - 60px);
    flex-direction:column;
    justify-content:space-between;
    overflow:hidden;
    overflow-y:auto;
    -webkit-overflow-scrolling:touch
}
 .mobile-menu{
    padding:20px
}
 .mobile-menu .m-sub{
    display:none;
    grid-column:1/3;
    overflow:hidden
}
 .mobile-menu ul li a{
    display:block;
    font-size:14px;
    color:var(--mobilemenu-color);
    font-weight:400;
    padding:10px 0
}
 .mobile-menu > ul > li > a{
    font-family:var(--menu-font);
    font-weight:700;
    text-transform:uppercase
}
 .mobile-menu li.has-sub{
    display:grid;
    grid-template-columns:1fr 34px
}
 .mobile-menu .submenu-toggle{
    display:block;
    align-self:center;
    font-size:24px;
    color:var(--mobilemenu-color);
    text-align:right
}
 .rtl .mobile-menu .submenu-toggle{
    text-align:left
}
 .mobile-menu .submenu-toggle:before{
    content:'\e5cf';
    font-family:'Material Icons Round';
    font-weight:400
}
 .mobile-menu .expanded > .submenu-toggle:before{
    content:'\e5ce'
}
 .mobile-menu ul li a:hover,.mobile-menu .submenu-toggle:hover{
    color:var(--mobilemenu-hover-color)
}
 .mobile-menu li.has-sub li a{
    font-size:14px;
    opacity:.75;
    padding:10px
}
 .mobile-menu li.has-sub li li a{
    padding:10px 20px
}
 .mm-footer{
    padding:20px
}
 .mm-footer .mm-social{
    margin:0 0 10px
}
 .mm-footer ul{
    display:flex;
    flex-wrap:wrap
}
 .mm-footer li{
    margin:0 15px 0 0
}
 .rtl .mm-footer li{
    margin:0 0 0 15px
}
 .mm-footer li:last-child{
    margin:0
}
 .mm-footer .mm-menu li{
    margin-top:5px
}
 .mm-footer a{
    display:block;
    font-size:14px;
    color:var(--mobilemenu-color)
}
 .mm-footer .rss a,.mm-footer .email a,.mm-footer .external-link a{
    font-size:18px
}
 .mm-footer a:hover{
    color:var(--mobilemenu-hover-color)
}
 #header-ads-wrap{
    float:left;
    width:100%
}
 .header-ads .widget{
    position:relative;
    margin:30px 0 0
}
 #featured-wrapper,#featured .widget,#featured .widget-content{
    float:left;
    width:100%;
    margin:0
}
 #featured .widget{
    display:none;
    margin:30px 0 0
}
 #featured .widget.is-visible,#featured .widget.PopularPosts{
    display:block
}
 #featured .widget-content{
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:382px;
    margin:0
}
 #featured .error-msg{
    padding:0
}
 .featured-items{
    width:100%;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    grid-gap:2px
}
 .featured-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    grid-gap:2px
}
 .featured-item{
    width:100%;
    height:190px;
    border-radius: 4px;
}
 .featured-item.item-0{
    height:100%
}
 .featured-item .entry-image-wrap{
    width:100%;
    height:100%
}
 .featured-item.item-0 .entry-info{
    padding:20px
}
 .featured-item .entry-title{
    font-size:15px
}
 .featured-item.item-0 .entry-title{
    font-size:25px
}
 .featured-item .entry-meta{
    flex-wrap:wrap
}
 .featured-items .cs.item-0 .entry-image-wrap.is-video:after{
    top:20px;
    right:20px
}
 .rtl .featured-items .cs.item-0 .entry-image-wrap.is-video:after{
    left:20px;
    right:unset
}
 .type-feat1 .featured-item.item-1{
    grid-column:1/3
}
 .type-feat1 .featured-item.item-1 .entry-title{
    font-size:19px
}
 .type-feat3 .featured-items{
    grid-template-columns:repeat(3, 1fr)
}
 .type-feat3 .featured-grid{
    grid-column:2/4
}
 .type-feat3 .featured-item.item-0 .entry-info{
    padding:15px
}
 .type-feat3 .featured-item .entry-title{
    font-size:17px
}
 .type-feat3 .featured-item.item-0 .entry-title{
    font-size:21px
}
 .title-wrap{
    display:flex;
    justify-content:space-between;
    height:30px;
    margin:0 0 25px;
    background:var(--widget-title-bg);    
    box-shadow: 0 0 10px rgb(0 0 0 / 3%);
}
 .title-wrap > *{
    display:flex;
    align-items:center
}
 .title-wrap > .title{
    height:30px;
    background-color:var(--widget-title-bg);   
    border-left: 3px solid var(--main-color);
    font-family:var(--title-font);
    font-size:13px;
    color:var(--widget-title-color);
    font-weight:600;
    text-transform:uppercase;
    padding:0 13px
}
 .title-wrap > .title-link{
    font-size:13px; 
    color:var(--widget-title-color);
    padding:0 13px;
}
 .title-wrap > .title-link:hover{
    background-color:var(--widget-title-bg); /* MEC4.1: ; faltante corregido */
    color:var(--main-color)
}
 .content-section,.content-section .content-block{
    float:left;
    width:100%
}
.content-block {
    
}
 .content-section .widget{
    display:none;
    float:left;
    width:100%;
    margin:0 0 30px
}
 .content-section .widget.column-style{
    width:calc((100% - 25px) / 2)
}
 .content-section .widget[data-align="right"]{
    float:right
}
 .content-section .widget.is-visible{
    display:flex;
    flex-direction:column
}
 .content-section .widget.is-ad{
    display:block
}
 #content-section-2 .widget:last-child{
    margin:0
}
 .content-section .loader{
    height:180px
}
 .block-items{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    align-items:start;
    grid-gap:25px
}
 .block-item{
    display:flex;
    flex-direction:column
}
 .block-items .item-0 .entry-image-wrap{
    width:100%;
    height:335px;
    margin:0
}
 .block-items .item-0 .entry-title{
    font-size:21px
}
 .block-items .item-0 .entry-excerpt{
    font-size:14px;
    margin:10px 0 0;
        color: #fafafa;
}
 .block-items .item-0 .entry-meta{
    flex-wrap:wrap;
    margin:10px 0 0
}
 .block-list{
    display:grid;
    grid-template-columns:1fr;
    grid-gap:25px
}
 .block-list .block-item{
    flex-direction:row
}
 .block-list .entry-header{
    flex:1
}
 .block-list .entry-image-wrap{
    width:98px;
    height:65px;
    margin:0 13px 0 0
}
 .rtl .block-list .entry-image-wrap{
    margin:0 0 0 13px
}
 .block-list .entry-title{
    font-size:14px
}
 .grid-items{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    grid-gap:25px
}
.grid-item{
    position:relative;
    display:flex;
    flex-direction:column;   
    background: var(--widget-bg);
    padding: 10px;
    border-radius: var(--radius);
    border: 1px solid var(--widget-border-color);
    box-shadow: 0 0 10px var(--widget-border-shadow);
}
.grid-item:before {
content: "";
position: absolute;
top: auto;
bottom: 0;
left: 0;
border-radius: 15px;
background-image: linear-gradient(100deg, #ffffff, #9b2247);
background-repeat: repeat-x;
-webkit-transition: all 0.5s;
transition: all 0.5s;
width: 100%;
height: 100%;
z-index: 1;
}
.is-dark .grid-item:before { 
background-image: linear-gradient(100deg, #13131d, #9b2247);
}
.grid-item:after {
content: "";
width: 100%;
height: 100%;
left: 0;
top: 0;
background: var(--widget-bg);
position: absolute;
border-radius: 10px;
z-index:1;
}
.grid-item:hover::before {
transform: rotate(2deg) translateX(-7px) translateY(11px);
}
 .grid-item .entry-image-wrap{
    width:100%;
    height:230px;
    margin:0 0 10px
}
.grid-item .entry-header{
position: relative;
z-index: 9;
}
 .grid-item .entry-title{
    font-size:14px
}
 .grid2-items{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    grid-gap:25px
}
 .grid2-item{
    display:flex;
    flex-direction:column;
    width:100%;
    position:relative;
}
.grid2-item:before {
content: "";
position: absolute;
top: auto;
bottom: 0;
left: 0;
border-radius: 15px;
background-image: linear-gradient(100deg, #ffffff, #9b2247);
background-repeat: repeat-x;
-webkit-transition: all 0.5s;
transition: all 0.5s;
width: 100%;
height: 100%;
z-index: 1;
}
.is-dark .grid2-item:before { 
background-image: linear-gradient(100deg, #13131d, #9b2247);
}
.grid2-item:hover::before {
transform: rotate(2deg) translateX(-7px) translateY(11px);
}
 .grid2-item .entry-image-wrap{
    width:100%;
    height:280px;
    margin:0
}
 .grid2-item .entry-title{
    font-size:19px
}
 .grid2-item .entry-meta{
    flex-wrap:wrap
}
 .video-style .widget-content{
    --title-color:var(--video-widget-color);
    --title-hover-color:var(--video-widget-hover-color);
    --meta-color:var(--video-widget-meta-color)
}
 .video-style .title-wrap{
    margin:0
}
 .video-style .widget-content{
    background-color:var(--video-widget-bg);
    padding:20px
}
 .video-items{
    display:grid;
    grid-template-columns:1fr;
    align-items:start;
    grid-gap:25px
}
 .video-style .video-items{
    grid-gap:20px
}
 .video-items .cs .entry-inner{
    height:250px
}
 .video-items .cs .entry-image-wrap{
    width:100%;
    height:100%
}
 .video-items .cs .entry-title{
    font-size:23px
}
 .video-items .cs .entry-excerpt{
    font-size:14px;
    margin:10px 0 0
}
 .video-items .cs .entry-meta{
    flex-wrap:wrap
}
 .video-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    grid-gap:25px
}
 .video-style .video-grid{
    grid-gap:20px
}
 .video-grid .video-item{
    display:flex;
    flex-direction:column
}
 .video-grid .entry-image-wrap{
    width:100%;
    height:130px;
    margin:0 0 10px
}
 .video-style .video-grid .entry-image-wrap{
    height:120px
}
 .video-grid .entry-title{
    font-size:14px
}
 .video-style .video-grid{
    --title-font-weight:600
}
 .column-items{
    display:grid;
    grid-template-columns:1fr;
    grid-gap:25px
}
 .col-item{
    display:flex
}
 .col-item .entry-inner{
    height:230px
}
 .col-item .entry-image-wrap{
    width:98px;
    height:65px;
    margin:0 13px 0 0
}
 .rtl .col-item .entry-image-wrap{
    margin:0 0 0 13px
}
 .col-item .entry-inner .entry-image-wrap{
    width:100%;
    height:100%;
    margin:0
}
 .col-item .entry-header:not(.entry-info){
    flex:1
}
 .col-item .entry-title{
    font-size:14px
}
 .col-item .entry-inner .entry-title{
    font-size:19px
}
 .col-item .entry-inner .entry-meta{
    flex-wrap:wrap
}
 #main{
    float:left;
    width:100%
}
 .is-home .has-margin #main{
    margin:0 0 30px
}
 .queryMessage .query-info{
    display:flex;
    align-items:center;
    font-family:var(--title-font);
    font-size:17px;
    color:var(--title-color);
    font-weight:700;
    text-transform:uppercase;
    margin:0 0 20px
}
 .no-posts .queryMessage .query-info{
    margin:0
}
 .queryMessage .query-info:after{
    display:inline-block;
    content:'\e5cc';
    font-family:'Material Icons Round';
    font-size:24px;
    font-weight:400;
    margin:0 0 0 -4px
}
 .rtl .queryMessage .query-info:after{
    content:'\e5cb';
    margin:0 -4px 0 0
}
 .queryEmpty{
    font-size:14px;
    color:var(--meta-color);
    text-align:center;
    margin:50px 0
}
 .index-post-wrap{
    display:grid;
    grid-template-columns: repeat(4,1fr);
    grid-gap:25px
}
 .index-post{
    position:relative;
    display:flex;  
    flex-direction: column;
    background: var(--widget-bg);
    padding: 10px;
    border-radius: var(--radius);
    border: 1px solid var(--widget-border-color);
    box-shadow: 0 0 10px var(--widget-border-shadow);
}
.index-post:before {
    content: "";
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    border-radius: 15px;
    background-image: linear-gradient(100deg, #ffffff, #9b2247);
    background-repeat: repeat-x;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.is-dark .index-post:before { 
background-image: linear-gradient(100deg, #13131d, #9b2247);
}
.index-post:after {
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: var(--widget-bg);
    position: absolute;
    border-radius: 10px;
    z-index:1;
}
.index-post:hover::before {
    transform: rotate(2deg) translateX(-7px) translateY(11px);
}
 .index-post.ad-type{
    display:block
}
 .index-post .entry-image-wrap{
  width: 100%;
    height: 230px;
    margin: 0 0 10px;
}
 .rtl .index-post .entry-image-wrap{
    margin:0 0 0 18px
}
 .index-post .entry-header{
   position: relative;
    z-index: 9;
}
 .index-post .entry-title{
    font-size:21px
}
 .index-post .entry-excerpt{
    font-size:14px;
    margin:10px 0 0
}
 .index-post .entry-meta{
    flex-wrap:wrap;
    margin:10px 0 0
}
 .post-animated{
    -webkit-animation-duration:.5s;
    animation-duration:.5s
}
 @keyframes fadeInUp{
    from{
        opacity:0;
        transform:translate3d(0,10px,0)
    }
    to{
        opacity:1;
        transform:translate3d(0,0,0)
    }
}
 .post-fadeInUp{
    animation-name:fadeInUp
}
 #breadcrumb{
    display:flex;
    font-size:14px;
    color:var(--meta-color);
    font-weight:400;
    line-height:1;
    margin:0 0 10px
}
 #breadcrumb a{
    color:var(--meta-color)
}
 #breadcrumb a.home,#breadcrumb a:hover{
    color:var(--main-color)
}
 #breadcrumb .separator:after{
    content:'\e5cc';
    font-family:'Material Icons Round';
    font-size:16px;
    font-weight:400;
    font-style:normal;
    vertical-align:middle
}
 .rtl #breadcrumb .separator:after{
    content:'\e5cb'
}
.item-post {
    background: var(--widget-bg);
    padding: 10px;
    border-radius: var(--radius);
    border: 1px solid var(--widget-border-color);
    box-shadow: 0 0 10px var(--widget-border-shadow);
}
 .item-post h1.entry-title{
    font-size:$(itempost.title.size);
    font-weight:700
}
 .p-eh .entry-meta{
    flex-wrap:wrap;
    justify-content:space-between;
    font-size:14px;
    margin:13px 0 0
}
 .p-eh .entry-meta .align-left,.p-eh .entry-meta .align-right{
    display:flex;
    flex-wrap:wrap;
    align-items:center
}
 .p-eh .entry-meta .mi,.p-eh .entry-meta .sp{
    margin:0 4px 0 0
}
 .rtl .p-eh .entry-meta .mi,.rtl .p-eh .entry-meta .sp{
    margin:0 0 0 4px
}
 .p-eh .entry-meta .entry-author{
    align-items:center
}
 .p-eh .entry-meta .entry-author:before{
    display:none
}
 .p-eh .entry-meta .author-avatar-wrap{
    overflow:visible;
    width:30px;
    height:30px;
    background-color:var(--outer-bg);
    padding:1px;
    margin:0 5px 0 0;
    border:1px solid var(--main-color);
    border-radius:100%
}
 .rtl .p-eh .entry-meta .author-avatar-wrap{
    margin:0 0 0 5px
}
 .p-eh .entry-meta .author-avatar-wrap:before{
    content:'';
    position:absolute;
    display:block;
    top:calc(50% - 6px);
    left:-1px;
    width:calc(100% + 2px);
    height:12px;
    background-color:var(--outer-bg);
    z-index:1;
    margin:0
}
 .p-eh .entry-meta .author-avatar{
    z-index:2;
    border-radius:50%
}
 .entry-meta .entry-comments-link{
    display:none;
    margin:0 0 0 10px
}
 .rlt .entry-meta .entry-comments-link{
    margin:0 10px 0 0
}
 .entry-meta .entry-comments-link:before{
    display:inline-block;
    content:'\e8af';
    font-family:'Material Icons Round';
    font-size:16px;
    color:var(--main-color);
    font-weight:400;
    margin:0 4px 0 0
}
 .rtl .entry-meta .entry-comments-link:before{
    margin:0 0 0 4px
}
 .entry-meta .entry-comments-link.show{
    display:flex
}
 #post-body{
    position:relative;
    float:left;
    width:100%;
    font-family:var(--text-font);
    font-size:$(itempost.content.size);
    color:var(--text-color);
    line-height:1.6em;
    margin:25px 0 0
}
 .post-body p{
    margin-bottom:25px
}
 .post-body h1,.post-body h2,.post-body h3,.post-body h4,.post-body h5,.post-body h6{
    font-size:17px;
    color:var(--title-color);
    line-height:1.3em;
    margin:0 0 20px
}
 .post-body h1{
    font-size:26px
}
 .post-body h2{
    font-size:23px
}
 .post-body h3{
    font-size:20px
}
 .post-body img{
    height:auto!important
}
 blockquote{
    position:relative;
    background-color:var(--gray-bg);
    color:var(--title-color);
    font-style:normal;
    padding:20px;
    margin:0;
    border-radius:var(--radius)
}
 blockquote:before{
    position:absolute;
    top:0;
    left:5px;
    content:'\e244';
    font-family:'Material Icons Round';
    font-size:60px;
    color:var(--title-color);
    font-style:normal;
    font-weight:400;
    line-height:1;
    opacity:.05;
    margin:0
}
 .rtl blockquote:before{
    left:unset;
    right:5px
}
 .post-body .responsive-video-wrap{
    position:relative;
    width:100%;
    padding:0;
    padding-top:56%
}
 .post-body .responsive-video-wrap iframe{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%
}
 .post-body ul{
    padding:0 0 0 20px;
    margin:10px 0
}
 .rtl .post-body ul{
    padding:0 20px 0 0
}
 .post-body li{
    margin:8px 0;
    padding:0
}
 .post-body ul li,.post-body ol ul li{
    list-style:none
}
 .post-body ul li:before,.post-body ul li ul li ul li:before{
    display:inline-block;
    content:'\2022';
    font-size:16px;
    line-height:1;
    vertical-align:middle;
    margin:0 5px 0 0
}
 .post-body ul li ul li:before{
    content:'\26AC'
}
 .rtl .post-body ul li:before{
    margin:0 0 0 5px
}
 .post-body ol{
    counter-reset:templateify;
    padding:0 0 0 20px;
    margin:10px 0
}
 .rtl .post-body ol{
    padding:0 20px 0 0
}
 .post-body ol > li{
    counter-increment:templateify;
    list-style:none
}
 .post-body ol > li:before{
    display:inline-block;
    content:counters(templateify,'.')'.';
    margin:0 5px 0 0
}
 .rtl .post-body ol > li:before{
    margin:0 0 0 5px
}
 .post-body ol ol{
    counter-reset:templateify2
}
 .post-body ol ol > li{
    counter-increment:templateify2
}
 .post-body ol ol > li:before{
    content:counters(templateify2,'.')'.'
}
 .post-body ol ol ol{
    counter-reset:templateify3
}
 .post-body ol ol > li ol > li{
    counter-increment:templateify3
}
 .post-body ol ol > li ol > li:before{
    content:counters(templateify3,'.')'.'
}
 .post-body u{
    text-decoration:underline
}
 .post-body strike{
    text-decoration:line-through
}
 .post-body sup{
    vertical-align:super
}
 .post-body a{
    color:var(--main-color)
}
 .post-body a:hover{
    text-decoration:underline
}
 .post-body a.button{
    display:inline-block;
    height:34px;
    background-color:var(--button-bg);
    font-family:var(--body-font);
    font-size:15px;
    color:var(--button-color);
    font-weight:400;
    line-height:34px;
    text-align:center;
    text-decoration:none;
    cursor:pointer;
    padding:0 20px;
    margin:0 6px 8px 0
}
 .rtl .post-body a.button{
    margin:0 0 8px 6px
}
 .post-body a.button.x2{
    height:46px;
    font-size:18px;
    line-height:46px
}
 .post-body a.button.is-c,.rtl.post-body a.button.is-c{
    margin:0 3px 8px
}
 .post-body a.button.x2 span{
    display:inline-block;
    background-color:rgba(255,255,255,0.1);
    font-size:14px;
    line-height:14px;
    padding:6px;
    margin:0 0 0 20px;
    border-radius:var(--radius)
}
 .rtl .post-body a.button.x2 span{
    margin:0 20px 0 0
}
 .post-body .button:before{
    display:inline-block;
    font-family:'Material Icons Round';
    font-size:16px;
    font-weight:400;
    line-height:1;
    vertical-align:middle;
    margin:-1px 6px 0 0
}
 .rtl .post-body .button:before{
    margin:-1px 0 0 6px
}
 .post-body a.btn.x2:before{
    font-size:20px;
    margin:-2px 6px 0 0
}
 .rtl .post-body a.btn.x2:before{
    margin:-2px 0 0 6px
}
 .post-body .btn.preview:before{
    content:'\e8f4'
}
 .post-body .btn.download:before{
    content:'\f090'
}
 .post-body .btn.link:before{
    content:'\e157'
}
 .post-body .btn.cart:before{
    content:'\e8cc'
}
 .post-body .btn.info:before{
    content:'\e88e'
}
 .post-body .btn.share:before{
    content:'\e80d'
}
 .post-body .btn.contact:before{
    content:'\e0e1'
}
 .post-body .btn.whatsapp:before{
    content:'\f232';
    font-family:'Font Awesome 5 Brands';
    font-style:normal
}
 .post-body .btn.paypal:before{
    content:'\f1ed';
    font-family:'Font Awesome 5 Brands';
    font-style:normal
}
 .post-body .btn.gift:before{
    content:'\e8f6'
}
 .post-body a.button:hover{
    background-color:var(--button-hover-bg);
    color:var(--button-hover-color)
}
 .post-body a.color{
    color:#fff
}
 .post-body a.color:hover{
    opacity:.9
}
 .alert-message{
    display:block;
    background-color:var(--gray-bg);
    padding:20px;
    border:1px solid var(--border-color);
    border-radius:var(--radius)
}
 .alert-message.alert-success{
    background-color:rgba(39,174,96,0.1);
    color:rgba(39,174,96,1);
    border-color:rgba(39,174,96,0.1)
}
 .alert-message.alert-info{
    background-color:rgba(41,128,185,0.1);
    color:rgba(41,128,185,1);
    border-color:rgba(41,128,185,0.1)
}
 .alert-message.alert-warning{
    background-color:rgba(243,156,18,0.1);
    color:rgba(243,156,18,1);
    border-color:rgba(243,156,18,0.1)
}
 .alert-message.alert-error{
    background-color:rgba(231,76,60,0.1);
    color:rgba(231,76,60,1);
    border-color:rgba(231,76,60,0.1)
}
 .alert-message:before{
    display:inline-block;
    font-family:'Material Icons Round';
    font-size:18px;
    line-height:1;
    font-weight:400;
    vertical-align:middle;
    margin:0 5px 0 0
}
 .rtl .alert-message:before{
    margin:0 0 0 5px
}
 .alert-message.alert-success:before{
    content:'\e86c'
}
 .alert-message.alert-info:before{
    content:'\e88e'
}
 .alert-message.alert-warning:before{
    content:'\e000'
}
 .alert-message.alert-error:before{
    content:'\e5c9'
}
 .post-body table{
    width:100%;
    overflow-x:auto;
    text-align:left;
    margin:0;
    border-collapse:collapse;
    border:1px solid var(--border-color)
}
 .rtl .post-body table{
    text-align:right
}
 .post-body table td,.post-body table th{
    padding:6px 12px;
    border:1px solid var(--border-color)
}
 .post-body table thead th{
    color:var(--title-color);
    vertical-align:bottom
}
 table.tr-caption-container,table.tr-caption-container td,table.tr-caption-container th{
    line-height:1;
    padding:0;
    border:0
}
 table.tr-caption-container td.tr-caption{
    font-size:12px;
    color:var(--meta-color);
    font-style:italic;
    padding:6px 0 0
}
 .templateify-toc-wrap{
    display:flex;
    width:100%;
    clear:both;
    margin:0
}
 .templateify-toc-inner{
    position:relative;
    max-width:100%;
    background-color:var(--gray-bg);
    display:flex;
    flex-direction:column;
    overflow:hidden;
    font-size:14px;
    color:var(--title-color);
    line-height:1.6em;
    border:1px solid var(--border-color);
    border-radius:var(--radius)
}
 a.templateify-toc-title{
    position:relative;
    height:40px;
    font-size:16px;
    color:var(--title-color);
    font-weight:var(--title-font-weight);
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 13px 0 18px
}
 .rtl a.templateify-toc-title{
    padding:0 18px 0 13px
}
 .templateify-toc-title-text{
    display:flex
}
 .templateify-toc-title-text:before{
    content:'\e242';
    font-family:'Material Icons Round';
    font-size:20px;
    font-weight:400;
    margin:0 6px 0 0
}
 .rtl .templateify-toc-title-text:before{
    margin:0 0 0 6px
}
 .templateify-toc-title:after{
    content:'\e5cf';
    font-family:'Material Icons Round';
    font-size:24px;
    font-weight:400;
    margin:0 0 0 20px
}
 .rtl .templateify-toc-title:after{
    margin:0 20px 0 0
}
 .templateify-toc-title.is-expanded:after{
    content:'\e5ce'
}
 a.templateify-toc-title:hover{
    text-decoration:none
}
 #templateify-toc{
    display:none;
    padding:0 20px 10px;
    margin:0
}
 #templateify-toc ol{
    counter-reset:templateifyToc;
    padding:0 0 0 20px
}
 .rtl #templateify-toc ol{
    padding:0 20px 0 0
}
 #templateify-toc li{
    counter-increment:templateifyToc;
    font-size:14px;
    margin:10px 0
}
 #templateify-toc li:before{
    content:counters(templateifyToc,'.')'.'
}
 #templateify-toc li a{
    color:var(--main-color)
}
 #templateify-toc li a:hover{
    color:var(--main-color);
    text-decoration:underline
}
 .post-body .contact-form-widget{
    display:table;
    font-family:var(--body-font)
}
 .post-body .contact-form-widget .cf-s{
    font-size:15px
}
 .post-body .contact-form-name.cf-s{
    width:calc(50% - 5px)
}
 .rtl .post-body .contact-form-name{
    float:right
}
 .post-body .contact-form-email.cf-s{
    float:right;
    width:calc(50% - 5px)
}
 .rtl .post-body .contact-form-email{
    float:left
}
 .post-body .contact-form-button-submit{
    font-size:15px
}
 .post-body pre,pre.code-box{
    display:block;
    background-color:var(--gray-bg);
    font-family:Monospace;
    font-size:13px;
    white-space:pre-wrap;
    line-height:1.4em;
    padding:20px;
    border:1px solid var(--border-color);
    border-radius:var(--radius)
}
 .post-body .google-auto-placed{
    margin:25px 0
}
 .entry-labels{
    display:flex;
    flex-wrap:wrap;
    margin:20px 0 0
}
 .entry-labels > *{
    display:flex;
    align-items:center;
    height:20px;
    background-color:var(--gray-bg);
    font-size:12px;
    color:var(--title-color);
    padding:0 6px;
    margin:5px 5px 0 0
}
 .rtl .entry-labels > *{
    margin:5px 0 0 5px
}
 .entry-labels span{
    background-color:var(--widget-title-bg);
    color:var(--widget-title-color)
}
 .entry-labels a:hover{
    background-color:var(--button-bg);
    color:var(--button-color)
}
 .post-share{
    margin:20px 0 0
}
 .share-links{
    display:flex;
    flex-wrap:wrap;
    align-items:flex-start
}
 .share-links li a{
    display:flex;
    align-items:center;
    justify-content:center;
    width:34px;
    height:34px;
    font-size:16px;
    color:#fff;
    font-weight:400;
    overflow:hidden;
    margin:5px 5px 0 0
}
 .rtl .share-links li a{
    margin:5px 0 0 5px
}
 .share-links .email a{
    font-size:20px
}
 .share-links .has-span a{
    width:auto;
    justify-content:space-between
}
 .share-links .has-span a:before{
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    height:100%;
    width:34px;
    background-color:rgba(255,255,255,0.08)
}
 .share-links span{
    font-size:14px;
    padding:0 20px
}
 .share-links li a:hover{
    opacity:.9
}
 .share-links .show-hid a{
    background-color:var(--gray-bg);
    font-size:28px;
    color:rgba(155,155,155,0.8)
}
 .share-links .show-hid a:before{
    content:'\e145';
    font-family:'Material Icons Round';
    font-weight:400
}
 .post-share .expanded .show-hid a:before{
    content:'\e15b'
}
 .share-links .reddit,.share-links .linkedin,.share-links .tumblr,.share-links .telegram{
    display:none
}
 .post-share .expanded li[class]{
    display:inline-block
}
 .post-widget{
    margin:30px 0 0
}
 .about-author{
    display:flex;
    padding:20px;
    border:1px solid var(--border-color)
}
 .about-author .author-avatar-wrap{
    width:60px;
    height:60px;
    margin:0 15px 0 0;
    border-radius:50%;
    box-shadow:var(--avatar-shadow)
}
 .rtl .about-author .author-avatar-wrap{
    margin:0 0 0 15px
}
 .about-author .author-title{
    font-size:18px;
    color:var(--title-color);
    font-weight:var(--title-font-weight);
    margin:0 0 10px
}
 .about-author .author-title a{
    color:var(--title-color)
}
 .about-author .author-title a:hover{
    color:var(--title-hover-color)
}
 .author-description{
    flex:1
}
 .author-description .author-text{
    display:block;
    font-size:14px
}
 .author-description .author-text br,.author-description .author-text a{
    display:none
}
 ul.author-links{
    display:flex;
    flex-wrap:wrap;
    padding:0
}
 .author-links li{
    margin:10px 12px 0 0
}
 .rtl .author-links li{
    margin:10px 0 0 12px
}
 .author-links li a{
    display:block;
    font-size:14px;
    color:var(--text-color);
    padding:0
}
 .author-links li.email a,.author-links li.external-link a{
    font-size:16px
}
 .author-links li a:hover{
    opacity:.9
}
 #nurify-pro-related-posts{
    display:none
}
 .related-content .loader{
    height:180px
}
 .related-posts{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    grid-gap:25px
}
 .related-item{
    display:flex;
    flex-direction:column
}
 .related-item .entry-image-wrap{
    width:100%;
    height:130px;
    margin:0 0 10px
}
 .related-item .entry-title{
    font-size:14px
}
 .nurify-pro-blog-post-comments{
    display:none;
    flex-direction:column
}
 .nurify-pro-blog-post-comments.is-visible{
    display:flex
}
 .nurify-pro-blog-post-comments:not(.comments-system-blogger) #comments{
    margin:-10px 0
}
 .nurify-pro-blog-post-comments .fb_iframe_widget_fluid_desktop{
    float:left;
    display:block!important;
    width:calc(100% + 16px)!important;
    max-width:calc(100% + 16px)!important;
    margin:0 -8px
}
 .nurify-pro-blog-post-comments .fb_iframe_widget_fluid_desktop span,.nurify-pro-blog-post-comments .fb_iframe_widget_fluid_desktop iframe{
    float:left;
    display:block!important;
    width:100%!important
}
 #disqus_thread,.fb-comments{
    clear:both;
    padding:0
}
 #comments h4#comment-post-message{
    display:none;
    float:none
}
#comments {
    background: var(--widget-bg);
    padding: 10px;
    border-radius: var(--radius);
    border: 1px solid var(--widget-border-color);
    box-shadow: 0 0 10px var(--widget-border-shadow);
}
 .comments-system-blogger .comments-title.has-message{
    margin:0 0 13px
}
 .comments .comment-content{
    display:block;
    font-family:var(--text-font);
    font-size:14px;
    color:var(--text-color);
    line-height:1.5em;
    margin:10px 0 0
}
 .comments .comment-content > a:hover{
    text-decoration:underline
}
 .comment-thread .comment{
    position:relative;
    list-style:none;
    padding:20px;
    margin:25px 0 0;
    border:1px solid var(--border-color)
}
 .comment-thread .comment .comment{
    background-color:var(--gray-bg);
    border:0
}
 .comment-thread ol{
    padding:0;
    margin:0
}
 .comment-thread .comment-replies ol{
    padding:0 0 4px
}
 .toplevel-thread ol > li:first-child{
    margin:0
}
 .toplevel-thread ol > li:first-child > .comment-block{
    padding-top:0;
    margin:0;
    border:0
}
 .comment-thread ol ol .comment:before{
    position:absolute;
    content:'\f060';
    left:-30px;
    top:-5px;
    font-family:'Material Icons Round';
    font-size:20px;
    color:var(--border-color);
    font-weight:400
}
 .rtl .comment-thread ol ol .comment:before{
    left:unset;
    right:-25px;
    transform:rotate(-180deg)
}
 .comments .comment-replybox-single iframe{
    padding:0 0 0 48px
}
 .rtl .comments .comment-replybox-single iframe{
    padding:0 48px 0 0
}
 .comment-thread .avatar-image-container{
    position:absolute;
    top:20px;
    left:20px;
    width:35px;
    height:35px;
    overflow:hidden;
    border-radius:50%;
    box-shadow:var(--avatar-shadow)
}
 .rtl .comment-thread .avatar-image-container{
    left:auto;
    right:20px
}
 .avatar-image-container img{
    display:block;
    width:100%;
    height:100%
}
 .comments .comment-header{
    padding:0 0 0 48px
}
 .rtl .comments .comment-header{
    padding:0 48px 0 0
}
 .comments .comment-header .user{
    display:inline-block;
    font-family:var(--title-font);
    font-size:16px;
    color:var(--title-color);
    font-weight:var(--title-font-weight);
    font-style:normal
}
 .comments .comment-header .user a{
    color:var(--title-color)
}
 .comments .comment-header .user a:hover{
    color:var(--title-hover-color)
}
 .comments .comment-header .icon.user{
    display:none
}
 .comments .comment-header .icon.blog-author{
    display:inline-block;
    font-size:14px;
    color:var(--main-color);
    vertical-align:top;
    margin:-5px 0 0 4px
}
 .rtl .comments .comment-header .icon.blog-author{
    margin:-5px 4px 0 0
}
 .comments .comment-header .icon.blog-author:before{
    content:'\ef76';
    font-family:'Material Icons Round';
    font-weight:400
}
 .comments .comment-header .datetime{
    display:block;
    margin:1px 0 0
}
 .comment-header .datetime a{
    font-size:12px;
    color:var(--meta-color)
}
 .comments .comment-actions{
    display:block;
    margin:10px 0 0
}
 .comments .comment-actions a{
    display:inline-block;
    font-size:14px;
    color:var(--main-color);
    font-weight:400;
    font-style:normal;
    margin:0 15px 0 0
}
 .rtl .comments .comment-actions a{
    margin:0 0 0 15px
}
 .comments .comment-actions a:hover{
    text-decoration:underline
}
 .item-control{
    display:none
}
 .loadmore.loaded a{
    display:inline-block;
    border-bottom:1px solid rgba(155,155,155,.51);
    text-decoration:none;
    margin-top:15px
}
 .comments .continue{
    display:none
}
 .comments .comment-replies{
    padding:0 0 0 48px
}
 .rtl .comments .comment-replies{
    padding:0 48px 0 0
}
 .thread-expanded .thread-count a,.loadmore{
    display:none
}
 .comments .footer{
    float:left;
    width:100%;
    font-size:13px;
    margin:0
}
 p.comments-message{
    font-size:14px;
    color:var(--meta-color);
    font-style:italic;
    margin:0 0 15px
}
 p.comments-message.no-new-comments{
    padding:0;
    margin:0;
    border:0
}
 p.comments-message > a{
    color:var(--main-color)
}
 p.comments-message > a:hover{
    color:var(--title-color)
}
 p.comments-message > em{
    color:#ff3f34;
    font-style:normal;
    margin:0 3px
}
 #comments[data-embed='false'] p.comments-message > i{
    color:var(--main-color);
    font-style:normal
}
 .comment-form > p{
    display:none
}
 .comment-content .responsive-video-wrap{
    position:relative;
    width:100%;
    padding:0;
    padding-top:56%
}
 .comment-content .responsive-video-wrap iframe{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%
}
 .comments #top-ce.comment-replybox-thread,.comments.no-comments .comment-form{
    padding:10px 20px;
    margin:25px 0 0;
    border:1px solid var(--border-color)
}
 .comments.no-comments .comment-form{
    margin:0
}
 .comments #top-continue a{
    float:left;
    width:100%;
    height:34px;
    background-color:var(--button-bg);
    font-size:14px;
    color:var(--button-color);
    font-weight:400;
    line-height:34px;
    text-align:center;
    padding:0;
    margin:25px 0 0;
    border-radius:var(--radius)
}
 .comments #top-continue a:hover{
    background-color:var(--button-hover-bg);
    color:var(--button-hover-color)
}
 .post-nav{
    display:flex;
    flex-wrap:wrap;
    justify-content:space-between;
    font-size:14px;
    background: var(--widget-bg);
    padding: 10px;
    border-radius: var(--radius);
    border: 1px solid var(--widget-border-color);
    box-shadow: 0 0 10px var(--widget-border-shadow);
}
 .post-nav > *{
    display:flex;
    align-items:center;
    color:var(--meta-color);
    margin:0 -5px
}
 .post-nav a:hover{
    color:var(--main-color)
}
 .post-nav span{
    color:var(--meta-color);
    cursor:no-drop;
    opacity:.65
}
 .post-nav .post-nav-link:before,.post-nav .post-nav-link:after{
    font-family:'Material Icons Round';
    font-size:16px;
    line-height:1;
    font-weight:400
}
 .post-nav-newer-link:before,.rtl .post-nav-older-link:after{
    content:'\e5cb'
}
 .post-nav-older-link:after,.rtl .post-nav-newer-link:before{
    content:'\e5cc'
}
 #custom-ads,#nurify-pro-post-footer-ads{
    position:relative;
    float:left;
    width:100%;
    opacity:0;
    visibility:hidden
}
 #before-ad .widget-title,#after-ad .widget-title{
    display:block
}
 #before-ad .widget-title > .title,#after-ad .widget-title > .title{
    font-size:10px;
    color:var(--meta-color);
    font-weight:400;
    line-height:1;
    margin:0 0 6px
}
 #before-ad .widget,#after-ad .widget{
    position:relative;
    margin:25px 0 0
}
 #nurify-pro-new-before-ad #before-ad,#nurify-pro-new-after-ad #after-ad{
    display:block
}
 #nurify-pro-new-before-ad #before-ad .widget,#nurify-pro-new-after-ad #after-ad .widget{
    margin:0
}
 #post-footer-ads .widget{
    position:relative
}
 #blog-pager{
    display:flex;
    justify-content:center;
    margin:30px 0 0
}
 #blog-pager .load-more{
    display:flex;
    height:32px;
    font-size:14px;
    background:var(--widget-bg);
    color:var(--title-color);
    align-items:center;
    padding:0 20px 0 25px;
    border:1px solid var(--border-color)
}
 .rtl #blog-pager .load-more{
    padding:0 25px 0 20px
}
 #blog-pager #nurify-pro-load-more-link:after{
    content:'\e5cf';
    display:inline-block;
    font-family:'Material Icons Round';
    font-size:20px;
    font-weight:400;
    margin:-1px 0 0
}
 #blog-pager #nurify-pro-load-more-link:hover{
    background-color:var(--button-bg);
    color:var(--button-color);
    border-color:var(--button-bg)
}
 #blog-pager .no-more.show{
    display:flex;
    background-color:var(--gray-bg);
    color:var(--meta-color);
    cursor:not-allowed;
    padding:0 25px;
    border:0
}
 #blog-pager .loading,#blog-pager .no-more{
    display:none
}
 #blog-pager .loading .loader{
    height:32px
}
 #blog-pager .loader:after{
    width:28px;
    height:28px
}
 .sidebar{
    position:relative;
    float:left;
    width:100%;
    display:grid;
    grid-template-columns:100%;
    grid-gap:30px
}
 .sidebar > .widget{
    display:flex;
    flex-direction:column
}
.sidebar > .widget > .widget-content {
    background: var(--widget-bg);
    padding: 10px;
    border-radius: var(--radius);
    border: 1px solid var(--widget-border-color);
    box-shadow: 0 0 10px var(--widget-border-shadow);
}

 .sidebar .widget.is-ad > .widget-title{
    display:none
}
 .sidebar ul.social-icons{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    grid-gap:5px
}
 .sidebar .social-icons li{
    display:block;
    margin:0
}
 .sidebar .social-icons a{
    display:flex;
    align-items:center;
    justify-content:space-between;
    height:34px;
    font-size:16px;
    color:#fff;
    font-weight:400;
    overflow:hidden
}
 .sidebar .social-icons .rss a,.sidebar .social-icons .email a,.sidebar .social-icons .external-link a{
    font-size:18px
}
 .sidebar .social-icons a:before{
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    height:100%;
    width:34px;
    background-color:rgba(255,255,255,0.08)
}
 .sidebar .social-icons span{
    font-size:14px;
    padding:0 10px
}
 .sidebar .social-icons a:hover{
    opacity:.9
}
 .templateify-section .loader{
    height:180px
}
 .side-items{
    display:grid;
    grid-template-columns:1fr;
    grid-gap:25px
}
 .side-item{
    display:flex
}
 .side-item .entry-inner{
    height:180px
}
 .side-item .entry-image-wrap{
    width:98px;
    height:65px;
    margin:0 13px 0 0
}
 .rtl .side-item .entry-image-wrap{
    margin:0 0 0 13px
}
 .side-item .entry-inner .entry-image-wrap{
    width:100%;
    height:100%;
    margin:0
}
 .side-item .entry-header:not(.entry-info){
    flex:1
}
 .side-item .entry-title{
    font-size:14px
}
 .side-item .entry-inner .entry-title{
    font-size:19px
}
 .side-item .entry-inner .entry-meta{
    flex-wrap:wrap
}
 .side3-items{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    grid-gap:25px
}
 .side3-item{
    display:flex;
    flex-direction:column
}
 .side3-item .entry-image-wrap{
    width:100%;
    height:90px;
    margin:0 0 10px
}
 .side3-item .entry-title{
    font-size:14px
}
 .cmm1-items{
    display:grid;
    grid-template-columns:1fr;
    grid-gap:25px
}
 .cmm1-items .entry-inner{
    display:flex;
    align-items:center
}
 .cmm1-items .entry-image-wrap{
    width:45px;
    height:45px;
    z-index:1;
    margin:0 13px 0 0;
    border-radius:50%;
    box-shadow:var(--avatar-shadow)
}
 .rtl .cmm1-items .entry-image-wrap{
    margin:0 0 0 13px
}
 .cmm1-items .entry-header{
    flex:1
}
 .cmm1-items .entry-title{
    font-size:14px
}
 .cmm1-items .entry-inner:hover .entry-title{
    color:var(--title-hover-color)
}
 .cmm1-items .cmm-snippet{
    font-size:12px;
    color:var(--text-color);
    line-height:1.3em;
    margin:4px 0 0
}
 .FeaturedPost .entry-inner{
    height:180px
}
 .featured-post .entry-image-wrap{
    width:100%;
    height:100%
}
 .featured-post .entry-title{
    font-size:19px
}
 .featured-post .entry-meta{
    flex-wrap:wrap
}
 .list-style li{
    font-size:14px
}
 .list-style li a,.text-list li{
    display:block;
    color:var(--title-color);
    padding:8px 0
}
 .list-style li a.has-count{
    display:flex;
    justify-content:space-between
}
 .list-style li:first-child a,.text-list li:first-child{
    padding:0 0 8px
}
 .list-style li:last-child a,.text-list li:last-child{
    padding:8px 0 0
}
 .list-style li a:hover{
    color:var(--title-hover-color)
}
 .list-style .count-style{
    display:inline-block;
    color:var(--meta-color)
}
 .cloud-label ul{
    display:flex;
    flex-wrap:wrap;
    margin:-6px 0 0
}
 .cloud-label li{
    margin:6px 5px 0 0
}
 .rtl .cloud-label li{
    margin:6px 0 0 5px
}
 .cloud-label li a{
    display:flex;
    height:28px;
    background-color:rgba(155,155,155,0.1);
    color:var(--title-color);
    font-size:14px;
    font-weight:400;
    align-items:center;
    padding:0 12px
}
 .cloud-label li a:hover{
    background-color:var(--button-bg);
    color:var(--button-color);
    border-color:var(--button-bg)
}
 .cloud-label .label-count{
    display:inline-block;
    margin:0 0 0 6px
}
 .rtl .cloud-label .label-count{
    margin:0 6px 0 0
}
 .BlogSearch .search-form{
    display:flex;
    height:36px;
    overflow:hidden;
    padding:2px;
    border:1px solid var(--border-color);
    border-radius:var(--radius)
}
 .is-dark .BlogSearch .search-form{
    background-color:var(--gray-bg)
}
 .BlogSearch .search-input{
    width:100%;
    flex:1;
    font-size:14px;
    color:var(--text-color);
    padding:0 8px
}
 .BlogSearch .search-input::placeholder{
    color:var(--text-color);
    opacity:.65
}
 .BlogSearch .search-action{
    background-color:var(--button-bg);
    font-size:14px;
    color:var(--button-color);
    cursor:pointer;
    padding:0 13px;
    border-radius:var(--radius)
}
 .BlogSearch .search-action:hover{
    background-color:var(--button-hover-bg);
    color:var(--button-hover-color)
}
 .Profile ul li{
    float:left;
    width:100%;
    padding:20px 0 0;
    margin:20px 0 0;
    border-top:1px solid var(--border-color)
}
 .Profile ul li:first-child{
    padding:0;
    margin:0;
    border:0
}
 .Profile .individual,.Profile .team-member{
    display:flex;
    align-items:center
}
 .Profile .profile-img{
    width:45px;
    height:45px;
    background-color:var(--gray-bg);
    overflow:hidden;
    color:transparent!important;
    margin:0 13px 0 0;
    border-radius:50%;
    box-shadow:var(--avatar-shadow)
}
 .rtl .Profile .profile-img{
    margin:0 0 0 13px
}
 .Profile .profile-info{
    flex:1
}
 .Profile .profile-name{
    display:block;
    font-family:var(--title-font);
    font-size:15px;
    color:var(--title-color);
    font-weight:var(--title-font-weight)
}
 .Profile .profile-name:hover{
    color:var(--title-hover-color)
}
 .Profile .profile-link{
    display:block;
    font-size:12px;
    color:var(--meta-color)
}
 .Profile .profile-link:hover{
    color:var(--main-color)
}
 .Text .widget-content{
    font-family:var(--text-font);
    font-size:14px;
    color:var(--text-color)
}
 .Image .image-caption{
    font-family:var(--text-font);
    font-size:14px;
    margin:6px 0 0
}
 .contact-form-widget .cf-s{
    float:left;
    width:100%;
    height:34px;
    font-size:14px;
    color:var(--text-color);
    padding:0 10px;
    margin:0 0 10px;
    border:1px solid var(--border-color);
    border-radius:var(--radius)
}
 .is-dark .contact-form-widget .cf-s{
    background-color:var(--gray-bg)
}
 .contact-form-email-message.cf-s{
    float:left;
    width:100%;
    height:auto;
    resize:vertical;
    padding:10px
}
 .contact-form-widget .cf-s::placeholder{
    color:var(--text-color);
    opacity:.9
}
 .contact-form-widget .cf-s:focus{
    border-color:var(--main-color)
}
 .contact-form-button-submit{
    float:left;
    width:100%;
    height:34px;
    background-color:var(--button-bg);
    font-family:inherit;
    font-size:14px;
    color:var(--button-color);
    font-weight:400;
    cursor:pointer;
    padding:0 20px;
    border:0;
    border-radius:var(--radius)
}
 .contact-form-button-submit:hover{
    background-color:var(--button-hover-bg);
    color:var(--button-hover-color)
}
 .contact-form-widget p{
    margin:0
}
 .contact-form-widget .contact-form-error-message-with-border,.contact-form-widget .contact-form-success-message-with-border{
    float:left;
    width:100%;
    background-color:rgba(0,0,0,0);
    font-size:13px;
    color:#e74c3c;
    text-align:left;
    line-height:1;
    margin:10px 0 0;
    border:0
}
 .contact-form-widget .contact-form-success-message-with-border{
    color:#27ae60
}
 .rtl .contact-form-error-message-with-border,.rtl .contact-form-success-message-with-border{
    text-align:right
}
 .contact-form-cross{
    cursor:pointer;
    margin:0 0 0 3px
}
 .rtl .contact-form-cross{
    margin:0 3px 0 0
}
 .Attribution a{
    display:flex;
    align-items:center;
    font-size:14px;
    color:var(--title-color);
    font-weight:var(--title-font-weight)
}
 .Attribution a > svg{
    width:16px;
    height:16px;
    fill:var(--main-color);
    margin:0 4px 0 0
}
 .rtl .Attribution a > svg{
    margin:0 0 0 4px
}
 .Attribution a:hover{
    color:var(--title-hover-color)
}
 .Attribution .copyright{
    font-size:12px;
    color:var(--meta-color);
    padding:0 20px;
    margin:2px 0 0
}
 #google_translate_element{
    position:relative;
    overflow:hidden
}
 .Stats .text-counter-wrapper{
    display:flex;
    align-items:center;
    font-size:18px;
    color:var(--meta-color);
    font-weight:700;
    text-transform:uppercase;
    line-height:1;
    margin:0
}
 .Stats .text-counter-wrapper:before{
    content:'\e202';
    font-family:'Material Icons Round';
    font-size:22px;
    color:var(--title-color);
    font-weight:400;
    margin:0 4px 0 0
}
 .rtl .Stats .text-counter-wrapper:before{
    margin:0 0 0 4px
}
 .ReportAbuse > h3{
    display:flex;
    font-size:14px;
    font-weight:400
}
 .ReportAbuse > h3:before{
    content:'\e002';
    font-family:'Material Icons Round';
    font-size:18px;
    color:var(--main-color);
    margin:0 3px 0 0
}
 .rtl .ReportAbuse > h3:before{
    margin:0 0 0 3px
}
 .ReportAbuse > h3 a:hover{
    text-decoration:underline
}
 #footer-ads-wrap{
    float:left;
    width:100%
}
 .footer-ads .widget{
    position:relative;
    margin:0 0 30px
}
 #footer-wrapper{
    position:relative;
    float:left;
    width:100%;
    background-color:var(--footer-bg);
    box-shadow:0 0 10px rgba(0,0,0,0.1)
}
 .primary-footer{
    --title-color:var(--footer-color);
    --title-hover-color:var(--footer-hover-color);
    --meta-color:var(--footer-meta-color);
    --text-color:var(--footer-text-color);
    --title-font-weight:600
}
 .footer-widgets{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    grid-gap:30px;
    padding:40px 0
}
 .footer-widgets.has-border{
    border-top:1px solid var(--border-color)
}
 .footer-section{
    display:grid;
    grid-template-columns:1fr;
    align-content:start;
    grid-gap:30px
}
 .footer-section > .widget{
    display:flex;
    flex-direction:column
}
 .footer-section .widget > .widget-title{
    margin:0 0 20px
}
 .footer-section .widget-title > .title{
    font-size:15px;
    color:var(--title-color);
    font-weight:600;
    text-transform:uppercase
}
 .primary-footer .contact-form-widget .cf-s,.primary-footer .BlogSearch .search-form{
    background-color:var(--gray-bg)
}
 #nurify-pro-about-section{
    flex-wrap:wrap;
    padding:40px 0
}
 .about-section .Image{
    display:flex;
    justify-content:space-between;
    align-items:center;
    width:calc(100% - $(sidebar.width + 30px))
}
 .footer-info{
    flex:1
}
 .footer-info .title{
    font-size:15px;
    color:#ffffff;
    text-transform:uppercase;
    margin:0 0 10px
}
 .footer-logo{
    padding:0 30px 0 0
}
 .rtl .footer-logo{
    padding:0 0 0 30px
}
 .footer-logo img{
    display:block;
    width:auto;
    height:auto;
    max-height:40px
}
 .footer-info .image-caption{
    font-size:14px;
    color:rgba(255,255,255,0.7);
    margin:0
}
 .footer-info .image-caption a{
    color:#ffffff
}
 .footer-info .image-caption a:hover{
    color:var(--title-hover-color)
}
 .about-section .LinkList{
    width:$(sidebar.width);
    display:flex;
    align-items:center;
    justify-content:flex-end;
    margin:0
}
 .about-section ul.social-icons{
    display:flex;
    flex-wrap:wrap
}
 .about-section .social-icons li{
    margin:0 0 0 10px
}
 .rtl .about-section .social-icons li{
    margin:0 10px 0 0
}
 .about-section .social-icons a{
    display:flex;
    width:34px;
    height:34px;
    background-color:var(--gray-bg);
    font-size:16px;
    color:var(--title-color);
    align-items:center;
    justify-content:center
}
 .about-section .social-icons .rss a,.about-section .social-icons .email a,.about-section .social-icons .external-link a{
    font-size:20px
}
 .about-section .social-icons a:hover{
    color:#fff
}
 .footer-bar{
    background-color:var(--footerbar-bg);
    color:var(--footerbar-color);
    padding:20px 0
}
 .footer-bar .footer-copyright{
    font-size:14px;
    font-weight:400;
    margin:0
}
 .footer-bar .footer-copyright a{
    color:var(--footerbar-color)
}
 .footer-bar .footer-copyright a:hover{
    color:var(--footerbar-hover-color)
}
 #footer-menu{
    position:relative;
    display:block;
    margin:0
}
 .footer-menu ul{
    display:flex;
    flex-wrap:wrap
}
 .footer-menu ul li a{
    font-size:14px;
    color:var(--footerbar-color);
    padding:0;
    margin:0 0 0 25px
}
 .rtl .footer-menu ul li a{
    margin:0 25px 0 0
}
 #footer-menu ul li a:hover{
    color:var(--footerbar-hover-color)
}
 #hidden-widgets-wrap,.hidden-widgets{
    display:none;
    visibility:hidden
}
 #back-top{
    display:flex;
    align-items:center;
    justify-content:center;
    position:fixed;
    bottom:20px;
    right:20px;
    width:34px;
    height:34px;
    background-color:var(--button-bg);
    font-size:24px;
    color:var(--button-color);
    z-index:50;
    opacity:0;
    visibility:hidden;
    transition:visibility .17s ease,opacity .17s ease
}
 .rtl #back-top{
    right:auto;
    left:20px
}
 #back-top:before{
    content:'\e5ce';
    font-family:'Material Icons Round';
    font-weight:400
}
 #back-top.show{
    opacity:1;
    visibility:visible
}
 #back-top:hover{
    background-color:var(--button-hover-bg);
    color:var(--button-hover-color)
}
 .is-error #main-wrapper{
    width:100%
}
 .is-error #sidebar-wrapper{
    display:none
}
 .errorWrap{
    color:var(--title-color);
    text-align:center;
    padding:60px 0
}
 .errorWrap h3{
    font-size:160px;
    color:var(--title-color);
    line-height:1;
    margin:0 0 25px
}
 .errorWrap h4{
    font-size:27px;
    color:var(--title-color);
    margin:0 0 25px
}
 .errorWrap p{
    color:var(--text-color);
    font-size:15px;
    margin:0 0 15px
}
 .errorWrap a{
    display:inline-block;
    height:34px;
    background-color:var(--button-bg);
    font-size:14px;
    color:var(--button-color);
    font-weight:400;
    line-height:34px;
    padding:0 30px;
    margin:15px 0 0
}
 .errorWrap a:hover{
    background-color:var(--button-hover-bg);
    color:var(--button-hover-color)
}
 .cookie-choices-info{
    display:none;
    visibility:hidden;
    opacity:0
}
 .cookie-consent{
    display:none;
    position:fixed;
    bottom:20px;
    left:20px;
    width:300px;
    background-color:var(--cookie-bg);
    z-index:1020;
    padding:20px;
    visibility:hidden;
    opacity:0;
    border-radius:var(--radius);
    box-shadow:0 0 10px rgba(0,0,0,0.1);
    transition:visibility .35s ease,opacity .35s ease,transform .35s ease
}
 .rtl .cookie-consent{
    left:unset;
    right:20px
}
 .cookie-consent.is-visible{
    visibility:visible;
    opacity:1
}
 .consent-text{
    display:block;
    font-size:14px;
    color:var(--cookie-color);
    margin:0 0 15px
}
 .consent-text a{
    color:var(--main-color);
    text-decoration:underline
}
 .consent-button{
    display:inline-block;
    height:34px;
    background-color:var(--button-bg);
    font-size:14px;
    color:var(--button-color);
    font-weight:400;
    line-height:34px;
    padding:0 20px
}
 .consent-button:hover{
    background-color:var(--button-hover-bg);
    color:var(--button-hover-color)
}
 ins.adsbygoogle-noablate[data-anchor-shown="true"]{
    z-index:990!important
}
 #content-wrapper > .google-auto-placed,#content-wrapper .container > .google-auto-placed{
    display:none!important
}
 .CSS_LIGHTBOX{
    z-index:999999!important
}
 .CSS_LIGHTBOX_BG_MASK{
    background-color:rgba(0,0,0,0.9)!important;
    opacity:1!important;
    backdrop-filter:blur(1px)
}
 .CSS_LIGHTBOX_BTN_CLOSE{
    background:transparent!important;
    top:10px!important;
    right:15px!important
}
 .CSS_LIGHTBOX_BTN_CLOSE:before{
    content:'\e5cd';
    font-family:'Material Icons Round';
    color:#fff;
    font-size:24px;
    font-weight:400
}
 .CSS_LIGHTBOX_BTN_CLOSE:hover:before{
    opacity:.85
}
 .rtl .CSS_LIGHTBOX_BTN_CLOSE{
    right:unset!important;
    left:15px
}
 .CSS_LIGHTBOX_ATTRIBUTION_INDEX_CONTAINER .CSS_HCONT_CHILDREN_HOLDER > .CSS_LAYOUT_COMPONENT.CSS_HCONT_CHILD:first-child > .CSS_LAYOUT_COMPONENT{
    opacity:0
}
 a.ads-here{
    display:flex;
    align-items:center;
    justify-content:center;
    height:78px;
    background-color:var(--widget-bg);
    font-size:14px;
    color:var(--meta-color);
    font-style:italic
}
 .sidebar a.ads-here{
    height:250px
}
 a.ads-here:hover{
    color:var(--main-color)
}
 @media only screen and (max-width: $(row.width + 60px)) {
     #outer-wrapper,.is-boxed #outer-wrapper,.is-boxed .header-header{
        width:100%;
        max-width:100%;
        margin:0
    }
     .row-x1{
        width:100%
    }
     #header-wrapper .container,.topbar-wrap,#header-ads-wrap .container,#featured-wrapper .container,#content-wrapper .container,#footer-ads-wrap .container,#footer-wrapper .container{
        padding:0 20px
    }
      .is-single #main-wrapper{
        width:calc(70% - 30px)
    }
     #sidebar-wrapper{
        width:30%
    }
}
 @media only screen and (max-width: 880px) {
     #header-wrapper .main-header .container{
        padding:0
    }
     .topbar-wrap{
        display:none
    }
     .header-items{
        flex-wrap:nowrap
    }
     .mobile-menu-toggle{
        display:flex
    }
     #nurify-pro-main-nav{
        display:none
    }
     #slide-menu,.overlay{
        display:block
    }
     .nav-active .overlay{
        visibility:visible;
        opacity:1
    }
     .flex-left{
        overflow:hidden
    }
     .main-logo{
        flex-shrink:1
    }
     .flex-right{
        padding:0 0 0 10px
    }
     .rtl .flex-right{
        padding:0 10px 0 0
    }
     .flex-right,.rtl .flex-right{
        position:relative;
        top:unset;
        left:unset;
        right:unset
    }
     .darkmode-toggle{
        margin:0!important
    }
     .search-toggle{
        width:auto;
        background-color:var(--header-bg);
        font-size:26px;
        padding:0 16px
    }
     #main-search-wrap{
        padding:0 0 0 20px
    }
     .rtl #main-search-wrap{
        padding:0 20px 0 0
    }
     #content-wrapper > .container,.is-left #content-wrapper > .container{
        flex-direction:column!important;
        justify-content:flex-start
    }
     #main-wrapper,#sidebar-wrapper, .is-single #main-wrapper{
        width:100%;
        position:static!important;
        top:auto!important;
        align-self:auto!important
    }
     #sidebar-wrapper{
        margin:30px 0 0
    }
     .sidebar ul.social-icons{
        grid-template-columns:repeat(4,1fr)
    }
     .footer-widgets{
        grid-template-columns:1fr;
        grid-gap:40px
    }
     #nurify-pro-about-section{
        flex-wrap:wrap;
        flex-direction:column
    }
     .about-section .Image{
        width:100%;
        flex-direction:column;
        justify-content:center;
        text-align:center
    }
     .footer-info{
        text-align:center;
        margin:25px 0 0
    }
     .footer-info .title{
        display:none
    }
     .footer-logo{
        padding:0!important
    }
     .about-section .LinkList{
        width:100%;
        justify-content:center;
        margin:20px 0 0
    }
     .about-section ul.social-icons{
        justify-content:center
    }
     .about-section .social-icons li{
        margin:10px 5px 0!important
    }
     .footer-bar{
        height:auto;
        line-height:inherit;
        padding:25px 0
    }
     .footer-bar .container{
        flex-direction:column-reverse;
        justify-content:center
    }
     .footer-bar .footer-copyright,#footer-menu{
        width:100%;
        text-align:center
    }
     #footer-menu{
        padding:0 0 15px
    }
     .footer-menu ul{
        justify-content:center
    }
     .footer-menu ul li a{
        display:block;
        margin:5px 10px 0!important
    }
     .nav-active #back-top{
        opacity:0!important
    }
}
@media only screen and (max-width: 750px) {
 .index-post-wrap,.grid-items,.grid2-items{
        grid-template-columns:repeat(2,1fr);
        grid-gap:25px 20px
    }
}
 @media only screen and (max-width: 680px) {
     #featured-wrapper .container{
        padding:0
    }
     #featured .widget-content{
        min-height:220px
    }
     .featured-items,.type-feat3 .featured-items{
        grid-template-columns:1fr
    }
     .featured-item.item-0{
        height:220px
    }
     .featured-item.item-0 .entry-info{
        padding:15px
    }
     .featured-grid{
        display:flex;
        grid-template-columns:unset;
        grid-gap:0;
        width:100%;
        height:150px;
        overflow:hidden;
        overflow-x:auto;
        -webkit-overflow-scrolling:touch
    }
     .featured-grid .featured-item{
        width:70%;
        height:100%;
        flex-shrink:0
    }
     .featured-grid > div + div{
        margin:0 0 0 2px
    }
     .rtl .featured-grid > div + div{
        margin:0 2px 0 0
    }
     .type-feat1 .featured-item.item-1,.type-feat3 .featured-grid{
        grid-column:unset
    }
     .featured-items .cs .entry-inner,.featured-item .entry-image-wrap{
        border-radius:0
    }
     .featured-item .entry-title,.type-feat1 .featured-item.item-1 .entry-title,.type-feat3 .featured-item .entry-title{
        font-size:15px
    }
     .type-feat3 .featured-item.item-0 .entry-title{
        font-size:25px
    }
     .featured-grid .entry-meta{
        display:none
    }
     @keyframes slideToLeft{
        from{
            transform:translate3d(10px,0,0)
        }
        to{
            transform:translate3d(0,0,0)
        }
    }
     @keyframes slideToRight {
        from{
            transform:translate3d(-10px,0,0)
        }
        to{
            transform:translate3d(0,0,0)
        }
    }
     .featured-grid .featured-item{
        animation-name:slideToLeft;
        -webkit-animation-duration:.5s;
        animation-duration:.5s;
        -webkit-animation-fill-mode:both;
        animation-fill-mode:both
    }
     .rtl .featured-grid .featured-item{
        animation-name:slideToRight
    }
     .content-section .widget.column-style{
        width:100%
    }
     .grid2-item .entry-image-wrap{
        height:230px;
    }
     .grid2-item .entry-title, .index-post .entry-title{
        font-size:14px
    }
     .grid2-item .entry-author,.grid2-item .entry-meta .sp{
        display:none
    }
     .entry-image-wrap.sz-2.is-video:after{
        transform:translate(50%,-50%) scale(1)
    }
     .index-post{
        flex-direction:column
    }
     .index-post .entry-image-wrap{
        width:100%;
        height:130px;
        margin:0 0 12px!important
    }
     .index-post .entry-header{
        flex:unset
    }
     .p-eh .entry-meta{
        margin:15px 0 0
    }
     .item-post h1.entry-title{
        font-size:31px
    }
     .post-body table{
        display:block
    }
     .share-links li:not(.has-span) a,.share-links .has-span a:before{
        width:40px
    }
     .share-links .twitter.has-span a{
        width:40px;
        justify-content:center
    }
     .share-links .twitter.has-span a:before{
        width:100%;
        background-color:transparent
    }
     .share-links .twitter span{
        display:none
    }
     .share-links .pinterest-p{
        display:none
    }
     .related-posts{
        grid-template-columns:repeat(2,1fr);
        grid-gap:25px 20px
    }
     .sidebar ul.social-icons{
        grid-template-columns:repeat(2,1fr)
    }
     .FeaturedPost .entry-inner{
        height:200px
    }
     .side-item .entry-inner{
        height:200px
    }
     .side-item:not(.cs) .entry-image-wrap{
        width:118px;
        height:78px
    }
     .side3-items{
        grid-template-columns:repeat(2,1fr);
        grid-gap:25px 20px
    }
     .side3-item .entry-image-wrap{
        height:130px
    }
     .errorWrap{
        padding:15px 15px 30px
    }
     .errorWrap h3{
        font-size:130px
    }
     .errorWrap h4{
        line-height:initial
    }
     .cookie-consent{
        right:0!important;
        left:0!important;
        bottom:0;
        width:100%;
        padding:20px;
        border-radius:0
    }
     a.ads-here{
        height:65px
    }
     .sidebar a.ads-here{
        height:180px
    }
}
 @media only screen and (max-width: 480px) {
     .grid-item .entry-image-wrap{
        height:130px
    }
     .grid2-item .entry-image-wrap{
        height:215px
    }
     .video-grid .entry-image-wrap{
        height:115px
    }
     .video-style .video-grid .entry-image-wrap{
        height:105px
    }
     .item-post h1.entry-title{
        font-size:29px
    }
     .related-item .entry-image-wrap{
        height:115px
    }
     .side3-item .entry-image-wrap{
        height:115px
    }
}
 @media only screen and (max-width: 380px) {
     #featured .widget-content{
        min-height:220px
    }
     .featured-item.item-0{
        height:200px
    }
     .featured-item .entry-title,.type-feat1 .featured-item.item-1 .entry-title,.type-feat3 .featured-item .entry-title{
        font-size:14px
    }
     .featured-item.item-0 .entry-title,.type-feat3 .featured-item.item-0 .entry-title{
        font-size:21px
    }
     .featured-grid{
        height:130px
    }
     .block-items .item-0 .entry-image-wrap{
        height:280px
    }
     .grid-item .entry-image-wrap{
        height:100px
    }
     .grid2-item .entry-image-wrap{
        height:200px
    }
     .col-item .entry-inner{
        height:180px
    }
     .video-items .cs .entry-inner{
        height:180px
    }
     .video-style .video-items .cs .entry-inner{
        height:160px
    }
     .video-grid .entry-image-wrap{
        height:100px
    }
     .video-style .video-grid .entry-image-wrap{
        height:90px
    }
     .index-post .entry-image-wrap{
        height:180px
    }
     .item-post h1.entry-title{
        font-size:27px
    }
     .item-post .entry-meta .align-right{
        display:none
    }
     .templateify-toc-inner{
        min-width:100%
    }
     .share-links span{
        display:none
    }
     .share-links .has-span a{
        width:40px;
        justify-content:center
    }
     .share-links .has-span a:before{
        width:100%;
        background-color:transparent
    }
     .related-item .entry-image-wrap{
        height:100px
    }
     .FeaturedPost .entry-inner{
        height:180px
    }
     .side-item .entry-inner{
        height:180px
    }
     .side3-item .entry-image-wrap{
        height:100px
    }
     .share-links .pinterest-p{
        display:block
    }
}
 @media only screen and (max-width: 340px) {
     #slide-menu{
        width:100%
    }
     .errorWrap h3{
        font-size:110px
    }
     .errorWrap h4{
        font-size:27px
    }
}

/* =========================================================
   SHADE v3 — Portal Educativo
   Guinda #9B2247 | Verde #1E5B4F | Dorado #BE9132
   Moderado: mismo layout Nurify, mejor acabado visual
   ========================================================= */

/* --- Tipografía institucional ----------------------------- */
h1{font-size:clamp(26px,3vw,38px);line-height:1.15;letter-spacing:-.3px}
h2{font-size:clamp(20px,2.4vw,28px);line-height:1.2;letter-spacing:-.2px}
h3{font-size:clamp(17px,2vw,22px);line-height:1.25}
.post-body,.entry-content,.post-content{font-size:17.5px;line-height:1.75}
@media(max-width:768px){
  .post-body,.entry-content,.post-content{font-size:16px;line-height:1.7}
}

/* --- Cards: profundidad y presencia ----------------------- */
/* Eliminar capas pesadas de Nurify */
.grid-item:before,.grid-item:after,
.grid2-item:before,.grid2-item:after,
.index-post:before,.index-post:after{display:none!important}

/* Base de card */
.grid-item,.grid2-item,.index-post{
  border:1px solid rgba(155,34,71,.12);
  border-top:3px solid #9B2247;
  border-radius:8px;
  box-shadow:0 2px 8px rgba(0,0,0,.07),0 1px 2px rgba(0,0,0,.05);
  transition:transform .18s ease,box-shadow .18s ease;
  overflow:hidden;
}
.grid-item:hover,.grid2-item:hover,.index-post:hover{
  transform:translateY(-3px);
  box-shadow:0 8px 24px rgba(155,34,71,.14),0 2px 6px rgba(0,0,0,.06);
  border-top-color:#A57F2C;
}

/* Padding interno */
.grid-item .entry-header,.grid2-item .entry-header,
.index-post .entry-header{
  padding:14px 16px 16px;
}

/* Títulos en cards */
.grid-item .entry-title a,.grid2-item .entry-title a,
.index-post .entry-title a{
  font-weight:700;
  line-height:1.3;
  text-decoration:none;
  transition:color .15s ease;
}
.grid-item .entry-title a:hover,.grid2-item .entry-title a:hover,
.index-post .entry-title a:hover{
  color:#9B2247!important;
}

/* --- Imágenes de cards: proporción uniforme --------------- */
.index-post .entry-image-wrap img,
.grid-item .entry-image-wrap img,
.grid2-item .entry-image-wrap img{
  width:100%;
  height:auto;
  display:block;
  aspect-ratio:16/9;
  object-fit:cover;
}
.sidebar .entry-image-wrap img{
  aspect-ratio:1/1;
  object-fit:cover;
}

/* --- Meta text -------------------------------------------- */
.entry-meta,.post-meta{
  color:var(--meta-color)!important; /* MEC4.1: #fffff→var(--meta-color) hex inválido corregido */
  font-size:12.5px;
  margin-top:8px;
}

/* --- Etiquetas de categoría — acento guinda --------------- */
.entry-category{
  background:#9B2247!important;
  color:#fff!important;
  font-size:10px!important;
  font-weight:700!important;
  letter-spacing:.4px!important;
  text-transform:uppercase!important;
  padding:3px 8px!important;
}
.entry-category a{
  color:#fff!important;
}

/* --- Barra lateral dorada en título de sección ------------ */
.title-wrap{
  border-left:4px solid #A57F2C!important;
  padding-left:12px;
}

/* --- Post individual: separador guinda en título ---------- */
.item-post h1.entry-title{
  border-bottom:2px solid rgba(190,145,50,.45);
  padding-bottom:16px;
  margin-bottom:20px;
}

/* --- Breadcrumb con color verde --------------------------- */
#breadcrumb a.home,#breadcrumb a:hover{
  color:#1E5B4F;
}

/* --- Post body: links guinda, no afecta menú ni header ---- */
.post-body a{color:#9B2247}
.post-body a:hover{color:#7f1d3a;text-decoration:underline}

/* --- Blockquote institucional ----------------------------- */
blockquote{
  border-left:4px solid #A57F2C;
  background:#fdf9f0;
  padding:16px 20px;
  border-radius:0 8px 8px 0;
  color:#374151;
  font-style:italic;
}

/* --- Tables limpias --------------------------------------- */
table{border-collapse:collapse;width:100%}
table th{
  background:#9B2247;
  color:#fff;
  padding:10px 14px;
  font-size:13px;
  font-weight:700;
  text-align:left;
}
table td{
  border-bottom:1px solid rgba(0,0,0,.08);
  padding:9px 14px;
  font-size:14px;
}
table tr:nth-child(even) td{background:rgba(155,34,71,.04)}

/* --- Buscador --------------------------------------------- */
.search-form input,.search-form .search-input{
  border-radius:6px!important;
}
.search-form input:focus,.search-form .search-input:focus{
  border-color:#9B2247!important;
  box-shadow:0 0 0 3px rgba(155,34,71,.15)!important;
}

/* --- AdSense CLS ------------------------------------------ */
ins.adsbygoogle,.adsbygoogle{display:block!important}
.widget ins.adsbygoogle,.widget .adsbygoogle{min-height:120px}
@media(min-width:992px){
  .widget ins.adsbygoogle,.widget .adsbygoogle{min-height:250px}
}
.ad-slot,.ads-slot,.in-article-ad,.post-ad,.ads-post{
  min-height:250px;
  content-visibility:auto;
  contain-intrinsic-size:250px 300px;
}

/* --- Accesibilidad ---------------------------------------- */
:focus-visible{
  outline:3px solid rgba(190,145,50,.85);
  outline-offset:3px;
  border-radius:4px;
}
@media(prefers-reduced-motion:reduce){
  *{animation:none!important;transition:none!important;scroll-behavior:auto!important}
}

/* ========================================================= */

