@charset "utf-8";
.btn-blog-readmore{
    --bs-btn-bg: rgb(254 226 226);
    --bs-btn-color: rgb(153 27 27);
    --bs-btn-hover-bg: rgb(153 27 27);
    --bs-btn-hover-color: rgb(255, 255, 255);
    --bs-btn-border-color: rgb(234, 176, 176);
    display: inline-block;
    padding: .5rem 1.5rem .5rem;
    font-size: 15px;
    line-height: 1.1;
    font-weight: 500;
    border-radius: 22px;
}
.btn-blog-loadmore{
    --bs-btn-padding-x: 0.75rem;
    --bs-btn-padding-y: 0.425rem;
    --bs-btn-border-color: #ccc;
    --bs-btn-color: #000;
    --bs-btn-hover-color: var( --color-hover);
    --bs-btn-hover-bg: var(--bg-color);
    --bs-btn-hover-border-color: var(--bg-color);
    position: relative;
    min-width: 140px;
    font-size: 14px; font-weight: 500;
    line-height: 20px;
    font-family: var( --ftitle);
    background-color: #FFF;
}
.btn-blog-loadmore.is-loadmore{
    --bs-btn-border-color: var( --color-hover);
    cursor: not-allowed;
    opacity: .75;
    pointer-events: none;
    color: var( --color-hover);
}
.btn-blog-loadmore.is-loadmore::before{
    --bs-spinner-width: 2rem;
    --bs-spinner-height: 2rem;
    --bs-spinner-vertical-align: -0.125em;
    --bs-spinner-border-width: 0.25em;
    --bs-spinner-animation-speed: 0.75s;
    --bs-spinner-animation-name: spinner-border;
    border: .175rem solid var( --color-hover);
    border-right-color: transparent;

    position: absolute; left: 8px; top: .475rem; z-index: 1;
    display: block;
    content: "";
    width: 18px; height: 18px;
    border-radius: 50%; 
    overflow: hidden;
    animation: var(--bs-spinner-animation-speed) linear infinite var(--bs-spinner-animation-name);
}
/******************************************
***BLOG***************************************
******************************************/
body.page-blog{
    --blog-body-bg-: #fff;
    --blog-body-color: rgb(17, 24, 39);
    --blog-body-color-gray: rgb(107, 114, 128);
    --blog-border-color: rgb(215, 215, 215);
    --blog-box-right-bg: rgb(240, 240, 240); /*rgb(247, 247, 247);*/
    --blog-box-right-item-bg: rgb(255, 255, 255);
    --blog-box-right-item-color: rgb(75, 85, 99)
    --blog-box-right-item-border-color: rgb(243, 244, 246);
    --blog-radius: 1.5rem;
}
body.style-dark{
    --blog-body-bg-: rgb(17, 24, 39);
    --blog-body-color: rgb(229, 231, 235);
    --blog-body-color-gray: rgb(156, 163, 175);
    --blog-border-color: rgb(229, 231, 235);
    --blog-box-right-bg: rgb(31, 41, 55);
    --blog-box-right-item-bg:rgb(55, 65, 81);
    --blog-box-right-item-color: rgb(209, 213, 219);
    --blog-box-right-item-border-color: rgb(55, 65, 81);

}
.blog-right-container{
    padding-left: 3rem;
}
/************************/
.blog-banner-wrapper{
    margin-bottom: 2.5rem;
}
.blog-banner-link{
    display: inline-block;
}
.blog-banner-img{
    display: inline-block;
    max-width: 100%; height: auto;
    object-fit: contain;
    object-position: center top;
    border-radius: var( --blog-radius);
    box-shadow: var( --bs-box-shadow);
}
/************************/
.header-form-container{
    border: 1px solid rgb(206, 212, 218);
    border-radius: var(--bs-border-radius-pill);
}
.blog-header{
    margin-bottom: 2.25rem;
}
.blog-header-title{
    font-size: 2rem; font-weight: 600;
    margin: 0 0 .35rem;
}
.blog-header-quote{
    margin: 0;
    font-weight: 300;
    font-size: 17px;
    color: #333;
}
.blog-header-quote > p:last-child{
    margin-bottom: 0;
}
/****************************/
.blogitem-wrapper{
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
    padding-bottom: 1.75rem;
    margin-bottom: 1.75rem;
    border-bottom: 1px solid #ccc;
}
.blog-left-container > .blogitem-wrapper:last-child{
    border-bottom: none;
    padding-bottom: 0;
}
.blogitem-img{
    flex: 0 0 auto;
    width: 250px;
    min-height: 200px;
    display: flex;
}
.blogitem-picture{
    height: 100%;
    margin: 0; padding: 0;
    border-radius: var( --blog-radius);
}
.blogitem-picture img{
    display: block;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center ;
}
.blogitem-caption{
    flex: 1 0 0 ;
    display: flex; flex-direction: column;
    padding-right: 2rem;
}
.blogitem-title{
    margin: 0 0 .75rem; padding: 0;
    font-size: 23px;
    line-height: 32px;
    font-weight: bold;
    color: rgb(17, 24, 39);
}
.blogitem-summary{
    --line-height: 28px;
    margin-bottom: 1.5rem;
}
.blogitem-overview{
    margin: auto 0 0; padding: 0; list-style-type: none;
    display: flex; flex-wrap: wrap;
    font-size: 13px; line-height: 1.2;
    letter-spacing: .5px;
    font-weight: 500; color: #333;
    align-items: center;
}
.blogitem-overview > *{
    flex: 0 0 auto;
    width: auto;
    position: relative;
    padding-right: 1.25rem;
}
.blogitem-overview > *::after{
    position: absolute; right: 0; top: 50%;
    z-index: 1; transform: translateY( -50%);
    content: ""; display: inline-block;
    width: 1px; height: 16px;
    background-color: #999;
}
.blogitem-overview > *:not( :first-child){
    margin-left: 1.25rem;
}
.blogitem-overview > *:last-child{
    padding-right: 0;
}
.blogitem-overview > *:last-child::after{
    display: none;
}
.blogitem-overview i[class*=fa]{
    margin-right: .35rem;
    color: #888;
}
.blogitem-ctl{
    margin-bottom: .65rem;
}
.blogitem-ctl-label{
    --bg-color: rgb(254 226 226);
    --color: rgb(153 27 27);
    --bg-color-hover: rgb(153 27 27);
    --color-hover: #fff; 
    display: inline-block;
    padding: .35rem .75rem .375rem;
    font-size: 12px; line-height: 1.1;
    font-weight: 500;
    color: var( --color ) !important;
    background-color: var(  --bg-color);
    border-radius: 22px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.blogitem-ctl-label:hover{
    color: var( --color-hover ) !important;
    background-color: var(  --bg-color-hover);
}
.blogitem-ctl-label--{
    --bg-color: rgb(254 249 195);
    --color: rgb(133 77 14);
    --bg-color-hover: rgb(133 77 14);
}
.blogitem-ctl-label--{
    --bg-color: rgb(219 234 254);
    --color: rgb(30 64 175);
    --bg-color-hover: rgb(30 64 175);
    --color-hover: #fff;
}
.blogitem-wrapper a{
    color: inherit;
}
.blogitem-wrapper a:hover{
    color: var( --color-hover);
}
/*************************/
.blogitem-highlight-img{
    margin-bottom: 1.5rem;
}
.blogitem-highlight-picture{
    border-radius: calc( 1.25 * var( --blog-radius) );
}
.blogitem-highlight-picture-img{
    display: block;
    width: 100%; height: 390px;
    object-position: center top;
    object-fit: cover;
}
.blogitem-highlight-caption{
    padding-right: 0 !important;
}
.blogitem-title--highlight-lg{
    font-size: 27px;
    line-height: 36px;
    margin-bottom: .75rem;
}
.blogitem-summary--highlight-lg{
    --line-height: 30px;
    font-size: 18px;
    margin-bottom: 1.5rem;
}
/********************/
.blogitem-highlight{
    --bs-gutter-y: 0;
    margin-bottom: 1.75rem;
    border: none;
    padding-bottom: 0;
}
.blogitem-highlight .blogitem-img{
    width: 200px;
    height: 160px;
    min-height: auto;
}
.blogitem-highlight .blogitem-caption{
    padding-right: 1.5rem;
}
.blogitem-highlight .blogitem-title{
    font-size: 18px;
    line-height: 26px;
}
.blogitem-highlight .blogitem-summary{
    --line-clamp: 3;
    --line-height: 26px;
    margin-bottom: 1.15rem;
    font-size: 16px;
}
.blogitem-highlight .blogitem-overview > li{
    padding-right: 1rem;
}
.blogitem-highlight .blogitem-overview > li:not(:first-child){
    margin-left: 1rem;
}
.blogitem-highlight .blogitem-ctl-label{
    padding: .275rem .75rem .3rem
}
/*******************/
.blogright-box{
    background-color: var( --blog-box-right-bg);
    border-radius: var( --blog-radius);
    border: 1px solid var( --blog-border-color);
    margin-bottom: 1.75rem;
}
.blogright-header{
    padding: 1rem 1.25rem;
    margin-bottom: 0;
    font-weight: bold;
    text-transform: capitalize;
    font-size: 17px; line-height: 1.3;
    border-bottom: 1px solid var( --blog-border-color);
}
.blogright-navigation-list{
    margin: 0; padding: 0; list-style-type: none;
}
.blogright-navigation-list > li{
    margin: 0; padding: .75rem 1rem; list-style-type: none;
    border-bottom: 1px solid var( --blog-border-color);
}
.blogright-navigation-item{
    display: flex; flex-wrap: nowrap;
    align-items: center;
}
.blogright-navigation-item:hover{
    color: var( --color-hover);
}
.blogright-navigation-img{
    flex: 0 0 auto;
    margin: 0;
    width: 45px;
}
.blogright-navigation-img img{
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
    background-color: #fff;
    border-radius: calc( .25 * var( --blog-radius) );
    padding: .25rem;
}
.blogright-navigation-caption{
    flex: 1 0 0;
    padding-left: .75rem;
    display: flex; flex-direction: column;
}
.blogright-navigation-title{
    margin: 0; padding: 0;
    font-size: 16px;
    font-weight: 600;
}
.blogright-navigation-item.active{
    color: var( --color-hover);
}
.blogright-navigation-caption small{
    font-size: 12px; font-weight: 400;
    line-height: 1.1;
    display: block; color: rgb(38, 38, 38);
    margin: .5rem 0 0;
    text-transform: capitalize;
}
/*******************/
.blogright-hashtag-list{
    padding: .75rem .75rem; 
    margin: 0;
    display: flex; flex-wrap: wrap;
}
.blogright-hashtag-list > *{
    flex: 0 0 auto;
    width: auto;
    padding: 0 .35rem;
    margin-bottom: .75rem;
}
.blogright-hashtag-item{
    display: block; width: 100%;
    padding: .55rem .75rem;
    margin: 0;
    background-color: var( --blog-box-right-item-bg);
    border-radius: calc( .25 * var( --blog-radius) );
    color: var( --blog-box-right-item-color);
    font-size: 15px; font-weight: 400;
    line-height: 20px;
    box-shadow: 0 .075rem .15rem rgba(0,0,0,.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.blogright-hashtag-item:hover{
    background-color: var( --color-hover);
    color: #fff;
}
/*******************/
.blogright-box--topview{
    position: sticky;
    top: 75px;
}
.blogright-topview-box{
    margin-bottom: 0rem;
    padding: .75rem 1rem;
    border-bottom: 1px solid var( --blog-border-color);
}
.blogright-topview-item{
    align-items: flex-start;
}
.blogright-topview-item:hover{
    color: var( --color-hover);
}
.blogright-topview-picture{
    flex: 0 0 auto;
    width: 90px;
    border-radius: calc( .35 * var( --blog-radius) );
}
.blogright-topview-picture-img{
    width: 100%; display: block;
    aspect-ratio: 1/1;
    object-fit: cover; object-position: center;
}
.blogright-topview-caption{
    flex: 1 0 0;
    padding-right: 1.25rem;
}
.blogright-topview-title{
    --line-height: 24px;
    margin: .35rem 0 0; padding: 0;
    font-size: 16px; font-weight: 600;
}
.blogitem-ctl-label--view{
    padding: 0;
    font-weight: 500;
    font-size: 13px;
}
.blogitem-ctl-label--view,
.blogitem-ctl-label--view:hover{
    color: #222 !important;
    background: none !important;
}
.blogitem-ctl-label--view i[class*=fa]{
    color: var( --bs-danger);
}
/*****************************/
.blogdetail-ctl{
    margin-bottom: .5rem;
}
.blogdetail-ctl .blogitem-ctl-label{
    font-weight: 700;
}
.blogdetail-title{
    margin: 0 0 1rem; padding: 0;
    font-size: 33px; line-height: 44px;
    font-weight: bold;
}
.blogdetail-quote{
    font-size: 19px; line-height: 32px;
    font-weight: 500;
    margin: 0 0 1.5rem;
}
.blogdetail-img{
    text-align: center;
    margin-left: -5rem; margin-right: -5rem;
    border-radius: var( --blog-radius);
    background-color: #EEE;
    margin-bottom: 1.75rem;
    /* box-shadow: 0 .5rem 1rem rgba(0,0,0,.15); */
}
.blogdetail-img-img{
    display: block;
    width: 100%;
    aspect-ratio: 5/2.75;
    object-fit: cover; object-position: center;
}
/*****************************/
.blog-bottom-container{
    background-color: rgb(241, 245, 249);
    border: 1px solid rgb(229, 231, 235);
    border-radius: 2rem;
    margin-bottom: 3rem;
    margin-top: 2rem;
    padding: 2.35rem 2.5rem 3rem;
}
.blogctlimg-list-wrapper{
    --bs-gutter-x: 1.25rem;
    --bs-gutter-y: 1.25rem;
}
.blogctlimg-link{
    display: block;
    background-color: #fff;
    border-radius: 1rem;
    border: 1px solid rgb(229, 231, 235);
    padding: 1.5rem;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.blogctlimg-img{
    margin: 0;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
}
.blogctlimg-img > img{
    flex: 0 0 auto;
    width: 60px;
    height: auto;
    object-fit: contain; object-position: center;
}
.blogctlimg-caption{
    flex: 0 0 auto;
    width: calc( 100% - 60px);
    padding-left: 1rem;
    font-weight: 500;
    font-size: 17px; line-height: 22px;
    font-family: var( --ftitle);
}
.blogctlimg-link:hover{
    color: var( --color-hover);
    box-shadow: var( --bs-box-shadow-sm);
}
/*****************************/
.blogdetail-hashtag-wraper{
    background-color: rgb(255, 236, 228);
    border: 1px solid 1px solid rgb(255, 180, 148);
    padding: 1.5rem;
    margin: .5rem 0 1.75rem;
    border-radius: 1rem;
}
.blogdetail-hashtag-header{
    margin: 0 0 .5rem;
    font: bold 15px/1.3 var( --ftitle);
    color: var( --color);
}
.blogdetail-hashtag-list{
    font-size: 16px;
    margin: 0;
}
.blogdetail-hashtag-item{
    margin-bottom: .35rem;
}
.blogdetail-hashtag-link:hover{
    color: var( --color-hover);
}
.blogdetail-hashtag-keyword{
    display: flex; flex-wrap: wrap;
    align-items: flex-start;
    font-size: 14px;
    line-height: 22px;
}
.blogdetail-hashtag-keyword > *{
    flex: 0 0 auto;
    width: auto;
    margin-bottom: .5rem;
    padding: .135rem .75rem .225rem;
    border-radius: 1.5rem;
}
.blogdetail-hashtag-keyword-title{
    padding-left: 0;
    padding-right: 0;
}
.blogdetail-hashtag-keyword-link{
    display: inline-block;
    margin-left: .75rem;
    background-color: #eee;
    border: 1px solid #ddd;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.blogdetail-hashtag-keyword-link:hover{
    color: var( --color-hover);
    border-color: var( --color-hover);
}
body.page-blogdetail .sharesocial-wrapper{
    border-radius: 36px;
}
/*****************************/
.blogdetail-other-title{
    font-size: 27px; font-weight: 600;
    margin: 0 0 1.15rem;
    text-transform: capitalize;
}
.blogdetail-other-wrapper{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -.85rem;
}
.blogdetail-other-wrapper > *{
    --bs-gutter-y: 0;
    --bs-gutter-x: 0;
    flex: 0 0 auto;
    width: calc( 100% / 4 );
    flex-direction: column;
    padding: 0 .85rem 0;
    margin: 0 0 1.5rem;
    border: none;
}
.blogdetail-other-wrapper .blogitem-img,
.blogdetail-other-wrapper .blogitem-caption{
    flex: 0 0 auto;
    width: 100%;
}
.blogdetail-other-wrapper .blogitem-img{
    order: 1 !important;
    padding: 0;
}
.blogdetail-other-wrapper .blogitem-caption{
    order: 2 !important;
    padding: 0;
}
.blogdetail-other-wrapper .blogitem-img{
    height: 260px;
    margin-bottom: .75rem;
}
.blogdetail-other-wrapper .blogitem-title{
    font-size: 20px;
    line-height: 28px;
}
.blogdetail-other-wrapper .blogitem-summary{
    --line-height: 28px;
    --line-clamp: 4;
    font-size: 17px;
}
.blogdetail-other-wrapper .blogitem-overview,
.blogdetail-other-wrapper .blogitem-ctl{
    display: none;
}
/******************************************
***END - BLOG***************************************
******************************************/
