/*--------------------- Copyright (c) 2022 ----------------------- 
[Master Stylesheet] 
Project: BlogHub 
Version: 1.0.0 
Author: kamleshyadav 
-------------------------------------------------------------------
[Table of contents] 
1. Global CSS Start 
2. Comman CSS Start 
-- Header CSS Start 
-- Footer CSS Start 
3. Unittesting CSS Start 
4. Woocommerce CSS Start 
5. Demo CSS Start 
6. Responsive CSS Start 


-------------------------------------------------------------------*/
/**** 1. Global CSS Startr ******/
:root {
    --bloghub-title-family: 'Spartan', sans-serif;
    --bloghub-globbh-family: 'Spartan', sans-serif;
    --bloghub-main-bg: #ffffff;
    --bloghub-secondary-bg: #f8f8f8;
    --bloghub-font-color: #707070;
    --bloghub-title-color: #333333;
    --bloghub-white: #ffffff;
    --bloghub-offf-white: rgb(255 255 255 / 10%);
    --bloghub-primary-color: #ff5538;
    --bloghub-primary-light: #ff846f;
    --bloghub-border-color: #eaebec;
    --bloghub-input-border: #eaebec;
    --bloghub-input-bg: #ffffff;
    --bloghub-yellow: #ffaa17;
    --bloghub-footer-bg: #1f232c;
    --bloghub-footer-light-bg: #ebeef5;
    --bloghub-placeholder: #627f95;
    --bloghub-submenu-bg: #f5f5f5;
    --bloghub-sub-menu-bg: #f9f9f9;
    --bloghub-page-title-bg: #ededed;
    --bloghub-blockquote-bg: #020202;
    --bloghub-widget-bg: #fcfcfc;
    --bloghub-radius0: 0;
    --bloghub-radius-comman: 3px;
    --bloghub-radius10: 10px;
    --bloghub-circle-radius: 50%;
    --bloghub-page-title-size: 42px;
    --bloghub-font-size: 14px;
    --bloghub-font14: 14px;
    --bloghub-font18: 18px;
    --bloghub-title-size: 22px;
    --bloghub-sub-title-size: 26px;
    --bloghub-widgets-title-size: 20px;
    --bloghub-shadow: 0 0 30px rgb(0 0 0 / 3%);
    --bloghub-transition: all 0.3s ease-in-out;
    --bloghub-link-color: #353d42;
    --bloghub-copyright-bg: #282d38;
    --bloghub-hover-btn-bg: #15171c;
    /* Variables */
    --bloghub-header-bg: #ffffff;
    --bloghub-top-header-bg: #ffffff;
    --bloghub-top-header-color: #707070;
    --bloghub-product-bg: #f8f8f8;
    --bloghub-widget-border: #eaebec;
    --footer-input-bg: #242534;
    --boxed-bg: #ffffff;
}
html {
    font-size: 16px;
}
* {
    outline: 0 !important;
}
body {
    font-family: var(--bloghub-globbh-family);
    font-weight: 400;
    font-size: var(--bloghub-font-size);
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    background: var(--bloghub-main-bg);
    color: var(--bloghub-font-color);
}
body::-webkit-scrollbar {
    width: 6px;
    box-shadow: none;
}
body::-webkit-scrollbar-track {
    background-color: var(--bloghub-secondary-bg);
    box-shadow: none;
}
body::-webkit-scrollbar-thumb {
    background-color: var(--bloghub-primary-color);
    box-shadow: none;
}
.bh-cart-list .product_list_widget::-webkit-scrollbar {
    width: 6px;
    box-shadow: none;
}
.bh-cart-list .product_list_widget::-webkit-scrollbar-track {
    background-color: var(--bloghub-secondary-bg);
    box-shadow: none;
}
.bh-cart-list .product_list_widget::-webkit-scrollbar-thumb {
    background-color: var(--bloghub-primary-color);
    box-shadow: none;
}
.post, .page {
    margin: 0;
}
a {
    color: var(--bloghub-font-color);
}
a:visited:hover, a:hover, a:focus, button, button:hover {
    color: var(--bloghub-primary-color);
}
a, a:hover, a:focus, button, button:hover, .wp-block-calendar a {
    text-decoration: none;
    -webkit-transition: var(--bloghub-transition);
    -moz-transition: var(--bloghub-transition);
    -ms-transition: var(--bloghub-transition);
    -o-transition: var(--bloghub-transition);
    transition: var(--bloghub-transition);
}
img {
    max-width: 100%;
    height: auto;
}
.text-center {
    text-align: center;
}
.text-left {
    text-align: left;
}
.text-right {
    text-align: right;
}
input, textarea, select, button, button:focus, button:hover, label, .form-control:focus {
    box-shadow: none;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin-bottom: 10px;
    color: var(--bloghub-title-color);
    text-transform: capitalize;
    font-family: var( --bloghub-title-family);
    line-height: 1.2;
}
strong {
    font-weight: 700;
    color: var(--bloghub-title-color);
}
iframe {
    width: 100%;
    border: none;
}
a:visited {
    color: inherit;
}
mark, ins {
    background: transparent;
}
input[type="button"], input[type="reset"], input[type="submit"] {
    border: 1px solid var(--bloghub-border-color);
    background: var(--bloghub-input-bg);
    border-radius: var(--bloghub-radius0);
    color: var(--bloghub-font-color);
    font-size: var(--bloghub-font-size);
    line-height: 1.5;
    padding: 0 20px;
    height: 50px;
}
input[type="text"], input[type="email"], input[type="url"], input[type="password"], input[type="search"], input[type="number"], input[type="tel"], input[type="range"], input[type="date"], input[type="month"], input[type="week"], input[type="time"], input[type="datetime"], .form-control:focus, input[type="datetime-local"], input[type="color"], textarea {
    color: var(--bloghub-font-color);
    border: 1px solid var(--bloghub-border-color);
    background: var(--bloghub-input-bg);
    width: 100%;
    padding: 0 20px;
    height: 50px;
    line-height: 50px;
    border-radius: var(--bloghub-radius0);
    border-radius: 30px;
}
.input-wrap textarea {
    height: 150px;
    border-radius: var(--bloghub-radius0);
    padding: 20px;
    border-radius: 10px;
}
input[type="text"]:focus, input[type="email"]:focus, input[type="url"]:focus, input[type="password"]:focus, input[type="search"]:focus, input[type="number"]:focus, input[type="tel"]:focus, input[type="range"]:focus, input[type="date"]:focus, input[type="month"]:focus, input[type="week"]:focus, input[type="time"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="color"]:focus, textarea:focus, .form-control:focus {
    border-color: var(--bloghub-primary-color);
    color: var(--bloghub-font-color);
}
input[type="text"]:focus, input[type="email"]:focus, input[type="url"]:focus, input[type="password"]:focus, input[type="search"]:focus, input[type="number"]:focus, input[type="tel"]:focus, input[type="range"]:focus, input[type="date"]:focus, input[type="month"]:focus, input[type="week"]:focus, input[type="time"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="color"]:focus, textarea:focus, input[type="text"], input[type="email"], input[type="url"], input[type="password"], input[type="search"], input[type="number"], input[type="tel"], input[type="range"], input[type="date"], input[type="month"], input[type="week"], input[type="time"], input[type="datetime"], input[type="datetime-local"], input[type="color"], textarea {
    -webkit-transition: var(--bloghub-transition);
    -moz-transition: var(--bloghub-transition);
    -ms-transition: var(--bloghub-transition);
    -o-transition: var(--bloghub-transition);
    transition: var(--bloghub-transition);
}
input::-webkit-input-placeholder, .input-wrap input::-webkit-input-placeholder, .input-wrap textarea::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
    color: var(--bloghub-placeholder);
}
.input-wrap input::-moz-placeholder, .input-wrap textarea::-moz-placeholder, input::-moz-placeholder, textarea::-moz-placeholder {
    color: var(--bloghub-placeholder);
    opacity: 1;
}
.input-wrap input:-ms-input-placeholder, input:-ms-input-placeholder, .input-wrap textarea:-ms-input-placeholder, textarea:-ms-input-placeholder {
    color: var(--bloghub-placeholder);
    opacity: 1;
}
.input-wrap input:-moz-placeholder, input:-moz-placeholder, .input-wrap textarea:-moz-placeholder, textarea:-moz-placeholder {
    color: var(--bloghub-placeholder);
    opacity: 1;
}
.input-wrap label {
    font-weight: 600;
    color: var(--bloghub-title-color);
    margin: 0 0 8px;
}
.toast {
    background: var(--bloghub-primary-color);
}
.toast-success {
    background: var(--success);
}
.toast-error {
    background: var(--danger);
}
.txt-primary {
    color: var(--bloghub-primary-color);
}
.scroll {
    position: fixed;
    right: 15px;
    bottom: 15px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 48px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    z-index: 99;
    visibility: hidden;
    -webkit-transform: translateY(150px);
    -ms-transform: translateY(150px);
    transform: translateY(150px);
    background-color: var(--bloghub-primary-color);
    color: var(--bloghub-main-bg);
    border-radius: 50%;
    border: 0;
}
.scroll.active {
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    animation: bounceInDown 1s;
    -webkit-animation: bounceInDown 1s;
    -moz-animation: bounceInDown 1s;
}
#scroll:hover {
    background-color: var(--bloghub-main-bg);
    color: var(--bloghub-primary-color);
}
.scroll:before {
   position: absolute;
   z-index: -1;
   content: '';
   top: 100%;
   left: 5%;
   height: 10px;
   width: 90%;
   opacity: 1;
   background: radial-gradient(ellipse at center,rgba(0,0,0,.25) 0,rgba(0,0,0,0) 80%);
}
@keyframes bounce {
    0%, 100% {
        transform: translateY(-20px);
   }
    50% {
        transform: translateY(0px);
   }
}
/***** 2. Comman CSS Start *****/
.display-flex {
    display: flex;
    flex-wrap: wrap;
}
.nice-select .list {
    width: 100%;
    border-radius: 0;
}
.nice-select .list {
    max-height: 300px;
    overflow: hidden;
    overflow-y: auto;
}
.nice-select li:before {
    content: unset;
    display: none;
}
.nice-select .list::-webkit-scrollbar {
    width: 6px;
    box-shadow: none;
}
.nice-select .list::-webkit-scrollbar-track {
    background-color: var(--bloghub-secondary-bg);
    box-shadow: none;
}
.nice-select .list::-webkit-scrollbar-thumb {
    background-color: var(--bloghub-primary-color);
    box-shadow: none;
}
.nice-select:active, .nice-select.open, .nice-select:focus {
    border-color: var(--bloghub-border-color);
}
.nice-select .option {
    line-height: 1.5;
    min-height: auto;
    word-break: normal;
    padding-top: 10px;
    padding-bottom: 10px;
    margin: 0;
    border: 0;
}
.nice-select {
    white-space: normal;
}
.nice-select {
    width: 100%;
    color: var(--bloghub-font-color);
    border: 1px solid var(--bloghub-border-color);
    background: var(--bloghub-input-bg);
    padding: 0 40px 0 20px;
    height: 50px;
    line-height: 50px;
    border-radius: 40px;
}
.nice-select:after {
    right: 22px;
    width: 8px;
    height: 8px;
    border-bottom: 2px solid var(--bloghub-title-color);
    border-right: 2px solid var(--bloghub-title-color);
}
.nice-select:focus, .nice-select:hover {
    border-color: var(--bloghub-border-color);
}
.nice-select .list {
    background: var(--bloghub-main-bg);
}
body .nice-select .list li.selected, body .nice-select .list li.selected:focus, body .nice-select .list li.selected:hover, body .nice-select .list li.option:focus, body .nice-select .list li.option:hover {
    background: var(--bloghub-page-title-bg) !important;
}
@keyframes buttonripple {
    0% {
        transform: scale(40, 40);
        opacity: .3;
        background: var(--bloghub-primary-color);
   }
    20% {
        transform: scale(25, 25);
        opacity: .3 
   }
    100% {
        opacity: 0;
        transform: scale(0, 0);
   }
}
/* Preloader CSS Start */
.preloader {
    background-color: var(--bloghub-main-bg);
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 2147483647;
    width: 100%;
    height: 100%;
}
.preloader-inner {
    background-position: center center;
    background-repeat: no-repeat;
    height: auto;
    position: absolute;
    left: 50%;
    top: 50%;
    text-align: center;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}
.preloader img {
    display: inline-block;
    -webkit-animation: rotate 3s linear infinite;
    -moz-animation: rotate 3s linear infinite;
    -o-animation: rotate 3s linear infinite;
    -ms-animation: rotate 3s linear infinite;
    animation: rotate 3s linear infinite;
}
@-webkit-keyframes rotate {
    100% {
        -webkit-transform: rotatey(360deg);
   }
}
@-moz-keyframes rotate {
    100% {
        -moz-transform: rotatey(360deg);
   }
}
@keyframes rotate {
    100% {
        transform: rotatey(360deg);
   }
}
/* Button CSS Start */
.bh-btn-wrap {
    display: flex;
    flex-wrap: wrap;
}
.bh-btn {
    padding: 15px 20px 10px;
    background: var(--bloghub-primary-color) !important;
    color: var(--bloghub-white) !important;
    font-weight: 400;
    font-size: var(--bloghub-font-size);
    display: inline-block;
    min-width: 170px;
    text-align: center;
    border-radius: 50px !important;
    border: none !important;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-transform: capitalize;
    transition: box-shadow 0.5s;
    letter-spacing: 1px;
}
.bh-btn:hover, .bh-btn:focus {
    transition: box-shadow 0.5s;
    -webkit-box-shadow: inset 15em 0 0 0 var(--bloghub-hover-btn-bg);
    -moz-box-shadow: inset 15em 0 0 0 var(--bloghub-hover-btn-bg);
    box-shadow: inset 15em 0 0 0 var(--bloghub-hover-btn-bg);
}
.bh-header-style10 .bh-btn:hover, .bh-header-style10 .bh-btn:focus {
    transition: box-shadow 0.5s;
    -webkit-box-shadow: inset 18em 0 0 0 var(--bloghub-hover-btn-bg);
    -moz-box-shadow: inset 18em 0 0 0 var(--bloghub-hover-btn-bg);
    box-shadow: inset 18em 0 0 0 var(--bloghub-hover-btn-bg);
}
.bh-btn:hover, .bh-btn:visited, .bh-btn:visited:hover, .bh-btn:active:hover, .bh-btn:focus:hover {
    color: var(--bloghub-white);
    background: var(--bloghub-primary-color);
    border: none;
}
.bh-btn, .bh-btn:hover, .bh-btn:focus, .bh-btn:visited, .bh-btn:active {
    -webkit-transition: var(--bloghub-transition);
    -moz-transition: var(--bloghub-transition);
    -ms-transition: var(--bloghub-transition);
    -o-transition: var(--bloghub-transition);
    transition: var(--bloghub-transition);
}
.btn-white, .btn-white:visited:hover, .btn-white:active:hover, .btn-white:focus:hover, .btn-white:hover, .btn-white:focus, .btn-white:visited, .btn-white:active {
    color: var(--bloghub-primary-color);
    background: var(--bloghub-main-bg);
    border: none;
}
.woocommerce-account .bh-page-columns {
    margin: 0 0 5px;
}
.bh-product-summary-description form.cart button.bh-btn:hover {
   -webkit-box-shadow: inset 25em 0 0 0 var(--bloghub-hover-btn-bg)\;
   -moz-box-shadow: inset 25em 0 0 0 var(--bloghub-hover-btn-bg);
   box-shadow: inset 25em 0 0 0 var(--bloghub-hover-btn-bg);
}
/*Input Button */
body div input.bh-btn {
    padding: 12px 20px 8px;
    background: var(--bloghub-primary-color);
    color: var(--bloghub-main-bg);
    font-weight: 500;
    font-size: var(--bloghub-font-size);
    display: inline-block;
    min-width: 170px;
    text-align: center;
    border-radius: var(--bloghub-radius-comman);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-transform: capitalize;
}
.input-wrap {
    margin: 0 0 23px;
}
/* Spacer CSS Start */
.top-spacer {
    padding-top: 80px;
}
.bottom-spacer {
    padding-bottom: 40px;
}
.bottom-padder-50 {
    padding-bottom: 50px;
}
.bottom-padder-80 {
    padding-bottom: 80px;
}
.top-spacer-less {
    padding-top: 40px;
}
.mb-30 {
    margin-bottom: 30px;
}
.mb-40 {
    margin-bottom: 40px;
}
.mb-comman {
    margin-bottom: 40px;
}
/* Dark BG CSS Start */
.bh-has-background {
    position: relative;
}
/* Section Title CSS Start */
.bh-title-section {
    position: relative;
    max-width: 1170px;
    margin: auto;
}
.bh-title-section .bh-title-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
/* .bh-title-section .bh-title-inner:before { */
    /* content: ""; */
    /* position: absolute; */
    /* left: 0; */
    /* right: 0; */
    /* border-top: 4px double var(--bloghub-border-color); */
    /* top: 10px; */
/* } */
.template-btn a.vc_general.vc_btn3.vc_btn3-size-md.vc_btn3-shape-rounded.vc_btn3-style-custom:hover {
    box-shadow: inset 10em 0 0 0 #000000;
    border-color: #000000;
}
.bh-title-section .bh-title-inner h2 {
    font-size: var(--bloghub-title-size);
    text-transform: uppercase;
    font-weight: 700;
    position: relative;
    background: var(--bloghub-main-bg);
    padding-right: 20px;
    margin: 0 0 10px;
}
.bh-title-section .bh-title-inner a {
    color: var(--bloghub-link-color);
    position: relative;
    background: var(--bloghub-main-bg);
    padding-left: 20px;
    display: flex;
    flex-wrap: wrap;
    font-size: var(--bloghub-font14);
    font-weight: 600;
    margin: 0 0 10px;
    align-items: center;
}
.default-title.bh-title-section .bh-title-inner a:hover, .bh-title-section.bh-title-style5 .bh-title-inner a:hover {
    color: var(--bloghub-primary-color);
}
.default-title.bh-title-section .bh-title-inner a:hover svg , .bh-title-section.bh-title-style5 .bh-title-inner a:hover svg{
    fill: var(--bloghub-primary-color);
}
.bh-title-section .bh-link-icon {
    display: flex;
}
.bh-link-icon svg {
    height: 10px;
    margin-left: 10px;
    fill: var(--bloghub-link-color);
}
.bh-title-section .bh-title-inner a:hover {
    color: var(--bloghub-title-color);
}
.bh-title-section .bh-title-inner a:hover svg {
    fill: var(--bloghub-title-color);
}
.bh-title-section .bh-title-inner a:hover svg, .bh-title-section .bh-title-inner a svg {
    -webkit-transition: var(--bloghub-transition);
    -moz-transition: var(--bloghub-transition);
    -ms-transition: var(--bloghub-transition);
    -o-transition: var(--bloghub-transition);
    transition: var(--bloghub-transition);
}
.bh-title-section.bh-title-style4 .bh-title-link:after {
    content: "";
    width: 0;
    height: 1px;
    background: var(--bloghub-title-color);
    bottom: 1px;
    right: 0;
    left: 0;
    margin: auto;
    position: absolute;
}
.bh-title-section.bh-title-style4 .bh-title-link:hover:after {
    width: auto;
}
.bh-title-section.bh-title-style4 .bh-title-link:hover:before {
    width: 0;
}
.bh-title-section.bh-title-style4 .bh-title-link:after, .bh-title-section.bh-title-style4 .bh-title-link:before, .bh-title-section.bh-title-style4 .bh-title-link:hover:after, .bh-title-section.bh-title-style4 .bh-title-link:hover:before {
    -webkit-transition: var(--bloghub-transition);
    -moz-transition: var(--bloghub-transition);
    -ms-transition: var(--bloghub-transition);
    -o-transition: var(--bloghub-transition);
    transition: var(--bloghub-transition);
}
/* Title Style 2*/
.bh-title-section.bh-title-style2 .bh-title-inner {
    justify-content: center;
}
.bh-title-section.bh-title-style2 .bh-title-inner h2 {
    padding: 0 20px;
}
/* Title Style 3*/
.bh-title-section.bh-title-style3 {
    border-bottom: 2px solid var(--bloghub-border-color);
    margin: 0 0 20px;
    padding: 0 0 10px;
}
.bh-title-section.bh-title-style3 .bh-title-inner:before {
    display: none;
}
.bh-title-section.bh-title-style3 a {
    color: var(--bloghub-white);
    background: var(--bloghub-primary-color);
    padding: 12px 10px 8px;
    min-width: 140px;
    text-align: center;
    display: inline-block;
    border-radius: 40px !important;
    text-transform: capitalize;
}
.bh-title-section.bh-title-style3 a:hover {
    color: var(--bloghub-white);
}
/* Title Style 4*/
.bh-title-section.bh-title-style4 .bh-title-inner:before {
    display: none;
}
.bh-title-section.bh-title-style4 .bh-title-link {
    padding: 0;
    position: relative;
    color: var(--bloghub-primary-color);
    font-weight: 700;
}
.bh-title-section.bh-title-style4 .bh-title-link:before {
    content: "";
    width: auto;
    height: 1px;
    background: var(--bloghub-primary-color);
    bottom: 1px;
    right: 0;
    left: 0;
    margin: auto;
    position: absolute;
}
.bh-title-section.bh-title-style4 .bh-title-inner h2 {
    padding: 0 0 0 30px;
    text-transform: capitalize;
    font-size: 26px;
}
.bh-title-section.bh-title-style4 .bh-title-inner h2:before {
    content: "";
    position: absolute;
    left: 0;
    height: 98%;
    width: 4px;
    background: #ffc410;
    top: 0;
}
.bh-title-section.bh-title-style4.green-border .bh-title-inner h2:before {
    background: #9cd346;
}
.bh-title-section.bh-title-style4.blue-border .bh-title-inner h2:before {
    background: #488af8;
}
.bh-title-section.bh-title-style4.pink-border .bh-title-inner h2:before {
    background: #f24fce;
}
/* Title Style 5*/
.bh-title-section.bh-title-style5 .bh-title-inner {
    justify-content: space-between;
}
.bh-title-section.bh-title-style5 .bh-title-inner h2 {
    padding: 0 10px 0 0;
}
.bh-title-section.bh-title-style5 .bh-title-inner:before {
    background: url(../images/line-on.png);
    background-repeat: repeat-x;
    background-size: contain;
    height: 6px;
    border: 0;
}
/* Title Style 6*/
.bh-title-section.bh-title-style6 {
    max-width: inherit;
}
.bh-title-section.bh-title-style6 .bh-title-inner {
    justify-content: center;
}
.bh-title-section.bh-title-style6 .bh-title-inner h2 {
    padding: 0 15px;
}
.bh-title-section.bh-title-style6 .bh-title-inner:before {
    background: url(../images/line-on.png);
    background-repeat: repeat-x;
    background-size: contain;
    height: 6px;
    border: 0;
}
/** Header CSS **/
.bh-logo .bh-logo-title {
    color: var(--bloghub-title-color);
    font-size: 26px;
    font-weight: 800;
}
/* Header Search */
.bh-search-form {
    position: fixed;
    right: 0;
    bottom: 0;
    top: 0;
    width: 100%;
    left: 0%;
    background: rgb(0 0 0 / 80%);
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    cursor: url(../images/close_search.png), auto;
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    transform: translateY(100%);
}
.bh-search-form.show-search {
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
    transform: translateY(0%);
}
.bh-search-form.show-search, .bh-search-form {
    -webkit-transition: var(--bloghub-transition);
    -moz-transition: var(--bloghub-transition);
    -ms-transition: var(--bloghub-transition);
    -o-transition: var(--bloghub-transition);
    transition: var(--bloghub-transition);
}
.bh-search-form-inner {
    width: 50%;
    position: relative;
    text-align: end;
    -webkit-transform: translateY(200px);
    -moz-transform: translateY(200px);
    -ms-transform: translateY(200px);
    -o-transform: translateY(200px);
    transform: translateY(200px);
    visibility: hidden;
}
.bh-search-form.show-search .bh-search-form-inner {
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
    visibility: visible;
}
.bh-search-form.show-search .bh-search-form-inner, .bh-search-form-inner {
    -webkit-transition: var(--bloghub-transition);
    -moz-transition: var(--bloghub-transition);
    -ms-transition: var(--bloghub-transition);
    -o-transition: var(--bloghub-transition);
    transition: var(--bloghub-transition);
}
.search-bar-inner {
    position: relative;
    height: 50px;
}
.search-bar-inner input {
    width: 100%;
    height: 50px;
    padding: 15px 55px 15px 15px;
    border: none;
    color: var(--bloghub-font-color);
}
.search-bar-inner input::-webkit-input-placeholder {
    color: var(--bloghub-white);
    opacity: 90%;
}
.search-bar-inner input::-moz-placeholder {
    color: var(--bloghub-white);
    opacity: 90%;
}
.search-bar-inner input:-ms-input-placeholder {
    color: var(--bloghub-white);
    opacity: 90%;
}
.search-bar-inner input:-moz-placeholder {
    color: var(--bloghub-white);
    opacity: 90%;
}
.search-bar-inner input:focus {
    color: var(--bloghub-white);
}
.search-bar-inner button {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    border: none;
    background: var(--bloghub-primary-color);
    fill: var(--bloghub-white);
    width: 50px;
    cursor: pointer;
    border-radius: 0 30px 30px 0;
}
.close-search {
    margin: 0 0 50px 0;
    display: inline-block;
    padding: 0 15px;
}
.bh-search-btn {
    cursor: pointer;
    width: 18px;
    height: 18px;
    line-height: 18px;
    margin-left: 10px;
}
.search-bar-inner button svg {
    width: 20px;
    fill: var(--bloghub-white);
}
/* Header Cart */
body.open-cart:before {
    background: rgb(0 0 0 / 0.6);
    content: "";
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9999;
}
.bh-cart-quntity {
    position: relative;
}
.bh-cart-quntity {
    position: relative;
    height: 40px;
    display: inline-block;
    width: 40px;
    text-align: center;
    border: none;
    border-radius: var(--bloghub-circle-radius);
    line-height: 40px;
}
.bh-cart-quntity:before {
    position: absolute;
    content: "";
    background: var(--bloghub-primary-color);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: none;
    border-radius: var(--bloghub-circle-radius);
}
.bh-cart-count {
    position: absolute;
    top: -4px;
    background: var(--bloghub-primary-color);
    border: none;
    border-radius: var(--bloghub-circle-radius);
    color: var(--bloghub-main-bg);
    height: 20px;
    min-width: 20px;
    line-height: 20px;
    font-size: 10px;
    right: -6px;
}
.bh-cart-btn {
    cursor: pointer;
    min-width: 80px;
    display: inline-block;
    margin-left: 30px;
}
.bh-cart-total {
    color: var(--bloghub-main-bg);
    display: inline-block;
    margin-left: 10px;
    font-weight: 500;
}
.bh-header-cart-box {
    position: fixed;
    bottom: 0;
    top: 0;
    z-index: 99999;
    background: var(--bloghub-main-bg);
    box-shadow: var(--bloghub-shadow);
    max-width: 300px;
    right: -400px;
    text-align: left;
    width: 100%;
    transition: var(--bloghub-transition) cubic-bezier(0.64, 0.02, 0.23, 0.96);
    -webkit-transition: var(--bloghub-transition) cubic-bezier(0.64, 0.02, 0.23, 0.96);
    -moz-transition: var(--bloghub-transition) cubic-bezier(0.64, 0.02, 0.23, 0.96);
    -o-transition: var(--bloghub-transition) cubic-bezier(0.64, 0.02, 0.23, 0.96);
    -ms-transition: var(--bloghub-transition) cubic-bezier(0.64, 0.02, 0.23, 0.96);
    overflow-y: auto;
}
.admin-bar .bh-header-cart-box {
    top: 30px;
}
.open-cart .bh-header-cart-box {
    right: 0;
}
.bh-cart-head {
    text-align: center;
    padding: 20px 30px 20px;
    position: relative;
    background: var(--bloghub-main-bg);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.bh-cart-head h4 {
    color: var(--bloghub-title-color);
    font-size: var(--bloghub-sub-title-size);
    font-weight: 600;
    margin: 0;
}
.bh-close-cart {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: var(--bloghub-circle-radius);
    background: var(--bloghub-primary-color);
}
.bh-close-cart svg {
    height: 12px;
    fill: var(--bloghub-main-bg);
}
body .bh-right-cart-slide .bh-head-icon .bh-close-cart svg {
    fill: var(--bloghub-primary-color);
    height: 15px;
    width: 15px;
}
.bh-cart-products {
    padding: 17px 20px 20px;
    max-height: calc(100% - 80px);
    overflow-y: auto;
}
.bh-cart-products .woocommerce-mini-cart__empty-message {
    text-align: center;
}
.woocommerce-mini-cart.cart_list {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    width: 100%;
}
.woocommerce-mini-cart.cart_list li.woocommerce-mini-cart-item {
    width: 100%;
    display: block;
    padding: 10px 20px 10px;
    border-bottom: 1px solid var(--bloghub-border-color);
    margin-bottom: 17px;
}
.woocommerce-mini-cart.cart_list li.woocommerce-mini-cart-item .remove {
    background: var(--bloghub-primary-color);
    color: var(--bloghub-white) !important;
    width: 25px;
    height: 25px;
    padding: 0;
    text-align: center;
    line-height: 23px;
    border-radius: var(--bloghub-circle-radius);
    font-size: 16px;
    font-weight: 500;
    display: inline-block;
    vertical-align: middle;
    padding-top: 3px;
}
.woocommerce-mini-cart.cart_list li.woocommerce-mini-cart-item .remove:hover {
    background: var(--bloghub-primary-color);
}
.woocommerce-mini-cart.cart_list li.woocommerce-mini-cart-item a .attachment-woocommerce_thumbnail {
    object-fit: cover;
    border-radius: var(--bloghub-radius0);
    box-shadow: var(--bloghub-shadow);
    border: none;
    width: 60px;
    height: 60px;
    margin: 10px 20px 10px 0;
    border-radius: 6px;
}
.bh-cart-products .woocommerce-mini-cart.cart_list li.woocommerce-mini-cart-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.bh-cart-products .woocommerce-mini-cart.cart_list li.woocommerce-mini-cart-item a .attachment-woocommerce_thumbnail {
    display: inline-block;
}
.woocommerce-mini-cart.cart_list li.woocommerce-mini-cart-item>a:not(.remove) {
    color: var(--bloghub-title-color);
    font-size: var(--bloghub-font-size);
    font-weight: 400;
    text-align: left;
    width: calc(100% - 25px);
    padding-left: 10px;
    white-space: nowrap;
    overflow: hidden;
}
.bh-cart-products .woocommerce-mini-cart.cart_list li a:nth-child(2) {
    width: calc(100% - 110px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    justify-content: left;
}
.bh-cart-products .woocommerce-mini-cart.cart_list li.woocommerce-mini-cart-item>a:not(.remove) {
    display: flex;
    justify-content: flex-start;
}
.woocommerce-mini-cart.cart_list li.woocommerce-mini-cart-item .quantity {
    font-weight: 600;
    color: var(--bloghub-primary-color);
    display: block;
    margin: 0 0 0 40px;
    font-size: var(--bloghub-font18);
}
.woocommerce #review_form #respond textarea {
    height: 120px;
    padding: 20px;
    line-height: 1.5;
}
textarea {
    line-height: 1.5;
}
.woocommerce-mini-cart.cart_list li.woocommerce-mini-cart-item>a:not(.remove):hover {
    color: var(--bloghub-primary-color);
}
.bh-cart-products .woocommerce-mini-cart.cart_list span.quantity {
    margin: 0px 0 0 10px;
    width: 80px;
}
.bh-cart-products .woocommerce-mini-cart__buttons {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.bh-cart-products .woocommerce-mini-cart__buttons .bh-btn {
    margin: 0 0 10px;
    min-width: 120px;
}
.bh-cart-products .woocommerce-mini-cart__total {
    margin: 8px 0 23px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.bh-cart-products .woocommerce-mini-cart__total strong {
    font-weight: 600;
    color: var(--bloghub-title-color);
}
.bh-cart-products .woocommerce-mini-cart__total .woocommerce-Price-amount {
    font-weight: 600;
    color: var(--bloghub-primary-color);
}
.open-cart .bh-header-cart-box-overlay:before {
    position: fixed;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bloghub-secondary-bg);
    z-index: 999;
    opacity: .6;
}
.open-cart .bh-header-cart-box-overlay:before, .bh-header-cart-box-overlay:before {
    -webkit-transition: var(--bloghub-transition);
    -moz-transition: var(--bloghub-transition);
    -ms-transition: var(--bloghub-transition);
    -o-transition: var(--bloghub-transition);
    transition: var(--bloghub-transition);
}
.bh-header-cart-box-overlay {
    display: inline-block;
}
.bh-cart-products .woocommerce-Price-amount.amount {
    font-size: var(--bloghub-font-size);
}
.bh-cart-box .woocommerce-mini-cart__empty-message {
    padding: 15px 20px 5px;
}
.bh-cart-box {
    -webkit-transform: translateY(50px);
    -moz-transform: translateY(50px);
    -ms-transform: translateY(50px);
    -o-transform: translateY(50px);
    transform: translateY(50px);
    visibility: hidden;
    opacity: 0;
}
.bh-cart-box.open-cart {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
}
/* Cart Header */
.bh-cart-wrapper {
    position: relative;
    margin-right: 6px;
}
.bh-cart-box {
    position: absolute;
    background: var(--bloghub-secondary-bg);
    min-width: 300px;
    max-width: 300px;
    right: 0;
    z-index: 9;
    border-radius: var(--bloghub-radius10);
    overflow: hidden;
}
.bh-cart-box .woocommerce-mini-cart__total.total, .bh-cart-box .woocommerce-mini-cart__buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 10px 20px 0;
    margin: 10px 0 0;
    border-top: 1px solid var(--bloghub-border-color);
}
.bh-cart-box .woocommerce-mini-cart__buttons {
    padding: 20px 20px 20px;
}
.bh-top-header .bh-info-detail ul.woocommerce-mini-cart {
    max-height: 200px;
    overflow: hidden;
    overflow-y: auto;
}
.woocommerce-mini-cart.cart_list li.woocommerce-mini-cart-item:last-of-type {
    margin: 0 0 3px;
    border: 0;
    padding: 10px 20px 0px;
}
.bh-top-header .bh-info-detail ul.woocommerce-mini-cart::-webkit-scrollbar {
    width: 3px;
}
.bh-top-header .bh-info-detail ul.woocommerce-mini-cart::-webkit-scrollbar-track {
    background-color: var(--bloghub-secondary-bg);
}
.bh-top-header .bh-info-detail ul.woocommerce-mini-cart::-webkit-scrollbar-thumb {
    background-color: var(--bloghub-primary-color);
}
.bh-cart-wrapper .woocommerce-mini-cart.cart_list li.woocommerce-mini-cart-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin: 0;
}
.bh-cart-wrapper .woocommerce-mini-cart.cart_list li.woocommerce-mini-cart-item .quantity {
    width: 100%;
    margin: 0;
}
.bh-cart-wrapper .woocommerce-mini-cart.cart_list li.woocommerce-mini-cart-item .quantity {
    display: none;
}
.bh-cart-wrapper .woocommerce-mini-cart.cart_list li.woocommerce-mini-cart-item:first-of-type a:first-of-type {
    display: none;
}
/* Header Nav */
.bh-header-wrapper .menu {
    display: flex;
    flex-wrap: wrap;
    text-transform: capitalize;
    justify-content: flex-end;
}
.bh-header-wrapper ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.bh-header-wrapper .menu li {
    position: relative;
    margin: 0;
}
.bh-header-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    background: var(--bloghub-header-bg);
}
.bh-header-wrapper .menu li a, .bh-header-wrapper .menu li a:visited, .bh-header-wrapper .menu li a:focus {
    color: var(--bloghub-title-color);
    font-weight: 500;
}
.bh-header-wrapper .menu li.current-menu-item>a, .bh-header-wrapper .menu li.current-menu-item>a:focus, .bh-header-wrapper .menu li.current-menu-item>a:visited {
    color: var(--bloghub-primary-color);
}
.bh-header-wrapper .menu li.current-menu-ancestor>a, .bh-header-wrapper .menu li.current-menu-ancestor>a:focus, .bh-header-wrapper .menu li.current-menu-ancestor>a:visited {
    color: var(--bloghub-primary-color);
}
.bh-header-wrapper .bh-head-icon .woocommerce-Price-amount.amount {
    color: var(--bloghub-title-color);
    font-weight: 700;
    font-size: var(--bloghub-font-size);
}
.bh-header-wrapper .menu li a {
    position: relative;
}
.bh-search-btn svg {
    fill: var(--bloghub-primary-color);
    height: 16px;
}
.bh-header-wrapper .bh-search-btn svg {
    fill: var(--bloghub-primary-color);
    height: 16px;
}
.bh-header-wrapper .row {
    align-items: center;
    justify-content: space-between;
}
.bh-main-navigation {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
}
/* DEMO HEADER CSS WITH DEMO CLASS */
body .bh-main-nav-wrapper .menu>li>a {
    display: inline-block;
}
.bloghub-demo .bh-header-wrapper {
    padding: 0;
}
.bloghub-demo .bh-main-nav-wrapper {
    /* border-left: 1px solid var(--bloghub-offf-white); */
}
/* HEADER STYLES START */
/* HEADER One START*/
.bh-top-header-wrapper, .bh-main-header {
    width: 100%;
}
.bh-main-header .bh-main-header-inner {
    width: 100%;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 300px;
}
.bh-header-style10 .bh-main-header .bh-main-header-inner {
    width: 100%;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
	align-items:center;
    padding: 0 15px;
}
.bh-header-style10 .bh-main-nav-wrapper{
	display: flex;
	align-items:center;
}
.bh-header-style10 .login-btn-header{
	background: #30d074 !important;
	border-radius:4px !important;
}
.bh-header-style10 .login-btn-header span svg, .bh-header-style10 .login-btn-header span svg path{
	fill:unset !important; 
}
.bh-search-fields {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
}
.bh-search-fields input {
    border: 0;
    background: transparent;
    padding-right: 40px;
    border-bottom: 1px solid transparent;
}
.bh-main-header .row {
    justify-content: center;
}
.bh-search-fields .bh-search-icon {
    position: absolute;
    right: 20px;
    top: 10px;
    background: transparent;
    border: 0;
    padding: 0;
}
.bh-search-fields input:focus {
    border-color: var(--bloghub-input-border);
}
.bh-main-header .bh-header-searh-wrap {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    display: flex;
    align-items: center;
}
.bh-header-style1 .bh-main-header .bh-main-nav-wrapper .menu>li>a {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    color: #222222;
}
.bh-header-style1 .bh-main-header .bh-main-nav-wrapper .menu>li>a:hover {
    color: var(--bloghub-primary-color);
}
.bh-header-style1 .bh-main-header .bh-main-nav-wrapper .menu>li>a:before {
    content: unset;
}
.bh-cart-wrapper .woocommerce-Price-amount.amount, .bh-cart-wrapper .woocommerce-mini-cart.cart_list li.woocommerce-mini-cart-item .quantity {
    font-size: var(--bloghub-font-size);
}
.bh-cart-list .product_list_widget {
    max-height: 200px;
    overflow: hidden;
    overflow-y: auto;
}
.bh-cart-box .woocommerce-mini-cart__buttons .bh-btn {
    font-size: 12px;
    font-weight: 500;
    text-transform: capitalize;
}
/* TOP Header CSS Start */
.bh-top-header-wrapper {
    border-bottom: 4px double var(--bloghub-border-color);
    padding: 20px 0 20px;
}
.bh-date-controls ul li.bh-today-date .bh-comman-icon {
    margin-right: 5px;
}
.bh-logo-wrap {
    text-align: center;
}
.bh-date-controls ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
}
.bh-date-controls ul li.bh-today-date {
    margin-right: 30px;
    color: var(--bloghub-title-color);
    font-weight: 600;
}
.bh-date-controls ul li {
    margin: 3px 0 3px 10px;
}
.bh-date-controls ul .bh-today-date span {
    color: var(--bloghub-title-color);
    display: inline-block;
}
.bh-header-cart {
    position: relative;
}
.bh-header-cart .bh-cart-quantity {
    position: absolute;
    top: -6px;
    right: -6px;
    font-size: 8px;
    color: var(--bloghub-white);
    background: var(--bloghub-primary-color);
    border-radius: var(--bloghub-circle-radius);
    display: inline-block;
    height: 20px;
    width: 20px;
    line-height: 21px;
    text-align: center;
}
/* Social*/
.bh-header-social ul {
    display: inline-flex;
    flex-wrap: wrap;
}
.bh-header-social ul li {
    margin: 3px 8px 3px 0;
}
.bh-header-social ul a {
    height: 40px;
    width: 40px;
    display: inline-block;
    line-height: 38px;
    border: 1px solid var(--bloghub-border-color);
    border-radius: 50%;
    text-align: center;
}
.bh-header-social ul a:hover {
    border-color: var(--bloghub-primary-color);
}
.bh-header-social ul a svg {
    height: 14px;
    fill: var(--bloghub-title-color);
}
.bh-header-social ul a:hover svg {
    fill: var(--bloghub-primary-color);
}
.bh-header-social ul a:hover svg, .bh-header-social ul a svg {
    -webkit-transition: var(--bloghub-transition);
    -moz-transition: var(--bloghub-transition);
    -ms-transition: var(--bloghub-transition);
    -o-transition: var(--bloghub-transition);
    transition: var(--bloghub-transition);
}
/* icon */
.bh-comman-icon {
    height: 40px;
    width: 40px;
    display: inline-block;
    line-height: 37px;
    border: 1px solid var(--bloghub-border-color);
    border-radius: 50%;
    text-align: center;
}
.bh-comman-icon:hover {
    border-color: var(--bloghub-primary-color);
}
.bh-comman-icon svg {
    height: 15px;
    fill: var(--bloghub-title-color);
}
.bh-comman-icon:hover svg {
    fill: var(--bloghub-primary-color);
}
.bh-contact-list svg, .bh-contact-list svg path.cls-1 {
    fill: var(--bloghub-primary-color);
}
.bh-comman-icon:hover svg, .bh-comman-icon svg, .bh-comman-icon, .bh-comman-icon:hover {
    -webkit-transition: var(--bloghub-transition);
    -moz-transition: var(--bloghub-transition);
    -ms-transition: var(--bloghub-transition);
    -o-transition: var(--bloghub-transition);
    transition: var(--bloghub-transition);
}
/* Search Field */
.bh-search-icon svg {
    height: 15px;
    fill: var(--bloghub-title-color);
}
.bh-top-header-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
/* Global */
.container-fluid, .container, .row>* {
    padding-left: 15px;
    padding-right: 15px;
}
.row {
    margin-left: -15px;
    margin-right: -15px;
}
.bh-header-wrapper.bh-header-style1 .bh-comman-icon svg {
    fill: var(--bloghub-primary-color);
}
/* HEADER STYLES Two START*/
.bh-notice-btn {
    background-color: var(--bloghub-primary-color);
    display: inline-block;
    border-radius: 50px;
    color: var(--bloghub-white) !important;
    min-width: 100px;
    padding: 7px 20px 5px 30px;
    text-transform: uppercase;
    margin: 0 26px 10px 0;
    position: relative;
}
.bh-notice-btn:before {
    content: "";
    position: absolute;
    left: 15px;
    height: 6px;
    width: 6px;
    border-radius: 50%;
    background: var(--bloghub-white);
    top: 0;
    bottom: 0;
    margin: auto;
}
.bh-header-wrapper.bh-header-style2 .bh-notice-btn {
    padding: 5px 20px 5px 30px;
}
.bh-notice-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.bh-notice-inner>span {
    margin: 0 0 10px;
    display: inline-block;
    font-weight: 500;
}
.bh-header-style2 .bh-top-header-row .bh-date-controls {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
}
.bh-header-social.bh-header-social-flat ul li a {
    height: auto;
    width: auto;
    border: 0;
    line-height: initial;
    border-radius: 0;
    padding: 0 6px;
}
.bh-header-social.bh-header-social-flat ul li:hover, .bh-header-social.bh-header-social-flat ul li {
    -webkit-transition: var(--bloghub-transition);
    -moz-transition: var(--bloghub-transition);
    -ms-transition: var(--bloghub-transition);
    -o-transition: var(--bloghub-transition);
    transition: var(--bloghub-transition);
}
.bh-header-social.bh-header-social-flat ul li:hover {
    -webkit-transform: translateY(-6px);
    -moz-transform: translateY(-6px);
    -ms-transform: translateY(-6px);
    -o-transform: translateY(-6px);
    transform: translateY(-6px);
}
.bh-header-style2 .bh-top-header-row .bh-date-controls .bh-comman-icon {
    border: 0;
    width: auto;
    height: auto;
    line-height: initial;
}
.bh-header-style2 .bh-top-header-row .bh-date-controls .bh-comman-icon svg {
    fill: var(--bloghub-primary-color);
}
.bh-header-style2 .bh-top-header-wrapper {
    border-bottom: 1px solid var(--bloghub-border-color);
}
.bh-header-wrapper.bh-header-style2 .bh-top-header-wrapper {
    padding: 10px 0 0;
}
.bh-header-wrapper.bh-header-style2 .bh-top-header-wrapper {
    background: var(--bloghub-top-header-bg);
    color: var(--bloghub-top-header-color);
}
.bh-header-style2 .bh-top-header-row .bh-date-controls>* {
    margin: 0 0 10px;
}
/* Main Header 2*/
.bh-header-style2 .bh-main-header-inner {
    padding: 7px 15px;
    justify-content: space-between;
    align-items: center;
}
.bh-header-style2 .bh-main-header-inner .bh-logo-wrap {
    text-align: left;
}
.bh-header-style2 .bh-main-header-inner .bh-header-searh-wrap {
    position: unset;
}
.bh-header-style2 .bh-main-header-inner .bh-serach-cart-holder {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
body .bh-header-style2 .bh-main-nav-wrapper .menu>li>a:before {
    display: none;
}
/* HEADER STYLES Three Start */
/*Top Header*/
.bh-header-wrapper.bh-header-style2.bh-header-style3 .bh-top-header-wrapper {
    background: var(--bloghub-primary-color);
    color: var(--bloghub-white);
}
.bh-header-wrapper.bh-header-style2.bh-header-style3 .bh-top-header-wrapper .bh-date-controls ul .bh-today-date span {
    color: var(--bloghub-white);
}
.bh-header-wrapper.bh-header-style2.bh-header-style3 .bh-top-header-wrapper .bh-date-controls ul .bh-today-date .bh-comman-icon svg {
    fill: var(--bloghub-white);
}
.bh-header-wrapper.bh-header-style2.bh-header-style3 .bh-top-header-wrapper .bh-header-social.bh-header-social-flat ul li a svg {
    fill: var(--bloghub-white);
}
.bh-header-wrapper.bh-header-style2.bh-header-style3 .bh-top-header-wrapper .bh-notice-btn {
    background-color: #ff486a;
    font-size: 12px;
    font-weight: 500;
}
body .bh-header-wrapper.bh-header-style2.bh-header-style3 .bh-main-nav-wrapper .menu>li>a {
    font-weight: 600;
}
.bh-header-wrapper.bh-header-style2.bh-header-style3 .bh-search-fields input {
    border: 1px solid var(--bloghub-border-color);
    background: var(--bloghub-input-bg);
    border-radius: 50px;
    height: 45px;
    padding: 0 40px 0 20px;
}
.bh-header-wrapper.bh-header-style2.bh-header-style3 .bh-top-header-wrapper .bh-notice-inner>span {
    max-width: 350px;
    white-space: nowrap;
    overflow: hidden;
}
.bh-header-wrapper.bh-header-style2.bh-header-style3 .bh-today-date svg {
    vertical-align: top;
}
.bh-header-wrapper.bh-header-style2.bh-header-style3 .bh-main-header .bh-date-controls ul {
    margin: 0 0 5px;
}
.bh-header-wrapper.bh-header-style2.bh-header-style3 .bh-top-header-wrapper .bh-notice-btn {
    padding: 3px 20px 3px 30px;
}
/* HEADER STYLES Four Start */
.login-btn-header {
    background: var(--bloghub-primary-color);
    background-image: -moz-linear-gradient( 180deg, rgb(18, 185, 230) 0%, rgb(128, 234, 139) 100%) !important;
    background-image: -webkit-linear-gradient( 180deg, rgb(18, 185, 230) 0%, rgb(128, 234, 139) 100%) !important;
    background-image: -ms-linear-gradient( 180deg, rgb(18, 185, 230) 0%, rgb(128, 234, 139) 100%) !important;
    display: inline-flex;
    min-width: 130px;
    color: var(--bloghub-white);
    border-radius: 30px;
    position: relative;
}
.bh-btn.login-btn-header {
    padding: 0;
    min-width: inherit;
}
.login-btn-header span svg, .login-btn-header span svg path {
    height: 18px;
    fill: var(--bloghub-white);
}
.login-btn-header .login-icon {
    width: 50px;
    text-align: center;
    border-right: 1px solid rgb(255 255 255 / 30%);
    height: 45px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.login-btn-header .login-text {
    padding: 0 15px 0 10px;
    display: inline-flex;
    align-items: center;
    height: 45px;
    color: var(--bloghub-white);
    font-weight: 500;
}
.bh-header-wrapper.bh-header-style2.bh-header-style4 .bh-top-header-row .bh-today-date {
    margin: 3px 0;
}
body .bh-header-wrapper.bh-header-style2.bh-header-style4 .bh-main-nav-wrapper .menu>li>a {
    font-weight: 600;
}
.bh-header-wrapper.bh-header-style2.bh-header-style4 .bh-top-header-wrapper .bh-notice-inner>span {
    max-width: 350px;
    white-space: nowrap;
    overflow: hidden;
}
.bh-header-wrapper.bh-header-style2.bh-header-style4 .bh-notice-btn {
    padding: 6px 20px 2px 30px;
}
.trending-post-wrapper .wpb_wrapper .bh-dentist-style-wrapper:first-of-type .bh-thumb-style-three-wrapper .bh-blog-thumb-inner .bh-blog-image img {
    min-height: 423px;
    max-height: 423px;
}
.bloghub-dentist-horizontal-wrapper .bh-blog-category {
    display: inline-block;
    width: auto;
    background: var(--bloghub-primary-color);
    color: var(--bloghub-white) !important;
    padding: 6px 10px 3px;
    border-radius: 40px;
}
/* HEADER STYLES Five Start */
.bh-text-slider-row {
    position: relative;
}
.bh-notice-wrapper .bh-text-slider-arrow {
}
.bh-text-slider {
}
.bh-notice-wrapper .bh-text-slider-arrow>*:after {
    display: none;
}
body .bh-header-wrapper.bh-header-style2.bh-header-style5 .bh-main-nav-wrapper .menu>li>a {
    font-weight: 600;
}
.bh-header-wrapper.bh-header-style2.bh-header-style5 .bh-top-header-row>.bh-date-controls>ul>li {
    position: relative;
    padding: 0 25px 0 0;
    margin: 3px 25px 3px 0;
}
.bh-header-wrapper.bh-header-style2.bh-header-style5 .bh-top-header-row>.bh-date-controls>ul>li:last-child {
    padding: 0;
    margin: 0;
}
.bh-header-wrapper.bh-header-style2.bh-header-style5 .bh-top-header-row>.bh-date-controls>ul>li:after {
    content: "";
    height: 25px;
    width: 1px;
    background: rgb(0 0 0 / 20%);
    right: 0;
    position: absolute;
}
.bh-header-wrapper.bh-header-style2.bh-header-style5 .bh-top-header-row>.bh-date-controls>ul>li:last-child:after {
    content: unset;
}
.bh-header-wrapper.bh-header-style2.bh-header-style5 .bh-top-header-row>.bh-date-controls>ul>li>span>svg {
    height: 18px;
    margin-right: 6px;
}
.bh-header-wrapper.bh-header-style2.bh-header-style5 .bh-top-header-row>.bh-date-controls>ul>li.bh-temperature-info svg {
    height: 20px;
}
.bh-header-wrapper.bh-header-style2.bh-header-style5 .bh-top-header-row>.bh-date-controls>ul .bh-today-date, .bh-header-wrapper.bh-header-style2.bh-header-style5 .bh-top-header-row>.bh-date-controls>ul li {
    color: var(--bloghub-font-color);
    font-weight: 500;
}
.bh-header-wrapper.bh-header-style2.bh-header-style5 .bh-top-header-wrapper {
    background: #f8f8f8;
}
.bh-header-wrapper.bh-header-style2.bh-header-style5 .bh-text-slider-row {
    max-width: 410px;
    width: 100%;
}
.bh-text-slider-row .bh-text-slider {
    padding-right: 50px;
    overflow: hidden;
    position: relative;
}
.bh-notice-wrapper .bh-text-slider-arrow {
    position: absolute;
    width: 40px;
    height: 30px;
    top: 7px;
    right: 0;
}
.bh-notice-wrapper .bh-text-slider-arrow>div {
    position: unset;
    width: 20px;
    height: 10px;
    margin: 0;
}
.bh-notice-wrapper .bh-text-slider-arrow>div svg {
    fill: #707070;
    height: 6px;
}
.bh-notice-wrapper .bh-text-slider-arrow>div:hover svg {
    fill: var(--bloghub-primary-color);
}
.bh-notice-wrapper .bh-text-slider-arrow>div:hover svg, .bh-notice-wrapper .bh-text-slider-arrow>div svg, .bh-notice-wrapper .bh-text-slider-arrow>div, .bh-notice-wrapper .bh-text-slider-arrow>div:hover {
    -webkit-transition: var(--bloghub-transition);
    -moz-transition: var(--bloghub-transition);
    -ms-transition: var(--bloghub-transition);
    -o-transition: var(--bloghub-transition);
    transition: var(--bloghub-transition);
}
.bh-header-wrapper.bh-header-style2.bh-header-style5 .bh-notice-btn {
    border-radius: 0;
    margin-bottom: 0;
    min-height: 50px;
    text-transform: capitalize;
    padding: 14px 20px;
    font-weight: 500;
}
.bh-header-wrapper.bh-header-style2.bh-header-style5 .bh-notice-btn:before {
    display: none;
}
.bh-header-wrapper.bh-header-style2.bh-header-style5 .bh-top-header-wrapper {
    padding: 0;
}
.bh-notice-wrapper .bh-text-slider-arrow>div.swiper-button-prev {
    margin: 0 0 4px;
}
.text-slider-text {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    padding-right: 10px;
    font-size: 12px;
    font-weight: 500;
    height: 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.bh-header-wrapper.bh-header-style2.bh-header-style5 .bh-top-header-wrapper .bh-top-header-row {
    align-items: center;
}
.bh-header-wrapper.bh-header-style2.bh-header-style5 .bh-top-header-row>* ul {
    margin: 0;
}

/* Header Style Six */

.bh-header-wrapper.bh-header-style6 .bh-date-controls ul {
   justify-content: flex-start;
}
.bh-header-wrapper.bh-header-style6 .bh-header-social {
   text-align: right;
}
.bh-header-style6 .bh-user-login {
   position: absolute;
   right: 30px;
   top: 11px;
}
.bh-header-style6 .bh-user-login .bh-comman-icon {
   height: auto;
   width: auto;
   border: 0;
   line-height: inherit;
}
.bh-header-style6 .bh-user-login .bh-comman-icon svg {
   height: 18px;
}
.bh-header-style6 .bh-header-searh-wrap {
   right: 40px;
}
.bh-header-style6 .bh-top-header-wrapper {
   border-bottom: 1px solid var(--bloghub-border-color);
}
.bh-header-wrapper.bh-header-style6 {
   border-bottom: 1px solid var(--bloghub-border-color);
}
.bh-header-wrapper.bh-header-style6 .bh-date-controls ul li.bh-today-date .bh-comman-icon svg {
    fill: var(--bloghub-primary-color);
}
.bh-header-wrapper.bh-header-style6 .bh-today-date {
   margin: 0;
}
.bh-header-wrapper.bh-header-style6 .bh-date-controls ul li.bh-today-date .bh-comman-icon {
   line-height: 31px;
}
.bh-header-wrapper.bh-header-style6 .bh-header-social ul li {
   margin: 3px 0 3px 8px;
}
body .bh-header-wrapper.bh-header-style6 .bh-main-nav-wrapper .menu>li>a:before {
   display: none;
}
.bh-header-wrapper.bh-header-style6 .bh-search-icon svg {
   fill: var(--bloghub-title-color);
}
/* Breadcrumb CSS Start */
.bh-breadcrumb-wrapper {
    background: var(--bloghub-page-title-bg);
    padding: 47px 0 33px;
    position: relative;
    background-size: cover !important;
    background-position: center bottom !important;
    color: var(--bloghub-font-color);
}
.bh-breadcrumb-wrapper.breadcrumb-overlay:before {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: rgb(0 0 0 / 60%);
    content: "";
}
.bh-breadcrumb-wrapper.breadcrumb-overlay {
    padding: 47px 0 50px;
}
.bh-breadcrumb-wrapper.breadcrumb-overlay h1 {
    color: var(--bloghub-white);
    position: relative;
}
.bh-breadcrumb-wrapper.breadcrumb-overlay ul {
    background: rgb(0 0 0 / 60%);
}
.bh-breadcrumb-wrapper.breadcrumb-overlay ul li {
    color: var(--bloghub-white);
}
.bh-breadcrumb-container h1 {
    color: var(--bloghub-title-color);
    font-size: var(--bloghub-page-title-size);
    font-weight: 700;
    margin-bottom: 7px;
    word-break: break-word;
}
.bh-breadcrumb-container ul {
    list-style: none;
    margin: 0;
    display: inline-block;
    padding: 7px 30px;
    position: relative;
    font-size: var(--bloghub-font18);
    background: var(--bloghub-offf-white);
    border-radius: 100px;
}
.bh-breadcrumb-container ul li {
    color: var(--bloghub-title-color);
    display: inline-block;
    margin: 0;
    padding: 0;
    font-weight: 500;
    position: relative;
    word-break: break-word;
    text-transform: capitalize;
}
.bh-breadcrumb-container ul li:before {
    margin: 0 8px;
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    height: 14px;
    content: '\f054';
    font-size: 12px;
    color: inherit;
    font-family: "Font Awesome 5 Free";
    line-height: normal;
    font-weight: 900;
}
.bh-breadcrumb-container ul li:first-child:before {
    content: unset;
}
.bh-breadcrumb-container ul li a, .bh-breadcrumb-container ul li a:hover, .bh-breadcrumb-container ul li a:focus {
    color: var(--bloghub-primary-color);
}
/* Default Footer CSS Start */
.bh-footer-wrapper {
    background: var(--bloghub-footer-bg);
    border-top: 1px solid var(--bloghub-border-color);
    position: relative;
    padding: 76px 0 8px;
}
body .default-copyright-area {
    background: var(--bloghub-main-bg);
    padding: 14px 0 14px;
    margin: 35px 0 0;
}
.bh-footer-widget .menu li a span svg {
    fill: var(--bloghub-white);
}
.bloghub-demo .default-footer {
    border: 0;
    padding: 77px 0 0;
}
.bh-footer-widget .widget-title {
    margin-top: 20px;
}
.bh-share-box p {
    font-weight: 500;
}
.bh-share-box {
    margin: 21px 0 0;
}
.bh-footer-widget .menu li {
    margin: 0 0 15px;
}
.bh-footer-widget .menu li:hover, .bh-footer-widget .menu li {
    -webkit-transition: var(--bloghub-transition);
    -moz-transition: var(--bloghub-transition);
    -ms-transition: var(--bloghub-transition);
    -o-transition: var(--bloghub-transition);
    transition: var(--bloghub-transition);
}
.bh-footer-widget .menu li:hover {
    -webkit-transform: translateX(6px);
    -moz-transform: translateX(6px);
    -ms-transform: translateX(6px);
    -o-transform: translateX(6px);
    transform: translateX(6px);
}
/* Demo Footer CSS Start */
.bh-widgets-contact {
    margin: 0 0 30px;
    padding: 0 15px 0;
}
.bh-widgets-contact h4 {
    font-size: var(--bloghub-sub-title-size);
    font-weight: 600;
    margin: 20px 0 17px;
}
.bh-widgets-contact span svg {
    fill: var(--bloghub-title-color);
    height: 50px;
}
.bh-footer-widgets {
    overflow: hidden;
}
.bh-footer-widgets h4 {
    font-size: var(--bloghub-sub-title-size);
    font-weight: 600;
    margin: 6px 0 25px;
    position: relative;
    padding-bottom: 16px;
}
.bh-footer-widgets h4:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    background: var(--bloghub-primary-color);
    width: 80px;
}
.bh-footer-widgets .bh-nav-menus li {
    position: relative;
    display: inline-block;
    margin: 0 0 8px;
    width: 100%;
    padding: 0 0 0 30px;
}
.bh-footer-widgets .bh-nav-menus li:before {
    content: "";
    position: absolute;
    left: 0;
    margin: auto;
    top: 0;
    bottom: 0;
    height: 2px;
    background: var(--bloghub-font-color);
    width: 10px;
}
.bh-footer-widgets .bh-nav-menus li a {
    display: inline-block;
    color: var(--bloghub-font-color);
}
.bh-footer-text p {
    margin: 0 0 10px;
}
.bh-footer-logo img {
    margin: 0 0 22px;
    max-height: 60px;
}
.bh-footer-widgets .bh-nav-menus li:hover a {
    color: var(--bloghub-primary-color);
}
.bh-nav-menus ul {
    padding: 0;
    list-style: none;
}
.bh-footer-widgets .bh-nav-menus li.menu-item-has-children:before {
    margin: 12px 0 0;
}
.bh-footer-widgets .bh-nav-menus li:last-child {
    margin-bottom: 0;
}
.bh-copyright-wrapper p a:hover {
    color: var(--bloghub-primary-color);
}
.bh-footer-info-text a:hover {
    color: var(--bloghub-primary-color);
}
.bh-widgets-contact:hover span svg {
    fill: var(--bloghub-primary-color);
}
.bh-widgets-contact:hover span svg, .bh-widgets-contact span svg {
    -webkit-transition: var(--bloghub-transition);
    -moz-transition: var(--bloghub-transition);
    -ms-transition: var(--bloghub-transition);
    -o-transition: var(--bloghub-transition);
    transition: var(--bloghub-transition);
}
/* Dark Footer CSS Start */
.bh-dark-footer {
    background: var(--bloghub-footer-bg);
    color: #e5f0f5;
}
.bh-dark-footer h1, .bh-dark-footer h2, .bh-dark-footer h3, .bh-dark-footer h4, .bh-dark-footer h5, .bh-dark-footer h6 {
    color: var(--bloghub-white);
}
.bh-dark-footer .widget.widget_text .textwidget strong, .bh-dark-footer .widget.widget_rss ul li cite {
    color: #e5f0f5;
}
.bh-dark-footer .widget-list-count, .woocommerce .bh-dark-footer .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item span.count {
    color: var(--bloghub-white);
}
.bh-dark-footer .widget-title, .bh-dark-footer .widget_rss .rsswidget, .bh-dark-footer caption {
    color: var(--bloghub-white);
}
.bh-dark-footer a, .bh-dark-footer .widget.widget_rss ul li a {
    color: var(--bloghub-white);
}
.bh-dark-footer a:hover, .bh-dark-footer .widget.widget_rss ul li a:hover {
    color: var(--bloghub-primary-color);
}
.bh-dark-footer .wp-block-categories li, .bh-dark-footer .wp-block-archives li, .bh-dark-footer .widget_nav_menu ul li, .bh-dark-footer .widget_pages ul li, .bh-dark-footer .widget_archive ul li, .bh-dark-footer .widget_categories ul li {
    border-bottom: 1px solid #2e3338;
}
.bh-dark-footer .widget.widget_tag_cloud .tagcloud a, .bh-dark-footer .wp-block-tag-cloud .tag-cloud-link, .bh-dark-footer .woocommerce.widget_product_tag_cloud .tagcloud .tag-cloud-link {
    background-color: #2e3338;
}
.bh-dark-footer .widget.widget_tag_cloud .tagcloud a:hover, .bh-dark-footer .wp-block-tag-cloud .tag-cloud-link:hover, .bh-dark-footer .woocommerce.widget_product_tag_cloud .tagcloud .tag-cloud-link:hover {
    background-color: var(--bloghub-primary-color);
    color: var(--bloghub-white);
}
.bh-dark-footer .nice-select {
    color: var(--bloghub-white);
    border: 1px solid #2e3338;
    background: #2e3338;
}
.bh-dark-footer .nice-select .list {
    background: #2d3236;
}
.bh-dark-footer table th, .bh-dark-footer table td, .bh-dark-footer .wp-block-calendar tbody td, .bh-dark-footer .wp-block-calendar th {
    border-color: #2d3236;
}
body .bh-dark-footer .nice-select .list li.selected, body .bh-dark-footer .nice-select .list li.selected:focus, body .bh-dark-footer .nice-select .list li.selected:hover, body .bh-dark-footer .nice-select .list li.option:focus, body .bh-dark-footer .nice-select .list li.option:hover {
    background: #161111 !important;
}
.bh-dark-footer .search-form label input.search-field {
    color: #ffffff;
    border: 1px solid #2e3338;
    background: #2e3338;
}
/* Custom widget */
.bh-dark-footer .bh-recent-post-widgets.widget a p {
    color: var(--bloghub-white);
}
/****** CENTERED FOOTER TOP****/
.bh-footer-infomation {
    max-width: 630px;
    text-align: center;
    margin: auto;
}
.bh-footer-infomation .bh-foot-logo-wrap {
    margin: 0 0 25px;
}
.bh-footer-infomation .bh-foot-info {
    margin: 0 0 31px;
}
.bh-footer-infomation .bh-foot-info p {
    margin: 0;
    max-width: 520px;
    margin: auto;
}
.bh-footer-newsletter-inner {
    position: relative;
    max-width: 320px;
    margin: 0 auto 0;
}
.bh-footer-newsletter-inner input {
    border: 0;
    border-radius: 50px !important;
    position: relative;
    padding: 0 80px 0 20px !important;
}
.bh-footer-newsletter-inner .bh-btn {
    position: absolute;
    top: 0;
    right: -1px;
    bottom: 0;
    padding: 0;
    min-width: 60px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.bh-footer-about-wrap.bh_newslatter_stylesecond .bh-footer-newsletter .bh-footer-newsletter-inner .bh-btn:hover {
    background: var(--bloghub-primary-color);
    border-color: var(--bloghub-primary-color);
    box-shadow: unset;
}
.bh-footer-newsletter-inner .bh-btn svg {
    fill: var(--bloghub-white);
    height: 20px;
}
.bh-social-footer-center .bh-share-box .bh-socibh-icons {
    width: 100%;
    justify-content: center;
}
.bh-social-footer-center .bh-socibh-icons li a svg {
    height: 15px;
    fill: var(--bloghub-white);
}
.bh-footer-about-wrap.bh_newslatter_stylesecond {
    margin: 0 0 46px;
    padding: 0;
    border: 0;
}
.bh-footer-about-wrap.bh_newslatter_stylesecond .bh-footer-newsletter .bh-footer-newsletter-inner {
    margin-bottom: 30px;
}
.bh-footer-about-wrap {
    border-bottom: 1px solid rgb(255 255 255 / 10%);
    padding: 0 0 9px;
    margin: 0 0 43px;
}
.bh-footer-newsletter-widget .bh-footer-newsletter .bh-footer-newsletter-inner {
    width: 100%;
    max-width: 100%;
}
.bh-footer-newsletter-widget .bh-footer-newsletter .bh-btn {
    width: 80px;
}
.bh-footer-about-wrap.bh_newslatter_stylesecond .bh-footer-newsletter .bh-footer-newsletter-inner .bh-btn {
    min-width: 70px;
}
/****** CENTERED FOOTER TOP ********/
/*** WIDGET FOOTER NEWSLETTER ******/
.bh-social-footer-widget .bh-socibh-icons li {
    padding: 0;
    margin: 0 2px 5px 0;
}
.bh-footer-newsletter-widget .bh-footer-newsletter .bh-footer-newsletter-inner input {
    background: var(--footer-input-bg);
}
.bh-social-footer-widget .bh-socibh-icons li::before {
    display: none;
}
.bh-social-footer-widget .bh-socibh-icons li a {
    background: #171717;
    background: var(--footer-input-bg);
    color: var(--bloghub-white);
}
.bh-social-footer-widget .bh-socibh-icons li a:hover {
    background: var(--bloghub-primary-color);
    border-color: transparent;
}
.bh-social-footer-widget .bh-socibh-icons li a svg {
    fill: var(--bloghub-white);
}
/* Newsletter CSS */
.bh-newsletter-wrap {
    display: flex;
}
.bh-newsletter-wrap input {
    background: var(--bloghub-main-bg);
    border: none;
    padding: 0 20px;
    width: calc(100% - 50px);
    border-radius: var(--bloghub-radius0);
}
.bh-newsletter-wrap input {
    background: var(--bloghub-main-bg);
    color: var(--bloghub-font-color);
}
.bh-newsletter-wrap button {
    width: 50px;
    padding: 0;
    border: none;
    height: 50px;
    border-radius: var(--bloghub-radius0);
    background: var(--bloghub-primary-color);
    cursor: pointer;
}
.bh-newsletter-wrap button svg {
    fill: var(--bloghub-main-bg);
    height: 20px;
    width: 20px;
}
.bh-footer-newsletter p {
    margin: 0 0 14px;
}
.bh-newsletter-wrap input::-webkit-input-placeholder {
    color: var(--bloghub-placeholder);
}
.bh-newsletter-wrap input::-moz-placeholder {
    color: var(--bloghub-placeholder);
}
.bh-newsletter-wrap input:-ms-input-placeholder {
    color: var(--bloghub-placeholder);
}
.bh-newsletter-wrap input:-moz-placeholder {
    color: var(--bloghub-placeholder);
}
.bh-newsletter-wrapper {
    padding: 0 0 0;
    margin: 0px 0 60px;
    border-bottom: 0;
}
.bh-newsletter-wrapper .bh-heading:after {
    width: 150px;
}
.bh-newsletter-wrapper .bh-newsletter-title {
    max-width: 410px;
}
.bh-newsletter-title h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--bloghub-primary-color);
}
.bh-newsletter-title h4 {
    font-size: 32px;
    font-weight: 600;
    max-width: 370px;
}
.bh-newsletter-box {
    position: relative;
    width: 100%;
}
.bh-newsletter-box input, .bh-newsletter-box input:focus {
    width: 100%;
    background: #242534;
    border-color: #242534;
    background: var(--footer-input-bg);
    border-color: var(--footer-input-bg);
    border-radius: 60px;
    min-height: 70px;
    padding-right: 200px;
    color: var(--bloghub-white);
}
.bh-newsletter-box .bh-btn {
    position: absolute;
    right: 10px;
    top: 0;
    bottom: 0;
    margin: auto;
    height: fit-content;
    text-transform: capitalize;
    font-weight: 600;
}
.bh-newsletter-wrapper .row {
    justify-content: space-between;
}
/* Socials CSS */
.bh-footer-social {
    margin: 26px 0 30px;
}
.bh-footer-social h5 {
    font-size: var(--bloghub-font-size);
    font-weight: 600;
    margin: 0 0 11px;
}
.bh-socibh-icons {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    list-style: none;
}
.bh-socibh-icons a {
    display: inline-block;
    height: 40px;
    width: 40px;
    line-height: 40px;
    border: none;
    border-radius: var(--bloghub-circle-radius);
    background: rgb(255 255 255 / 0.10);
    text-align: center;
    margin: 0 10px 3px 0;
    color: var(--bloghub-main-bg);
}
.bh-socibh-icons a:hover {
    background: var(--bloghub-primary-color);
    color: var(--bloghub-main-bg);
    border-color: transparent;
}
.bh-footer-widgets {
    margin: 0 0 30px;
}
/* Copyright CSS */
.bh-copyright-wrapper {
    padding: 16px 0 12px;
    position: relative;
    margin-top: 40px;
    color: var(--bloghub-font-color);
    background: var(--bloghub-copyright-bg);
}
.bh-copyright-wrapper p {
    margin: 0;
}
.bh-copyright-wrapper p a {
    color: var(--bloghub-primary-color);
    font-weight: 500;
}
.bh-copyright-wrapper p a:hover {
    color: var(--bloghub-primary-color);
}
/****** 3. Unittesting CSS Start ********/
.widget.widget_search.widget_block .wp-block-search__label {
    font-size: var(--bloghub-widgets-title-size);
    font-weight: 600;
    color: var(--bloghub-title-color);
    margin: 0px 0 25px;
    position: relative;
    padding: 0 0 12px;
    text-transform: capitalize;
    font-family: var( --bloghub-title-family);
    line-height: 1.2;
}
.widget.widget_search.widget_block .wp-block-search__label:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    background: var(--bloghub-primary-color);
    width: 80px;
}
.wp-block-search__button-outside.wp-block-search__text-button.wp-block-search .wp-block-search__button.bh-btn {
    padding: 0 16px;
    min-width: 100px;
    text-align: center;
}
.wp-block-file .wp-block-file__button, .wp-block-file .wp-block-file__button:hover, .wp-block-file .wp-block-file__button:focus, .wp-block-file .wp-block-file__button:visited {
    background: var(--bloghub-primary-color);
    opacity: 1;
    color: var(--bloghub-white);
}
.search .bh-column-pagination {
    margin: 43px 0 0;
}
body.search .bh-blog-columns article {
    background: var(--bloghub-main-bg);
    border-radius: var(--bloghub-radius0);
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 45px;
    padding: 0px 0 44px;
    border-bottom: 1px solid var(--bloghub-border-color);
}
body.search .bh-blog-columns article>* {
    width: 100%;
}
.bh-main-post-wrapper article.post.sticky ul {
    margin: 0;
}
.wp-block-group.has-background {
    color: #787878;
    padding: 13px 20px 3px;
}
.wp-block-calendar table caption, .wp-block-calendar table tbody {
    color: var(--bloghub-font-color);
}
.wp-block-calendar tbody td, .wp-block-calendar th {
    border-color: var(--bloghub-border-color);
}
/** Post Inner **/
.bh-main-post-wrapper {
    padding: 80px 0 30px;
}
.sticky-post {
    margin: 0 10px 0 0;
    color: var(--bloghub-primary-color);
}
.entry-title {
    font-size: var(--bloghub-sub-title-size);
    font-weight: 600;
    color: var(--bloghub-title-color);
    margin: 0 0 18px;
    word-break: break-word;
}
.entry-title a {
    color: var(--bloghub-title-color);
}
.entry-title a:hover, .entry-title:hover a {
    color: var(--bloghub-primary-color);
}
.entry-title:hover, .entry-title {
    -webkit-transition: var(--bloghub-transition);
    -moz-transition: var(--bloghub-transition);
    -ms-transition: var(--bloghub-transition);
    -o-transition: var(--bloghub-transition);
    transition: var(--bloghub-transition);
}
.bh-text-icon {
    color: var(--bloghub-primary-color);
    display: inline-block;
    margin: 0 3px 0 0;
    vertical-align: text-bottom;
}
.bh-text-icon svg {
    fill: var(--bloghub-primary-color);
    height: 15px;
}
dl, ol, ul {
    margin: 0 0 0;
}
ol, ul {
    padding: 0 0 0 30px;
}
.widget ul, .widget ol {
    list-style: none;
    padding: 0;
}
.single .bh-blog-head {
    margin-bottom: 23px;
}
.bh-main-post-wrapper article.post {
   background: var(--bloghub-main-bg);
   display: flex;
   flex-wrap: wrap;
   margin: 0 0 49px;
   padding: 0 0 50px;
   border-bottom: 1px solid var(--bloghub-border-color);
}
.bh-main-post-wrapper article.post.sticky {
    border: 1px solid var(--bloghub-border-color);
    padding: 30px 20px 21px;
    border-radius: 6px;
    margin: 0 0 50px;
}
.bh-main-post-wrapper article.post:last-child {
    margin-bottom: 0;
    border: 0;
    padding: 0;
}
.bh-main-post-wrapper article.post:last-of-type {
    border: 0;
    padding: 0;
}
.wp-block-pullquote:not(.is-style-solid-color) blockquote.has-text-color.has-light-gray-color p, .wp-block-pullquote:not(.is-style-solid-color) blockquote.has-text-color.has-light-gray-color cite {
   color: var(--bloghub-white);
}
.edit-btn-read-more-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 20px 0 0;
    width: 100%;
}
.edit-btn-read-more-wrap>* {
    margin-right: 20px;
}
.edit-btn-read-more-wrap .entry-footer {
    margin: 0;
}
.edit-btn-read-more-wrap>* :last-of-type {
    margin-right: 0;
}
.edit-btn-read-more-wrap a {
    color: var(--bloghub-primary-color);
    text-transform: uppercase;
    font-weight: 600;
    position: relative;
}
.bh-read-more-link:before {
   position: absolute;
   top: 0;
   left: 0;
   overflow: hidden;
   max-width: 0;
   color: var(--bloghub-title-color);
   content: attr(data-hover);
   -webkit-transition: max-height 0.5s;
   -moz-transition: max-height 0.5s;
   transition: max-height 0.5s;
   white-space: nowrap;
}
.edit-btn-read-more-wrap a.bh-read-more-link:hover:before {
   max-width: 100%;
}

.edit-btn-read-more-wrap .bh-read-more-link:after {
   content: "";
   background: var(--bloghub-primary-color);
   height: 1px;
   position: absolute;
   bottom: 0;
   left: 0;
   right: 0;
   width: 100%;
}
.edit-btn-read-more-wrap .bh-read-more-link:hover:after {
   width: 100%;
   background: var(--bloghub-title-color);
}
.bh-read-more-link:before, .bh-read-more-link:hover:before, .edit-btn-read-more-wrap .bh-read-more-link:hover:after, .edit-btn-read-more-wrap .bh-read-more-link:after {
   -webkit-transition: var(--bloghub-transition);
   -moz-transition: var(--bloghub-transition);
   -ms-transition: var(--bloghub-transition);
   -o-transition: var(--bloghub-transition);
   transition: var(--bloghub-transition);
}
.edit-btn-read-more-wrap a:hover {
   color: var(--bloghub-title-color);
}
.edit-btn-read-more-wrap .edit-link a, .edit-link a {
    color: var(--bloghub-primary-color);
    text-transform: uppercase;
    font-weight: 600;
    font-size: var(--bloghub-font-size);
    letter-spacing: .6px;
    position: relative;
}
.edit-btn-read-more-wrap .edit-link a:after, .edit-link a:after {
    content: "\f044";
    font-family: "Font Awesome 5 Free";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    font-weight: 900;
    line-height: 1;
    margin-left: 3px;
    font-size: var(--bloghub-font14);
    vertical-align: baseline;
}
.wp-block-button.is-style-squared .wp-block-button__link, .wp-block-button.is-style-squared .wp-block-button__link:before {
    border-radius: 0;
}
.wp-block-button.is-style-outline .wp-block-button__link, .wp-block-button.is-style-outline .wp-block-button__link:hover {
    color: var(--bloghub-primary-color);
    border: 2px solid;
    background: transparent;
}
.wp-block-button__link.bh-btn:hover, .wp-block-button__link.bh-btn:focus {
    transition: box-shadow 0.5s;
    -webkit-box-shadow: inset 19em 0 0 0 var(--bloghub-hover-btn-bg);
    -moz-box-shadow: inset 19em 0 0 0 var(--bloghub-hover-btn-bg);
    box-shadow: inset 19em 0 0 0 var(--bloghub-hover-btn-bg);
}
.wp-block-button.is-style-outline .wp-block-button__link:hover, .wp-block-button.is-style-outline .wp-block-button__link:focus, .wp-block-button.is-style-outline .wp-block-button__link {
    box-shadow: none;
    background: transparent !important;
    border: 1px solid var(--bloghub-primary-color) !important;
    color: var(--bloghub-primary-color) !important;
}
blockquote {
    background-color: var(--bloghub-blockquote-bg);
    background-color: var(--bloghub-primary-color);
    padding: 31px 40px 34px;
    position: relative;
    overflow: hidden;
    z-index: 0;
    margin: 40px 0 45px;
    color: var(--bloghub-white);
    border-radius: 10px;
}
blockquote:before {
    content: "\f10d";
    font-size: 30px;
    color: var(--bloghub-white);
    padding-bottom: 12px;
    display: inline-block;
    font-family: 'font awesome 5 free';
    font-weight: 900;
}
blockquote:after {
    content: "\f10d";
    font-family: 'font awesome 5 free';
    font-weight: 900;
    position: absolute;
    right: 30px;
    bottom: -40px;
    color: var(--bloghub-white);
    font-size: 100px;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    z-index: -1;
    opacity: .1;
}
blockquote p {
    font-size: var(--bloghub-font-size);
    font-weight: 500;
    margin-bottom: 0;
}
blockquote.wp-block-quote.has-text-align-right:after {
    right: unset;
    left: 30px;
}
blockquote strong, blockquote a {
    color: var(--bloghub-white);
}
blockquote.has-very-dark-gray-color, blockquote.has-very-dark-gray-color p, blockquote.has-very-dark-gray-color cite {
    color: var(--bloghub-white);
}
.wp-block-quote.is-style-large {
    padding: 26px 40px 32px;
}
.has-text-color.has-light-gray-color {
    padding: 27px 40px 34px;
}
.wp-block-pullquote:not(.is-style-solid-color) blockquote {
    padding: 27px 40px 33px;
    margin-top: 30px;
    margin-bottom: 0;
}
.wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
    background-color: var(--bloghub-secondary-bg);
    color: var(--bloghub-title-color);
}
.wp-block-table.is-style-stripes tbody tr:nth-child(odd) td {
    color: var(--bloghub-title-color);
}
.bh-blog-head {
    margin: 0 0 8px;
    display: inline-block;
    width: 100%;
}
.bh-blog-head .entry-title a {
    font-weight: 700;
    font-size: var(--bloghub-sub-title-size);
}
.entry-content {
    margin: 0;
}
p {
    margin-bottom: 1rem;
}
article p>mark, article p>ins {
    background: #fff9c0;
    color: #222222;
}
.wp-block-audio audio {
    min-width: 200px;
}
.wp-block-embed {
    word-break: break-word;
}
.wp-block-embed iframe {
    max-width: 100%;
    width: 100%;
}
.wp-block-cover-image.has-background-dim, .wp-block-cover.has-background-dim {
    color: var(--bloghub-white);
}
.wp-block-button, .wp-block-cover, .wp-block-cover-image {
    margin-bottom: 16px;
}
.widget ul.menu ul.sub-menu {
    margin: 6px 0 0 0;
}
.wp-block-archives-dropdown select {
    margin: 0 0 30px;
}
/** Lists **/
ul ul {
    list-style: circle;
}
ul ul ul {
    list-style: square;
}
ol ol {
    list-style: lower-alpha;
}
ol ol ol {
    list-style: lower-roman;
}
ol li, ul li {
    margin-bottom: 10px;
}
ol li:last-child, ul li:last-child {
    margin-bottom: 0;
}
ol li ol, ul li ul, ol li ul, ul li ol {
    margin: 10px 0 0;
}
select {
    color: var(--bloghub-font-color);
    border: 1px solid var(--bloghub-border-color);
    width: 100%;
    padding: 0 20px;
    height: 50px;
    line-height: 50px;
    border-radius: var(--bloghub-radius0);
    background: var(--bloghub-input-bg);
}
table {
    width: 100%;
    margin: 0 0 30px;
}
.calendar_wrap {
    margin: 30px 0 0px;
}
.wp-calendar-table {
    margin: 0;
}
table th {
    font-weight: 700;
    color: var(--bloghub-title-color);
}
table th, table td, .wp-block-calendar tbody td, .wp-block-calendar th {
    border: 1px solid var(--bloghub-border-color);
    padding: 10px 10px;
    text-align: center;
}
.wp-calendar-table tbody td#today {
    background: var(--bloghub-primary-color);
    margin: auto;
    color: var(--bloghub-white);
}
form.post-password-form input[type="submit"] {
    border-radius: var(--bloghub-radius0);
}
/** Widget **/
.wp-block-image img {
    border-radius: var(--bloghub-radius0);
}
.widget.widget_rss ul li {
    margin-bottom: 28px;
}
.widget.widget_rss ul li:last-child {
    margin-bottom: 0;
}
.widget_rss .rsswidget {
    color: var(--bloghub-title-color);
}
.widget.widget_rss ul li a {
    width: 100%;
    display: inline-block;
    color: var(--bloghub-title-color);
    font-weight: 500;
}
.widget.widget_rss ul li span.rss-date {
    position: relative;
    display: inline-block;
    width: 100%;
    font-size: var(--bloghub-font-size);
    font-weight: 500;
    padding-left: 20px;
    color: var(--bloghub-primary-color);
    margin: 6px 0 9px;
}
.widget.widget_rss ul li span.rss-date:before {
    content: "\f073";
    font-weight: 400;
    font-family: "Font Awesome 5 Free";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}
.widget.widget_rss ul li cite {
    display: inline-block;
    width: 100%;
    margin-top: 6px;
    font-weight: 500;
    color: var(--bloghub-title-color);
}
.bh-single-data>p:last-child {
    margin-bottom: 0;
}
.widget .post-date {
    position: relative;
    display: inline-block;
    width: 100%;
    font-size: var(--bloghub-font-size);
    font-weight: 500;
    padding-left: 20px;
    color: var(--bloghub-primary-color);
    margin: 6px 0 9px;
}
.widget .post-date:before {
    content: "\f073";
    font-weight: 400;
    font-family: "Font Awesome 5 Free";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}
/* Recent News Custom Widget */
.bh-recent-post-widgets h2 {
    margin-bottom: 30px;
}
.bh-recent-post-widgets ul li>img {
    height: 60px;
    width: 60px;
    object-fit: cover;
    margin: 0 20px 10px 0;
    border-radius: 6px;
}
.bh-recent-post-widgets ul li {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.bh-recent-post-widgets ul li>a {
    width: calc(100% - 80px);
    margin-bottom: 10px;
}
.bh-widget-post-date {
    color: var(--bloghub-primary-color);
}
.bh-widget-post-title {
    font-weight: 600;
    color: var(--bloghub-title-color);
}
.bh-widget-post-title:hover {
    color: var(--bloghub-primary-color);
}
.bh-widget-post-title:hover, .bh-widget-post-title {
    -webkit-transition: var(--bloghub-transition);
    -moz-transition: var(--bloghub-transition);
    -ms-transition: var(--bloghub-transition);
    -o-transition: var(--bloghub-transition);
    transition: var(--bloghub-transition);
}
.widget.widget_categories ul {
    margin: 0 0 2px;
}
.bh-widget-post-date {
    color: var(--bloghub-primary-color);
    position: relative;
    display: inline-block;
    width: 100%;
    font-size: var(--bloghub-font-size);
    font-weight: 500;
    padding-left: 20px;
    margin: 6px 0 9px;
}
.bh-widget-post-date:before {
    content: "\f073";
    font-weight: 400;
    font-family: "Font Awesome 5 Free";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}
/* Quick View Plugin */
.bh-product-info a.button.yith-wcqv-button {
    display: none !important;
}
body #yith-wcwl-popup-message {
    background: var(--bloghub-primary-color);
    top: 20px;
    left: unset;
    right: 0;
    padding: 3px 20px;
    right: 0;
    min-width: 200px;
}
body #yith-wcwl-popup-message div#yith-wcwl-message {
    color: var(--bloghub-main-bg);
}
#yith-quick-view-modal .yith-wcqv-main div#yith-quick-view-content div.product {
    display: flex;
    flex-wrap: wrap;
    padding: 10px 20px 10px;
}
#yith-quick-view-modal .yith-wcqv-head a#yith-quick-view-close {
    color: var(--bloghub-primary-color);
    opacity: 1;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    padding-top: 1px;
    font-size: 12px;
    font-weight: 600;
}
.woocommerce div.product .product_title {
    font-size: var(--bloghub-sub-title-size);
    margin-bottom: 0;
}
.woocommerce div.product .woocommerce-product-rating {
    margin-bottom: 15px;
}
/** Tag **/
.widget_tag_cloud .tagcloud {
    display: flex;
    flex-wrap: wrap;
}
.widget.widget_tag_cloud .tagcloud a, .wp-block-tag-cloud .tag-cloud-link, .woocommerce.widget_product_tag_cloud .tagcloud .tag-cloud-link {
    border-radius: var(--bloghub-radius0);
    text-transform: capitalize;
    background-color: var(--bloghub-primary-color);
    width: auto;
    display: inline-block;
    margin-bottom: 10px;
    margin-right: 6px;
    padding: 7px 15px 4px;
    font-size: 14px;
    font-weight: 500;
    line-height: 26px;
    color: var(--bloghub-white);
    border-radius: 40px;
    border: 1px solid var(--bloghub-primary-color);
}
.widget.widget_tag_cloud .tagcloud a:hover, .wp-block-tag-cloud .tag-cloud-link:hover, .woocommerce.widget_product_tag_cloud .tagcloud .tag-cloud-link :hover {
    color: var(--bloghub-white);
    background-color: var(--bloghub-primary-color);
}
.widget.widget_tag_cloud .tagcloud a, .wp-block-tag-cloud .tag-cloud-link, .woocommerce.widget_product_tag_cloud .tagcloud .tag-cloud-link, .widget.widget_tag_cloud .tagcloud a:hover, .wp-block-tag-cloud .tag-cloud-link:hover, .woocommerce.widget_product_tag_cloud .tagcloud .tag-cloud-link :hover {
    -webkit-transition: var(--bloghub-transition);
    -moz-transition: var(--bloghub-transition);
    -ms-transition: var(--bloghub-transition);
    -o-transition: var(--bloghub-transition);
    transition: var(--bloghub-transition);
}
.cat-links, .tags-links {
    width: 100%;
    display: inline-block;
    font-weight: 600;
    color: var(--bloghub-title-color);
}
.cat-links a, .tags-links a, .cat-links a:not([href]):not([class]), .tags-links a:not([href]):not([class]) {
    border-radius: 40px;
    text-transform: capitalize;
    background-color: var(--bloghub-primary-color);
    width: auto;
    display: inline-block;
    margin-bottom: 10px;
    margin-right: 10px;
    padding: 8px 15px 4px;
    font-size: 14px !important;
    font-weight: 500;
    line-height: 26px;
    color: var(--bloghub-white);
}
.cat-links a:hover, .tags-links a:hover, .cat-links a:not([href]):not([class]):hover, .tags-links a:not([href]):not([class]):hover {
    background-color: var(--bloghub-primary-color);
    color: var(--bloghub-white);
}
.bh-cat-links, .bh-tags-links {
    margin: 0 10px 0 0;
}
.widget.widget_text .textwidget strong {
    color: var(--bloghub-title-color);
}
.widget .calendar_wrap table th, .widget .calendar_wrap table td {
    padding: 10px 3px;
    font-size: var(--font14);
    text-align: center;
}
.widget_recent_comments li .comment-author-link {
    display: inline-block;
}
.widget a {
    text-transform: capitalize;
}
.widget_recent_comments li a {
    font-weight: 600;
}
.widget_recent_comments li a, .widget.widget_recent_comments ul li.recentcomments, .widget.widget_recent_comments ul li.recentcomments a {
    color: var(--bloghub-font-color);
}
.widget_recent_comments li a:hover, .widget.widget_recent_comments ul li.recentcomments a:hover {
    color: var(--bloghub-primary-color);
}
.widget_recent_comments li .url, .widget_recent_comments li .comment-author-link {
    color: var(--bloghub-font-color);
    font-weight: 600;
}
.widget.widget_recent_comments ul li.recentcomments {
    margin-bottom: 20px;
    padding-left: 40px;
    position: relative;
    min-height: 40px;
}
.widget.widget_recent_comments ul li.recentcomments:before {
    content: "";
    width: 40px;
    background-repeat: no-repeat;
    background-size: 50%;
    background-position: center;
    margin-top: 1px;
    background: url(./../images/comments.svg) !important;
    background-repeat: no-repeat !important;
    width: 40px;
    height: 22px;
    top: 2px;
    left: 0;
    position: absolute;
}
.widget.widget_text .textwidget p img {
    margin: 7px 0;
}
.widget.widget_text p strong {
    margin: 3px 0;
    display: inline-block;
    width: 100%;
}
.widget.widget_text .textwidget strong {
    color: var(--bloghub-title-color);
}
.widget_product_search {
    padding: 40px 30px 33px;
}
body .comments-area ol ol, body .comments-area ol ol ol {
    list-style: decimal;
}
.comment-list {
    padding: 0;
    list-style: none;
}
.comment-author {
    width: 80px;
    height: 80px;
}
.comment-author img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: none;
    border-radius: var(--bloghub-circle-radius);
}
.bh-comment-data {
    display: flex;
    flex-wrap: wrap;
    background: var(--bloghub-secondary-bg);
    border-radius: var(--bloghub-radius0);
    border: none;
}
.comments-area>ol.comment-list>li blockquote {
    background: var(--bloghub-secondary-bg);
    border-color: var(--bloghub-main-bg);
}
.comment-info {
    width: calc(100% - 80px);
    padding: 0 0 0 20px;
}
.comment-reply-link {
    color: var(--bloghub-primary-color);
    text-transform: uppercase;
    font-weight: 600;
    font-size: var(--bloghub-font-size);
    letter-spacing: .6px;
    position: relative;
}
.comment-reply-link i {
    margin: 0 10px 0 0;
}
h3#reply-title.comment-reply-title small a {
    color: var(--bloghub-primary-color);
    text-transform: uppercase;
    font-weight: 600;
    font-size: var(--bloghub-font-size);
    letter-spacing: .6px;
    position: relative;
}
h3#reply-title.comment-reply-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 6px;
}
h3#reply-title.comment-reply-title:before, .comments-area>ol.comment-list>li #reply-title:before {
    width: 100px;
}
.comment-respond {
    margin: 0;
    width: 100%;
}
.comment-respond .form-submit {
    margin: 0;
}
.comments-area .no-comments {
    margin: 15px 0 10px;
}
.comments-area>ol.comment-list>li {
    background: var(--bloghub-secondary-bg);
    padding: 30px 30px;
    margin: 0 0 20px;
    border: var(--bloghub-radius0);
}
.comments-title {
    margin: 0 0 27px;
    font-size: var(--bloghub-title-size);
    font-weight: 700;
    color: var(--bloghub-title-color);
}
.comments-area .comment-respond {
    margin: 50px 0 0;
    display: flex;
    flex-wrap: wrap;
}
.comments-area .comment-respond>* {
    width: 100%;
}
.bh-blog-columns>.comments-area {
    margin: 36px 0 0;
}
h3#reply-title.comment-reply-title small {
    font-size: var(--bloghub-font-size);
}
.comments-area>ul, .comments-area>ol {
    list-style: none;
}
.comments-area>ul .children, .comments-area>ol .children {
    list-style: none;
    margin: 0;
}
.comment-head {
    margin: 0 0 15px;
}
.comment-head h3 {
    font-size: var(--bloghub-widgets-title-size);
    font-weight: 600;
    margin: 0 0 6px;
    color: var(--bloghub-title-color);
}
.comment-head h3 a {
    font-weight: 600;
    color: var(--bloghub-title-color);
}
.comment-date {
    margin: 0 0 0;
}
.comment-head .comment-date a {
    color: var(--bloghub-primary-color);
    text-transform: uppercase;
    font-weight: 600;
    font-size: var(--bloghub-font-size);
    letter-spacing: .6px;
    position: relative;
}
.comments-area blockquote {
    margin: 0 0 25px;
}
.comments-area dt {
    color: var(--bloghub-title-color);
}
.comments-area>ul .children>li, .comments-area>ol .children>li {
    margin-bottom: 30px;
    border-bottom: 1px solid var(--bloghub-border-color);
    padding: 0 0 20px;
}
.comments-area>ul .children>li:last-child, .comments-area>ol .children>li:last-child {
    margin-bottom: 0px;
    border-bottom: none;
    padding: 0 0 0;
}
.comments-area>ol.comment-list>li .children li:last-child, .comments-area>ul.comment-list>li .children li:last-child {
    margin-top: 0;
    border-top: none;
    padding-top: 0;
}
.comments-area>ol.comment-list>li .children li:first-child, .comments-area>ul.comment-list>li .children li:first-child {
    margin-top: 23px;
    border-top: 1px solid var(--bloghub-border-color);
    padding-top: 30px;
}
.comments-area>ol.comment-list>li .children li p:last-of-type {
    margin-bottom: 3px;
}
.comment-respond .comment-notes {
    display: none;
}
.comment-respond .comment-form-cookies-consent {
    display: none;
}
/** Page And Post **/
p.has-text-align-center {
    width: 100%;
    display: inline-block;
    margin-top: 10px;
}
.wp-block-file .wp-block-file__button {
    background: var(--bloghub-title-color);
    color: var(--bloghub-main-bg);
}
.wp-block-calendar table th {
    font-weight: 600;
    background: transparent;
    padding: 4px 10px;
}
.wp-block-latest-posts.wp-block-latest-posts__list {
    padding: 0;
}
.wp-block-latest-posts__post-author, .wp-block-latest-posts__post-date {
    display: block;
    color: var(--bloghub-primary-color);
    font-size: var(--bloghub-font-size);
    font-weight: 500;
}
.wp-block-latest-comments__comment-author, .wp-block-latest-comments__comment-author:visited, .wp-block-latest-posts.wp-block-latest-posts__list li a, .wp-block-latest-posts.wp-block-latest-posts__list li a:visited {
    color: var(--bloghub-font-color);
}
.wp-block-latest-comments__comment-author, .wp-block-latest-comments__comment-link {
    font-weight: 600;
}
.wp-block-cover-text strong {
    color: var(--bloghub-white);
}
.bh-single-data>ol, .bh-single-data>ul {
    margin-bottom: 30px;
}
.bh-post-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.bh-post-meta>* {
    margin-right: 30px;
}
.bh-post-meta>*:last-of-type {
    margin-right: 0;
}
.bh-post-meta.bh-date-with-thumb a {
    font-weight: 500;
}
.bh-blog-authore {
    text-transform: capitalize;
}
.wp-block-archives.wp-block-archives-list a {
    color: var(--bloghub-title-color);
}
.wp-block-archives.wp-block-archives-dropdown {
    margin: 0 0 25px;
}
.bh-single-data .wp-block-calendar td, .bh-single-data .wp-block-calendar th {
    padding: 15px 10px;
}
body.search .bh-blog-columns article .bh-single-imgae-wrap, .bh-single-imgae-wrap {
    margin: 0 0 35px;
    border-radius: var(--bloghub-radius0);
    overflow: hidden;
}
.bh-post-counting {
    display: inline-block;
    margin: 0 0 0 10px;
    position: relative;
    color: var(--bloghub-font-color);
}
.bh-post-counting:before {
    content: "(";
}
.bh-post-counting:after {
    content: ")";
}
.calendar_wrap nav.wp-calendar-nav {
    display: flex;
    justify-content: space-between;
}
.wp-block-calendar nav.wp-calendar-nav {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}
.wp-block-calendar nav.wp-calendar-nav a {
    text-decoration: none;
    color: var(--bloghub-title-color);
}
.wp-block-categories.wp-block-categories-dropdown {
    margin-bottom: 25px;
}
.bh-blog-columns {
    margin-bottom: 40px;
}
.category .bh-main-post-wrapper .bh-blog-columns {
   margin-bottom: 40px;
}
body.single.single-post .bh-blog-columns {
   margin-bottom: 50px;
}
.bh-sidebar-wrapper {
    margin-bottom: 50px;
}
.widget_archive li, .widget_categories li {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.widget_archive li .children, .widget_categories li .children {
    width: 100%;
}
.bh-blog-thumb-page-wrapper .bh-blog-thumb-section {
    margin: 0 0 50px;
}
.bh-blog-single-imgae .post-thumbnail {
    margin: -25px -30px 35px;
    border-radius: var(--bloghub-radius0);
    overflow: hidden;
}
body .bh-single-data figure {
    margin-bottom: 15px;
    padding-top: 3px;
}
.bh-details-wrapper {
    width: 100%;
}
.bh-blog-inner>.comments-area {
    margin-top: 50px;
}
.comments-area>ol.comment-list>li #reply-title {
    font-size: var(--bloghub-widgets-title-size);
}
.bloghub-blogs-section .bloghub-blogs-img-inner {
    overflow: hidden;
}
/* Single Post */
.bh-blog-columns .bh-blog-details {
    display: flex;
    flex-wrap: wrap;
}
.bh-blog-columns .bh-blog-details .post-thumbnail {
    position: relative;
}
.bh-blog-columns .bh-blog-details .post-thumbnail::before {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 0px;
    opacity: 0;
    background: rgb(255, 255, 255);
    transform: scaleX(1);
    transition: all 0.5s ease 0s;
}
.bh-blog-columns .bh-blog-details .post-thumbnail:hover::before {
    transform: scaleX(0);
    opacity: 0.5;
}
.bh-blog-columns .bh-blog-details .post-thumbnail::after {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 0px;
    opacity: 0;
    background: rgb(255, 255, 255);
    transform: scaleY(1);
    transform-origin: 90% center;
    transition: all 0.5s ease 0s;
}
.bh-blog-columns .bh-blog-details .post-thumbnail:hover::after {
    transform: scaleY(0);
    opacity: 0.5;
}
.single .bh-blog-single-imgae .post-thumbnail img {
    border-radius: 10px;
}
.bh-blog-single-data .bh-text-icon svg {
    vertical-align: middle;
    margin-top: 3px;
}
.bh-single-blog {
    padding: 80px 0 30px;
}
.bh-blog-single-imgae .post-thumbnail {
    margin: 0;
}
.single .bh-blog-single-imgae .post-thumbnail {
    margin: 0 0 34px;
}
.bh-blog-meta {
    margin: 33px 0 17px;
    width: 100%;
}
.bh-single-blog .entry-content>ul, .bh-single-blog .entry-content>ol {
    margin-bottom: 20px;
}
.bh-blog-columns .comments-area>ol.comment-list {
    margin-bottom: 20px;
    width: 100%;
}
.bh-blog-columns .bh-blog-details .edit-link {
    margin: 0 0 20px;
}
.comments-area>ol.comment-list>li .comment-respond {
    margin: 33px 0 0;
}
.comment-respond .comment-form-cookies-consent+.row .input-wrap {
    margin-bottom: 23px;
}
.bh-categories-tags {
    width: 100%;
}
.bh-categories-tags div>span a:first-child {
    margin-left: 10px;
}
/* Authore Info */
.bh-blog-authore-box {
    background: var(--bloghub-primary-color);
    padding: 30px 30px 10px;
    display: flex;
    flex-wrap: wrap;
    margin: 23px 0 18px;
    border-radius: 10px;
}
.bh-blog-authore-img {
    width: 100px;
    height: 100px;
    margin: 0 0 20px;
}
.bh-blog-authore-img img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border: 3px solid var(--bloghub-white);
    border-radius: 50%;
}
.bh-blog-authore-info {
    width: calc(100% - 100px);
    padding: 0 15px 0 30px;
    color: var(--bloghub-white);
}
.bh-blog-authore-box p {
    margin-bottom: 8px;
}
.bh-blog-authore-info h5 {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 7px;
    color: var(--bloghub-white);
}
.bh-blog-authore-info h5 span {
    color: var(--bloghub-primary-color);
    font-weight: 600;
    margin: 0 10px 0 0;
}
/* Comments */
.comment-reply-title {
    font-size: var(--bloghub-title-size);
    font-weight: 700;
    margin: 0 0 0;
    color: var(--bloghub-title-color);
    line-height: 1.4;
    margin-bottom: 19px;
}
.wp-block-latest-comments {
    padding: 0;
}
.wp-block-latest-comments__comment-date {
    font-size: var(--bloghub-font-size);
    margin: 3px 0 5px;
    display: inline-block;
    width: 100%;
    color: var(--bloghub-primary-color);
    font-weight: 500;
}
.comment-list .input-wrap textarea, .comment-list .input-wrap input {
    border: 1px solid var(--bloghub-border-color);
}
.wp-block-categories.wp-block-categories-dropdown .nice-select {
    margin: 0 0 23px;
}
/* Pagination CSS */
.pagination .nav-links, .woocommerce .woocommerce-pagination ul.page-numbers li {
    display: flex;
    flex-wrap: wrap;
}
.pagination .nav-links>*:not(.dots) {
    height: 40px;
    width: 40px;
    background: transparent;
    color: var(--bloghub-title-color);
    text-transform: capitalize;
    line-height: 40px;
    display: inline-block;
    text-align: center;
    border: none;
    border-radius: 6px;
    margin: 0 10px 0 0;
    font-weight: 500;
}
.pagination .nav-links .dots {
    height: 50px;
    width: 50px;
    color: var(--bloghub-title-color);
    line-height: 50px;
    display: inline-block;
    text-align: center;
    border: none;
    margin: 0 10px 0 0;
}
.page-numbers>span {
    display: none;
}
.page-numbers svg {
    fill: var(--bloghub-title-color);
}
.pagination .nav-links>*:hover, .pagination .nav-links .current {
    background: var(--bloghub-primary-color);
    color: var(--bloghub-white);
}
.pagination .nav-links .dots:hover {
    background: transparent;
    color: var(--bloghub-title-color);
}
.pagination .nav-links>*:hover svg, .pagination .nav-links>*:hover svg path {
    fill: var(--bloghub-white);
}
.pagination .nav-links>*, .pagination .nav-links>*:hover {
    -webkit-transition: var(--bloghub-transition);
    -moz-transition: var(--bloghub-transition);
    -ms-transition: var(--bloghub-transition);
    -o-transition: var(--bloghub-transition);
    transition: var(--bloghub-transition);
}
/**/
.page-links .page-number span, .page-links .page-number a {
    height: 40px;
    width: 40px;
    background: transparent;
    color: var(--bloghub-title-color);
    text-transform: capitalize;
    line-height: 40px;
    display: inline-block;
    text-align: center;
    border: none;
    border-radius: 6px;
    margin: 0 0 0 10px;
}
.page-links .page-number span.current, .page-links .page-number a:hover {
    background: var(--bloghub-primary-color);
    color: var(--bloghub-white);
}
.bh-main-page-container .bh-blog-columns .page-links {
    margin: 40px 0 0;
    display: inline-block;
    width: 100%;
}
/* WIDGET WP*/
.bh-sidebar-wrapper .widget .wp-block-group__inner-container h2 {
    font-size: var(--bloghub-widgets-title-size);
    font-weight: 600;
    color: var(--bloghub-title-color);
    margin: 0px 0 25px;
    position: relative;
    padding: 0 0 12px;
    text-transform: capitalize;
    font-family: var( --bloghub-title-family);
    line-height: 1.2;
}
.bh-sidebar-wrapper .widget .wp-block-group__inner-container h2:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    background: var(--bloghub-primary-color);
    width: 80px;
}
/** Search **/
.wp-block-search {
    margin: 0 0 30px;
}
.wp-block-search .wp-block-search__input {
   border-radius: 30px 0 0 30px;
}
body .wp-block-search .wp-block-search__button {
   border-radius: 0px 30px 30px 0 !important;
}
.wp-block-search .wp-block-search__button {
    margin: 0;
}
.search-form {
    display: flex;
    flex-wrap: wrap;
}
.search-form label {
    width: calc(100% - 60px);
    margin: 0;
}
.search-form label input.search-field {
    border-radius: var(--bloghub-radius0);
    border-radius: 30px 0 0 30px;
}
.search-form .search-submit {
    min-width: 60px;
    width: 60px;
    border-radius: var(--bloghub-radius0) !important;
    height: 50px;
    border-radius: 0 29px 30px 0 !important;
    padding: 11px 20px 10px;
}
.search-form .search-submit svg {
    fill: var(--bloghub-white);
}
/* Side Bar CSS */
.widget {
    width: 100%;
    position: relative;
    display: inline-block;
    margin: 0 0 66px;
    padding: 0;
}
.widget:last-of-type {
    margin-bottom: 0;
}
.widget_tag_cloud {
    margin-bottom: 65px;
}
.bh-recent-post-widgets {
    padding-bottom: 0px;
}
.widget-title {
    font-size: var(--bloghub-widgets-title-size);
    font-weight: 700;
    color: var(--bloghub-title-color);
    margin: 0px 0 25px;
    position: relative;
    padding: 0 0 12px;
    display: inline-block;
}
.widget-title:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    background: var(--bloghub-primary-color);
    width: 85%;
}
.widget ul li, .widget ol li {
    margin: 0 0 12px;
    position: relative;
    padding-left: 18px;
}
.widget ul li:before, .widget ol li:before {
    content: "";
    position: absolute;
    left: 0;
    height: 5px;
    width: 5px;
    border-radius: 0%;
    background: var(--bloghub-primary-color);
    top: 8px;
}
.widget ul li:hover>a, .widget ol li:hover>a {
    color: var(--bloghub-primary-color);
}
.widget ul li:hover a, .widget ol li:hover a, .widget ul li:hover:before, .widget ol li:hover:before, .widget ul li a, .widget ol li a, .widget ul li:before, .widget ol li:before {
    -webkit-transition: var(--bloghub-transition);
    -moz-transition: var(--bloghub-transition);
    -ms-transition: var(--bloghub-transition);
    -o-transition: var(--bloghub-transition);
    transition: var(--bloghub-transition);
}
.widget ul li:last-child, .widget ol li:last-child {
    margin: 0;
}
.widget ul.children {
    margin-top: 5px;
}
.widget ul.children, .widget ol.children {
    margin-left: 15px;
}
caption {
    color: var(--bloghub-title-color);
}
.wp-block-calendar table th, .wp-block-calendar table td {
    text-align: center;
}
.wp-block-calendar table th, .wp-calendar-table th {
    background: var(--bloghub-primary-color);
    color: var(--bloghub-white);
    border-color: rgb(255 255 255 / 21%);
}
.wp-block-calendar {
    margin: 30px 0 0;
    display: inline-block;
    width: 100%;
}
/* Widget Spacing */
.widget.widget_search {
    margin: 0 0 75px;
}
/* Custom Images Widget */
.bh-custom-img-section {
    margin: 0 0;
    border-radius: 6px;
    overflow: hidden;
}
.bh-custom-img-section img {
    border-radius: 6px;
}
/* Sperate Widget Spaning */
.widget.widget_recent_comments .widget-title {
    margin-bottom: 30px;
}
.widget.widget_recent_comments {
    margin-bottom: 19px;
}
.widget.widget_archive select {
    margin: 5px 0 7px;
}
.widget.widget_calendar .widget-title {
    margin-bottom: 30px;
}
.widget.widget_calendar .calendar_wrap {
    margin: 0 0 2px;
}
.widget.widget_categories select {
    margin: 5px 0 7px;
}
.widget.widget_search .widget-title {
    margin-bottom: 30px;
    margin-top: -4px;
}
.widget.widget_text .widget-title {
    margin-bottom: 21px;
}
.widget.widget_text select, .widget.widget_text .nice-select {
    margin-bottom: 9px;
}
.widget.widget_tag_cloud .widget-title {
    margin-bottom: 30px;
}
/* Sidebar Only */
.bh-sidebar-wrapper .widget.widget_archive select, .bh-sidebar-wrapper .widget.widget_archive .nice-select {
    margin: 5px 0 6px;
}
.bh-sidebar-wrapper .widget.widget_categories select, .bh-sidebar-wrapper .widget.widget_categories .nice-select {
    margin: 5px 0 9px;
}
.bh-sidebar-wrapper .widget_pages {
    padding-bottom: 2px;
}
.bh-sidebar-wrapper .widget.widget_recent_comments {
    padding-bottom: 0px;
    margin-bottom: 38px;
}
.widget.widget_meta {
    padding-bottom: 2px;
}
.widget.widget_rss {
    padding: 0 0 5px;
}
.widget.widget_archive {
    padding-bottom: 3px;
}
.widget.widget_recent_entries {
    padding-bottom: 2px;
}
/* Footer Widgets Only */
.default-footer {
    padding: 78px 0 0;
}
.bh-footer-wrapper .widget.widget_search .widget-title {
    margin-top: 0;
}
.bh-footer-wrapper .widget_search .search-form {
    margin: 0 0 7px;
}
.bh-footer-wrapper .widget.widget_categories ul {
    margin: 5px 0 0px;
}
.bh-footer-wrapper .widget_tag_cloud {
    margin-bottom: 35px;
}
.bh-footer-wrapper .widget_recent_comments {
    margin-bottom: 18px;
}
.bh-footer-wrapper .widget:last-of-type {
    margin-bottom: 8px;
    margin-top: 20px;
}
/** Error Page CSS **/
.bh-error-page-wrapper {
    padding: 55px 0 71px;
    text-align: center;
}
.bh-error-img img {
    max-height: 350px;
    margin: 0 0 21px;
}
.bh-error-info h1 {
    font-size: 150px;
    font-weight: 900;
    color: var(--bloghub-primary-color);
    margin: 0;
}
.bh-error-info h4 {
    margin: 0 auto 18px;
    text-transform: capitalize;
    font-size: 26px;
    color: var(--bloghub-title-color);
    font-weight: 600;
    font-family: var(--bloghub-globbh-family);
    max-width: 420px;
    line-height: 1.5;
    padding: 2px 0 0;
}
.bh-error-btn {
    margin: 35px 0 0;
}
body .yith-wcwl-add-button .yith-wcwl-icon {
    font: normal normal normal 14px/1 FontAwesome;
}
.bh-error-info .bh-heading {
    font-size: 62px;
    margin: 0 0 20px;
    font-weight: 600;
    color: var(--bloghub-title-color);
}
.no-results.not-found .page-title {
    font-weight: 700;
    font-size: 26px;
}
/***** 4. Woocommerce CSS Start ****/
/* Product Thumb CSS Start */
.woocommerce .products .bh-product-hover ul {
    margin-bottom: 0;
}
.bh-product-hover ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: auto;
    justify-content: center;
}
.bh-product-image img {
    width: 100%;
    min-height: 260px;
    max-height: 260px;
    object-fit: cover;
}
.bh-product-thumb h2 {
    margin: 0;
    color: var(--bloghub-title-color);
    font-size: var(--bloghub-font-size);
    font-weight: 600;
    line-height: 1.5;
}
.bh-product-thumb h2 a, .bh-product-thumb h2 a:hover, .bh-product-thumb h2 a:visited {
    color: var(--bloghub-title-color);
}
.bh-product-thumb h2:hover a, .bh-product-thumb h2 a:hover {
    color: var(--bloghub-primary-color);
}
.bh-product-title h2, .bh-product-title:hover h2 {
    -webkit-transition: var(--bloghub-transition);
    -moz-transition: var(--bloghub-transition);
    -ms-transition: var(--bloghub-transition);
    -o-transition: var(--bloghub-transition);
    transition: var(--bloghub-transition);
}
.bh-product-thumb .price, .woocommerce div.product p.price, .woocommerce div.product span.price {
    color: var(--bloghub-primary-color);
    font-weight: 600;
    font-size: var(--bloghub-widgets-title-size);
}
.bh-product-hover ul .bh-product-icon {
    height: 50px;
    width: 50px;
    display: inline-block;
    border: none;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    margin: 0;
    color: var(--bloghub-white);
    background: var(--bloghub-primary-color);
}
.bh-product-hover ul .bh-product-icon:hover {
    background: var(--bloghub-secondary-bg);
}
.bh-product-hover ul .bh-product-icon svg {
    height: 16px;
    width: 16px;
    fill: var(--bloghub-white);
}
.bh-product-hover ul li:nth-child(2) a {
    position: relative;
}
.bh-product-hover {
    position: absolute;
    right: 0;
    left: 0;
    margin: auto;
    bottom: -100px;
}
.bh-product-thumb:hover .bh-product-hover {
    bottom: 20px;
}
.bh-product-thumb .bh-product-hover, .bh-product-thumb:hover .bh-product-hover {
    -webkit-transition: var(--bloghub-transition);
    -moz-transition: var(--bloghub-transition);
    -ms-transition: var(--bloghub-transition);
    -o-transition: var(--bloghub-transition);
    transition: var(--bloghub-transition);
}
.bh-product-hover ul li {
    width: 60px;
}
.bh-product-thumb {
    margin: 0 0 41px;
    position: relative;
    background: var(--bloghub-product-bg);
    padding: 10px;
}
.bh-product-image {
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    padding: 20px 0;
    background: var(--bloghub-product-bg);
}
body.woocommerce .bh-shop-wrapper .bh-product-thumb {
    margin: 0 0 30px;
}
.bh-products-wrapper .bh-btn-wrap {
    margin: -10px 0 40px;
    justify-content: center;
}
.bh-product-hover ul li {
    margin: 0;
    margin-bottom: 0;
}
.price del .woocommerce-Price-amount.amount, del .woocommerce-Price-amount.amount {
    color: var(--bloghub-font-color);
    font-weight: 600;
    font-size: var(--bloghub-font18);
}
.woocommerce-billing-fields {
    margin: 30px 0 0;
}
form.checkout.woocommerce-checkout h3#order_review_heading {
    margin: 45px 0 14px;
}
.woocommerce div.product div.images .woocommerce-product-gallery__trigger {
    background: var(--bloghub-main-bg);
}
.woocommerce div.product div.images .woocommerce-product-gallery__trigger::before {
    border: 2px solid var(--bloghub-primary-color);
}
.woocommerce div.product div.images .woocommerce-product-gallery__trigger::after {
    background: var(--bloghub-primary-color);
}
.woocommerce div.product div.images .flex-control-thumbs li {
    padding: 10px 10px;
}
.woocommerce div.product div.images .flex-control-thumbs {
    margin: 20px -10px -11px;
}
.woocommerce div.product div.images .flex-control-thumbs img {
    border: 1px solid var(--bloghub-border-color);
}
.bh-product-info .bh-sub-heading a {
    font-size: 16px;
    font-weight: 600;
    color: var(--bloghub-title-color);
    text-transform: capitalize;
    overflow: hidden;
    width: 100%;
    display: inline-block;
    white-space: nowrap;
}
.bh-product-info .bh-sub-heading a:hover {
    color: var(--bloghub-primary-color);
}
.bh-orange {
    color: var(--bloghub-primary-color);
}
.bh-price {
    font-weight: 700;
    font-size: 16px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.bh-price del {
    margin: 0 0 0 5px;
    font-size: 12px;
}
.bh-price .bh-orange {
    font-size: 12px;
}
.bh-product-info {
    padding: 0px 20px 11px;
}
.bh-main-price {
    color: var(--bloghub-primary-color);
}
.bh-product-info .bh-sub-heading {
    padding: 10px 0 0;
    display: flex;
    flex-wrap: wrap;
}
.woocommerce.single-product .bh-sidebar-wrapper .widget:last-of-type {
   margin-bottom: 0;
}
/* Shop Product Sidebar */
.bh_product_filters {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 20px;
}
.bh_product_filters .woocommerce-notices-wrapper {
    width: 100%;
}
.woocommerce-product-search {
    display: flex;
    flex-wrap: wrap;
}
.woocommerce-product-search input {
    width: calc(100% - 60px);
    margin: 0;
    border-radius: 30px 0 0 30px;
}
.woocommerce-product-search button {
    min-width: 60px;
    width: 60px;
    border-radius: 0 29px 30px 0 !important;
    padding: 10px 20px;
}
.woocommerce-product-search button svg {
    fill: var(--bloghub-white);
}
.woocommerce .widget_rating_filter ul li a {
    display: flex;
    flex-wrap: wrap;
}
.woocommerce .widget_rating_filter ul li .star-rating {
    width: 100%;
    max-width: 120px;
}
.woocommerce .widget_shopping_cart .total, .woocommerce.widget_shopping_cart .total {
    border-top: none;
    padding: 0;
    margin: 30px 0 20px;
}
body .star-rating span::before {
    color: var(--bloghub-yellow);
}
.woocommerce.widget_price_filter form {
    display: inline-block;
    width: 100%;
}
.woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content {
    background-color: var(--bloghub-font-color);
}
body .widget_price_filter .ui-slider .ui-slider-range, body .woocommerce .widget_price_filter .ui-slider .ui-slider-range {
    background: var(--bloghub-primary-color) !important;
}
.woocommerce .widget_price_filter .ui-slider .ui-slider-handle {
    background: var(--bloghub-primary-color) !important;
    border: none;
    border-radius: var(--bloghub-circle-radius);
}
.woocommerce .widget_price_filter .price_slider_amount {
    text-align: left;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column-reverse;
}
.woocommerce.widget_price_filter form .price_label {
    display: inline-block;
    width: 100%;
    margin-bottom: 18px;
    font-weight: 500;
}
.woocommerce ul.cart_list li, .woocommerce ul.product_list_widget li {
    color: var(--bloghub-title-color);
    margin-bottom: 10px;
    padding: 0 0 11px;
}
.woocommerce ul.cart_list li a, .woocommerce ul.product_list_widget li a {
    display: block;
    font-weight: 700;
}
.woocommerce.widget ul.product_list_widget li .star-rating {
    width: auto;
    display: block;
    margin: 9px 0 6px !important;
}
.woocommerce .star-rating::before {
    color: var(--bloghub-yellow);
}
.woocommerce-Price-amount.amount {
    color: var(--bloghub-primary-color);
    font-weight: 600;
    font-size: var(--bloghub-font18);
}
.woocommerce ul.product_list_widget li a img {
    margin: 0 20px 10px 0;
    height: 80px;
    width: 80px;
    object-fit: cover;
    float: left;
    border-radius: var(--bloghub-radius0);
    border: 1px solid var(--bloghub-border-color);
}
body .woocommerce.widget_product_tag_cloud .tagcloud .tag-cloud-link {
    border-radius: 30px;
    text-transform: capitalize;
   background-color: var(--bloghub-primary-color);
   color: var(--bloghub-white) !important;
    width: auto;
    display: inline-block;
    margin-bottom: 10px;
    margin-right: 3px;
    padding: 7px 15px;
    font-size: 14px !important;
    font-weight: 400;
    line-height: 26px;
}
body .woocommerce.widget_product_tag_cloud .tagcloud .tag-cloud-link:hover {
    background-color: var(--bloghub-primary-color);
    color: var(--bloghub-main-bg);
}
.woocommerce.widget ul li .product-title {
    color: var(--bloghub-title-color);
    font-weight: 500;
}
.widget mark, .widget ins {
    background: transparent;
}
.woocommerce .widget_shopping_cart .cart_list li a.remove, .woocommerce.widget_shopping_cart .cart_list li a.remove {
    top: 3px;
}
body #yith-quick-view-content .onsale {
    right: auto;
    min-height: unset;
    min-width: 50px;
    margin: 0;
    background: var(--bloghub-yellow);
    padding: 0;
    position: absolute;
    left: 20px;
    top: 20px;
    color: var(--bloghub-main-bg);
    width: 50px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    vertical-align: middle;
    font-size: 12px;
    z-index: 1;
    font-weight: 500;
    text-transform: uppercase;
    border-radius: var(--bloghub-radius0);
}
.widget_product_tag_cloud .widget-title {
    margin-bottom: 30px;
}
.widget_product_tag_cloud {
    padding-bottom: 30px;
}
body .bh-product-thumb .star-rating::before, body .bh-product-thumb .star-rating span::before {
    letter-spacing: 6px;
}
/* Single Product Price CSS */
.woocommerce div.product .bh-product-summary-description .price, .woocommerce div.product .bh-product-summary-description .price .woocommerce-Price-amount {
    font-size: var(--bloghub-title-size);
    color: var(--bloghub-title-color);
    font-weight: 700;
}
.toast {
    background: var(bh-primary-color);
}
.toast.toast-success {
    background: green;
}
.toast.toast-error {
    background: red;
}
/* Sperate Widget Spacing Woocomerce */
.widget.widget_price_filter {
    margin-bottom: 46px;
}
.widget.widget_price_filter .widget-title {
    margin-bottom: 30px;
}
.widget.widget_rating_filter .widget-title {
    margin-bottom: 25px;
}
.widget .widget_shopping_cart_content p.woocommerce-mini-cart__empty-message {
    margin: 0;
}
.widget.widget_product_search .woocommerce-product-search {
    margin-bottom: 7px;
}
.widget.widget_top_rated_products .widget-title {
    margin-bottom: 30px;
}
.woocommerce ul.cart_list li:last-child, .woocommerce ul.product_list_widget li:last-child {
    margin: 0;
}
.widget.widget_products .widget-title {
    margin-bottom: 25px;
}
.widget.widget_products {
    padding-bottom: 8px;
}
.widget.widget_recent_reviews {
    margin-bottom: 28px;
}
.widget.widget_recent_reviews .widget-title {
    margin-bottom: 30px;
}
.widget.widget_top_rated_products {
    padding-bottom: 18px;
}
.widget.widget_recently_viewed_products .widget-title {
    margin-bottom: 30px;
}
.widget.widget_recently_viewed_products {
    padding-bottom: 8px;
}
.woocommerce .bh-sidebar-wrapper .widget:last-of-type {
    margin-bottom: 0;
}
.bh-shop-wrapper .bh-sidebar-wrapper {
    margin-bottom: 30px;
}
.bh-shop-wrapper .bh-blog-columns {
    margin-bottom: 40px;
}
.woocommerce-Reviews .woocommerce-Reviews-title {
    display: none;
}
.wp-block-latest-comments__comment-author:hover, .wp-block-latest-comments__comment-author:hover, .wp-block-latest-posts.wp-block-latest-posts__list li a:hover, .wp-block-latest-posts.wp-block-latest-posts__list li a:hover {
    color: var(--bloghub-primary-color);
}
.woocommerce ul.product_list_widget li:before {
    content: unset;
}
.bh-header-style1 .woocommerce-mini-cart.cart_list li {
    margin-left: 0;
}
form.post-password-form p {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
}
form.post-password-form p>* {
    margin: 10px 0 0;
}
form.post-password-form p>* input {
    border-radius: 30px 0px 0px 30px;
}
form.post-password-form p>input.bh-btn {
    border-radius: 0px 30px 30px 0px !important;
}
.woocommerce p label.screen-reader-text, label.screen-reader-text {
    width: 1px;
}
.woocommerce-checkout .woocommerce-additionbh-fields {
    margin: 0;
}
.wp-block-group.has-background~.more-link.bh-btn {
    margin: 20px 0 10px;
}
.entry-header .entry-title {
    margin-bottom: 0;
}
.entry-header .bh-post-meta {
    margin-top: 10px;
}
.entry-header.bh-blog-head {
    margin: 0 0 18px;
}
.sticky-post {
    vertical-align: middle;
}
.single .entry-header .bh-post-meta {
    margin-top: 0px;
}
.alignright {
    clear: both;
    margin-top: 0.5em;
}
.bh-main-page-container {
    padding: 80px 0 0;
}
.woocommerce-variation-add-to-cart {
    display: flex;
    flex-wrap: wrap;
}
.yith-wcqv-wrapper .woocommerce-variation-add-to-cart .single_add_to_cart_button, .yith-wcqv-wrapper .woocommerce-variation-add-to-cart .product-qyt-wrapper {
    margin: 10px 0 0 !important;
}
.posted_in>*.al_meta_tag, .sku_wrapper>*.al_meta_tag, .posted_in>*.al_meta_tag:hover, .sku_wrapper>*.al_meta_tag:hover {
    background-color: transparent;
    padding: 0;
}
.is-style-rounded .wp-block-button__link.bh-btn {
    border-radius: 50px !important;
}
.al_product_filters .nice-select {
    min-width: 220px;
    padding: 0 40px 0 20px;
}
.al_product_filters .nice-select:after {
    right: 22px;
    border-bottom: 2px solid var(--bloghub-title-color);
    border-right: 2px solid var(--bloghub-title-color);
}
.al_product_filters .woocommerce-notices-wrapper .woocommerce-message {
    margin: 0 0 30px;
}
.al_product_filters .woocommerce-notices-wrapper {
    margin: 0;
}
.bh-page-columns .comments-area {
    margin-top: 34px;
}
.wp-block-media-text.has-media-on-the-right .wp-block-media-text__content p {
    color: #767676;
}
.bh-main-nav-wrapper .menu .sub-menu a, .bh-main-nav-wrapper .menu a {
   font-weight: 600;
}
.bh-header-wrapper.bh-header-style1 ul.sub-menu a {
   text-transform: uppercase;
}
/*Unit content */
body.single.single-post .bh-sidebar-wrapper {
   margin-bottom: 27px;
}
.bh-page-columns {
    margin-bottom: 50px;
}
.bh-main-page-container {
    padding: 80px 0 30px;
}
.widget.widget_recent_comments ul li.recentcomments:before {
    background-size: 50% !important;
    background: url(./../images/comments.svg) !important;
    background-repeat: no-repeat !important;
    width: 40px;
    height: 22px;
    top: 2px;
}
.woocommerce-account .woocommerce-MyAccount-content {
    padding: 0 15px;
    width: 70%;
}
.wp-block-group.has-background {
    margin: 0 0 20px;
}
/* Thank You Page CSS */
.woocommerce-order-received .bh-main-page-container {
    padding: 75px 0 30px;
}
.woocommerce-order-received .bh-main-page-container .woocommerce-order-details__title, .woocommerce-order-received .woocommerce-customer-details .woocommerce-column__title {
    font-size: var(--bloghub-title-size);
    font-weight: 700;
    margin: 10px 0 0;
    color: var(--bloghub-title-color);
    line-height: 1.4;
    margin-bottom: 19px;
}
.woocommerce-order-received .bh-main-page-container .woocommerce-thankyou-order-received {
    margin: 0 0 22px;
}
.woocommerce-order-received .bh-main-page-container .order_details li strong {
    margin-top: 3px;
}
.woocommerce-order-received .bh-main-page-container .woocommerce-order-overview {
    margin-bottom: 56px;
}
.woocommerce-order-received .woocommerce-order-details {
    margin-bottom: 40px;
}
/* Thumb Ratings */
body .bh-product-thumb .star-rating {
    overflow: hidden;
    position: relative;
    height: 1em;
    line-height: 1;
    width: 110px;
    font-family: star;
    display: block;
    margin: 8px 0 8px !important;
    float: none;
    font-size: var(--bloghub-font-size);
}
.star-rating {
    font-size: var(--bloghub-font-size);
}
.star-rating::before {
    content: "\73\73\73\73\73";
    color: var(--bloghub-yellow);
    float: left;
    top: 0;
    left: 0;
    position: absolute;
}
.star-rating span {
    overflow: hidden;
    float: left;
    top: 0;
    left: 0;
    position: absolute;
    padding-top: 1.5em;
}
.star-rating span::before {
    content: "\53\53\53\53\53";
    top: 0;
    position: absolute;
    left: 0;
    color: var(--bloghub-yellow);
}
/* Shop Page */
.al_product_filters {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 24px;
}
.al_product_filters .woocommerce-notices-wrapper {
    width: 100%;
}
.woocommerce .woocommerce-result-count, .woocommerce .woocommerce-ordering {
    margin: 0 0 10px;
}
.bh-products-container {
    width: 100%;
    display: inline-block;
}
.bh-large-product img {
    width: 100%;
}
body.woocommerce span.onsale, span.onsale {
    min-height: unset;
    min-width: 50px;
    margin: 0;
    background: var(--bloghub-yellow);
    padding: 2px 0 0;
    position: absolute;
    left: 20px;
    top: 50px;
    color: var(--bloghub-white);
    width: 50px;
    height: auto;
    text-align: center;
    line-height: 20px;
    vertical-align: middle;
    font-size: 10px;
    z-index: 1;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: var(--bloghub-radius0);
}
body.woocommerce.single span.onsale {
    top: 20px;
}
.bh-new-prod-tag {
    min-height: unset;
    min-width: 50px;
    margin: 0;
    background: var(--bloghub-primary-color);
    padding: 0;
    position: absolute;
    left: 20px;
    top: 20px;
    color: var(--bloghub-white);
    width: 50px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    vertical-align: middle;
    font-size: 12px;
    z-index: 1;
    font-weight: 500;
    text-transform: uppercase;
    border-radius: var(--bloghub-radius0);
}
.bh-product-image:not(.bh-new-product) .onsale, .bh-product-image:not(.bh-new-product) body.woocommerce span.onsale {
    top: 20px;
}
.price mark, .price ins {
    background: transparent;
}
.price del, del {
    opacity: 1;
    color: var(--bloghub-font-color);
}
code {
    font-size: 1em;
}
/* Pagination SHop */
body.woocommerce nav.woocommerce-pagination {
    width: 100%;
}
body.woocommerce .bh-shop-wrapper nav.woocommerce-pagination {
    margin-bottom: 40px;
}
body.woocommerce nav.woocommerce-pagination ul.page-numbers {
    display: flex;
    white-space: unset;
    padding: 0;
    clear: unset;
    border: none;
    margin: 0;
    flex-wrap: wrap;
}
body.woocommerce nav.woocommerce-pagination ul.page-numbers li {
    border: none;
    margin: 0;
}
body.woocommerce nav.woocommerce-pagination ul.page-numbers li>* {
    height: 40px;
    width: 40px;
    background: transparent;
    color: var(--bloghub-title-color);
    text-transform: capitalize;
    line-height: 40px;
    display: inline-block;
    text-align: center;
    border: none;
    border-radius: 6px;
    margin: 0 3px 0 0;
    padding: 0;
}
body.woocommerce nav.woocommerce-pagination ul.page-numbers li>*.current, body.woocommerce nav.woocommerce-pagination ul.page-numbers li>*:hover {
    background: var(--bloghub-primary-color);
    color: var(--bloghub-white);
}
/* Shop Single Page */
body.woocommerce #respond input#submit.alt, body.woocommerce a.button.alt, body.woocommerce button.button.alt, body.woocommerce input.button.alt {
    background-color: var(--bloghub-primary-color);
    color: var(--bloghub-white);
}
body.woocommerce #respond input#submit, body.woocommerce a.button, body.woocommerce button.button, body.woocommerce input.button {
    line-height: 1.5;
    cursor: pointer;
    font-weight: 500;
    background-color: var(--bloghub-primary-color);
    padding: 12px 20px;
    background: var(--bloghub-primary-color);
    color: var(--bloghub-white);
    font-size: var(--bloghub-font-size);
    display: inline-block;
    min-width: 170px;
    text-align: center;
    border-radius: 40px !important;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    max-height: 50px;
    text-transform: capitalize;
}
.woocommerce div.product .woocommerce-tabs ul.tabs {
    padding: 0 20px 0;
    margin: 0 0 24px;
    border-bottom: none;
    display: inline-block;
    width: 100%;
    background: var(--bloghub-secondary-bg);
}
.woocommerce div.product .woocommerce-tabs ul.tabs li {
    border: none;
    background-color: transparent;
    display: inline-block;
    margin: 0;
    padding: 0;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
    background: transparent;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
    color: var(--bloghub-primary-color);
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    font-weight: 500;
    color: var(--bloghub-title-color);
    padding: 13px 15px 14px;
    min-width: 120px;
    text-align: center;
    margin: 0;
    position: relative;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a:before {
    content: "";
    position: absolute;
    height: 4px;
    width: 0;
    background-color: var(--bloghub-primary-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    margin: auto;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover:before, .woocommerce div.product .woocommerce-tabs ul.tabs li.active a:before {
    width: 40px;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover {
    color: var(--bloghub-title-color);
}
.woocommerce-tabs ul.tabs li.active a {
    color: var(--bloghub-primary-color);
    border-bottom: 0;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover:before, .woocommerce div.product .woocommerce-tabs ul.tabs li.active a:before, .woocommerce div.product .woocommerce-tabs ul.tabs li a:before, .woocommerce div.product .woocommerce-tabs ul.tabs li a:before, .woocommerce div.product .woocommerce-tabs ul.tabs li a {
    -webkit-transition: var(--bloghub-transition);
    -moz-transition: var(--bloghub-transition);
    -ms-transition: var(--bloghub-transition);
    -o-transition: var(--bloghub-transition);
    transition: var(--bloghub-transition);
}
.woocommerce div.product .woocommerce-tabs ul.tabs li::before, .woocommerce div.product .woocommerce-tabs ul.tabs li::after, .woocommerce div.product .woocommerce-tabs ul.tabs::before {
    content: unset;
}
.woocommerce-tabs.wc-tabs-wrapper {
    width: 100%;
}
.product_meta, .product_meta>span .al_meta_tag {
    font-weight: 600;
    color: var(--bloghub-title-color) !IMPORTANT;
   margin-left: 0;
}
.posted_in>*, .sku_wrapper>*, .tagged_as>* {
    border-radius: var(--bloghub-radius0);
    text-transform: capitalize;
    background-color: var(--bloghub-primary-color);
    color: var(--bloghub-white) !important;
    border-radius: 50px;
    width: auto;
    display: inline-block;
    margin: 0 0 10px 10px;
    padding: 7px 15px;
    font-size: 14px !important;
    font-weight: 500;
    line-height: 26px;
}
.product_meta .tagged_as>*.al_meta_tag {
    padding: 0;
    background: transparent;
    color: var(--bloghub-title-color) !important;
    font-size: var(--bloghub-font-size) !important;
    margin: 0;
    font-weight: 600;
}
.product_meta .tagged_as>* {
    margin: 0 0 10px 10px;
}
.posted_in>*:hover, .sku_wrapper>*:hover, .tagged_as>*:hover {
    background-color: var(--bloghub-primary-color);
    color: var(--bloghub-white) !important;
}
.product_meta>span {
    display: inline-block;
    width: 100%;
}
.posted_in>*, .sku_wrapper>*, .posted_in>*:hover, .sku_wrapper>*:hover {
    -webkit-transition: var(--bloghub-transition);
    -moz-transition: var(--bloghub-transition);
    -ms-transition: var(--bloghub-transition);
    -o-transition: var(--bloghub-transition);
    transition: var(--bloghub-transition);
}
.woocommerce #respond input#submit:hover, .woocommerce input.button:hover, body.woocommerce #respond input#submit.alt, body.woocommerce input.button.alt {
    background-color: var(--bloghub-title-color);
    background: var(--bloghub-title-color);
    color: var(--bloghub-white);
}
.woocommerce div.product form.cart .button, body.woocommerce a.button, body.woocommerce button.button {
    background-color: var(--bloghub-primary-color);
    color: var(--bloghub-white);
}
.woocommerce div.product form.cart .button:hover, body.woocommerce a.button:hover, body.woocommerce button.button:hover {
    background-color: var(--bloghub-primary-color);
    color: var(--bloghub-white);
}
body.woocommerce a.button, body.woocommerce button.button, body .checkout-button {
    line-height: 1.5 !important;
    cursor: pointer !important;
    font-weight: 500 !important;
    background-color: var(--bloghub-primary-color) !important;
    padding: 12px 20px 7px !important;
    background: var(--bloghub-primary-color) !important;
    color: var(--bloghub-white) !important;
    font-size: var(--bloghub-font-size) !important;
    display: inline-block !important;
    min-width: 170px;
    text-align: center !important;
    border-radius: 50px !important;
    border: none !important;
    position: relative !important;
    overflow: hidden !important;
    z-index: 1;
    max-height: 50px;
    text-transform: capitalize;
}
body.woocommerce a.button:hover, body.woocommerce button.button:hover, body .checkout-button:hover {
    background-color: var(--bloghub-primary-color) !important;
    color: var(--bloghub-white) !important;
    -webkit-box-shadow: inset 15em 0 0 0 var(--bloghub-hover-btn-bg);
    -moz-box-shadow: inset 15em 0 0 0 var(--bloghub-hover-btn-bg);
    box-shadow: inset 15em 0 0 0 var(--bloghub-hover-btn-bg);
}
body.woocommerce a.button:focus, body.woocommerce button.button:focus, body .checkout-button:focus {
    -webkit-box-shadow: inset 15em 0 0 0 var(--bloghub-hover-btn-bg);
    -moz-box-shadow: inset 15em 0 0 0 var(--bloghub-hover-btn-bg);
    box-shadow: inset 15em 0 0 0 var(--bloghub-hover-btn-bg);
}
body.woocommerce a.button:hover, body.woocommerce button.button:hover, body.woocommerce a.button, body.woocommerce button.button, body .checkout-button, body .checkout-button:hover, body .checkout-button:before, body .checkout-button:hover:before {
    -webkit-transition: var(--bloghub-transition);
    -moz-transition: var(--bloghub-transition);
    -ms-transition: var(--bloghub-transition);
    -o-transition: var(--bloghub-transition);
    transition: var(--bloghub-transition);
}
.woocommerce-mini-cart__buttons.buttons .button {
    min-width: 100px;
}
body .bh-sidebar-wrapper .woocommerce-mini-cart.cart_list li.woocommerce-mini-cart-item>a:not(.remove) {
    padding-left: 40px;
    font-weight: 500;
    text-transform: capitalize;
}
.woocommerce-error, .woocommerce-info, .woocommerce-message {
    padding: 12px 10px 6px;
    margin: 0 0 30px;
    position: relative;
    background-color: var(--bloghub-secondary-bg);
    color: var(--bloghub-title-color);
    border-top: none;
    list-style: none;
    border: none;
    border-left: 3px solid var(--bloghub-primary-color);
    border-radius: var(--bloghub-radius0);
    font-weight: 500;
}
.woocommerce-error::before, .woocommerce-info::before, .woocommerce-message::before {
    content: unset;
}
.woocommerce p.stars.selected a:not(.active)::before, .woocommerce p.stars a::before {
    color: var(--bloghub-yellow);
}
.woocommerce table.shop_attributes th {
    text-align: left;
    padding: 15px 20px;
}
.woocommerce table.shop_attributes td {
    text-align: left;
}
.woocommerce table.shop_attributes td {
    font-style: normal;
    padding: 10px 10px;
}
.woocommerce #review_form #respond form>p {
    margin: 0 0 25px;
}
.woocommerce #review_form #respond p.comment-form-cookies-consent {
    margin: 28px 0 21px;
    cursor: pointer;
}
.return-to-shop {
    margin: 0;
}
.comment-form-cookies-consent input {
    display: none 
}
.comment-form-cookies-consent label {
    margin: 0;
    position: relative;
    padding-left: 30px;
    cursor: pointer 
}
.comment-form-cookies-consent label:before {
    content: "";
    position: absolute;
    top: 2px;
    left: 0;
    width: 18px;
    height: 18px;
    border: 1px solid var(--bloghub-border-color);
    border-radius: 2px;
    -webkit-transition: var(--bloghub-transition);
    -moz-transition: var(--bloghub-transition);
    -ms-transition: var(--bloghub-transition);
    -o-transition: var(--bloghub-transition);
    transition: var(--bloghub-transition);
}
.comment-form-cookies-consent label:after {
    content: "";
    position: absolute;
    top: 6px;
    left: 4px;
    width: 10px;
    height: 6px;
    border-left: 2px solid var(--bloghub-main-bg);
    border-bottom: 2px solid var(--bloghub-main-bg);
    -webkit-transform: rotate(-20deg);
    -moz-transform: rotate(-20deg);
    -ms-transform: rotate(-20deg);
    transform: rotate(-20deg);
    -webkit-transition: var(--bloghub-transition);
    -moz-transition: var(--bloghub-transition);
    -ms-transition: var(--bloghub-transition);
    -o-transition: var(--bloghub-transition);
    transition: var(--bloghub-transition);
    opacity: 0;
}
.comment-form-cookies-consent input:checked~label:after {
    opacity: 1;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg) 
}
.comment-form-cookies-consent input:checked~label:before {
    background-color: var(--bloghub-title-color);
    border: 1px solid transparent 
}
.comment-form-cookies-consent input:checked~label {
    color: var(--bloghub-title-color);
}
.bh-product-tabs-wrapper {
    width: 100%;
}
.bh-large-product {
    text-align: center;
    padding: 0;
    border-radius: var(--bloghub-radius0);
    display: inline-block;
    width: 100%;
    position: relative;
    overflow: hidden;
}
.woocommerce div.product div.images {
    width: 100%;
}
.bh-single-product-page {
    padding: 80px 0 30px;
}
.woocommerce div.product form.cart.grouped_form table td, .woocommerce div.product form.cart.grouped_form table th {
    border: 1px solid var(--bloghub-border-color);
    text-align: left;
    padding: 20px 10px;
}
.woocommerce div.product form.cart {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.bh-product-summary-description {
    margin-bottom: 60px;
}
body.single-product .product-qyt {
    display: inline-block;
    margin: 6px 20px 0px 0;
}
.woocommerce div.product form.cart {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.product-qyt .quantity {
    display: flex;
    align-items: center;
    border: 1px solid var(--bloghub-border-color);
    border-radius: var(--bloghub-radius-comman);
    width: 160px;
    border-radius: 40px;
}
body button.minus, body button.plus, body button.minus:hover, body button.plus:hover {
    width: 50px;
    height: 40px;
    background: transparent;
    position: relative;
    outline: none;
    transition: 0.3s;
    color: var(--bloghub-primary-color);
    min-width: auto;
    padding: 0;
    font-size: var(--bloghub-sub-title-size);
    line-height: 0;
    border-left: 0;
    border: none;
}
.woocommerce .quantity input[type="number"].qty {
    border: none;
    border-radius: 0;
    background: transparent;
    border-left: 1px solid var(--bloghub-border-color);
    border-right: 1px solid var(--bloghub-border-color);
    height: 48px;
    width: 60px;
    margin: auto 0;
    padding: 0 5px;
    text-align: center;
    line-height: 50px;
}
input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.woocommerce-Reviews .woocommerce-Reviews-title {
    font-size: var(--bloghub-sub-title-size);
    font-weight: 600;
    margin: 0 0 15px;
}
.woocommerce div.product .woocommerce-tabs .panel div#review_form .comment-reply-title {
    font-size: inherit;
    font-weight: 500;
}
.woocommerce div#review_form_wrapper #review_form #respond.comment-respond .form-submit {
    margin: 0 0 19px;
}
body.woocommerce #reviews #comments ol.commentlist {
    padding: 0;
}
.woocommerce #reviews #comments ol.commentlist li {
    background: var(--bloghub-main-bg);
    padding: 30px 30px;
    margin: 0 0 20px;
    border: var(--bloghub-radius0);
}
.woocommerce #reviews #comments ol.commentlist li .comment-text {
    margin: 0 0 0 100px;
    border: none;
    padding: 0;
}
.woocommerce #reviews #comments ol.commentlist li img.avatar {
    top: 30px;
    left: 30px;
    padding: 0;
    width: 80px;
    border-radius: var(--bloghub-circle-radius);
}
.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta {
    font-size: var(--bloghub-font18);
    font-weight: 600;
    margin: 0 0 6px;
    color: var(--bloghub-title-color);
    text-transform: capitalize;
}
.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta .woocommerce-review__published-date {
    color: var(--bloghub-primary-color);
    text-transform: uppercase;
    font-weight: 600;
    font-size: var(--bloghub-font-size);
    letter-spacing: .6px;
    position: relative;
}
body.woocommerce #reviews #comments ol.commentlist {
    padding: 0;
    margin: 25px 0 10px;
}
.bh-product-summary-description .yith-wcwl-add-to-wishlist {
    margin: 0 0 20px;
}
.bh-product-summary-description .yith-wcwl-wishlistexistsbrowse a {
    color: var(--bloghub-primary-color);
    font-weight: 500;
    margin: 0 0 0 10px;
}
/* Wishlist Page Style */
.woocommerce-wishlist .bh-main-page-container {
    padding: 80px 0 40px;
}
.woocommerce table.shop_table.wishlist_view td.product-name .yith-wcqv-button {
    display: none !important;
}
table.wishlist_table {
    font-size: var(--bloghub-font-size);
}
table.shop_table.cart.wishlist_table tbody.wishlist-items-wrapper .product-add-to-cart .add_to_cart {
    margin: 0 !important;
    padding: 12px 10px !important;
}
.yith_wcwl_wishlist_footer .yith-wcwl-share .fa {
    font-family: "Font Awesome 5 Brands";
}
.yith_wcwl_wishlist_footer .yith-wcwl-share .fa-facebook:before {
    content: "\f39e";
}
.yith_wcwl_wishlist_footer .yith-wcwl-share .fa-envelope-o:before {
    content: "\f0e0";
}
.yith-wcwl-share li a {
    min-width: 30px;
    min-height: 30px;
    border-radius: var(--bloghub-circle-radius);
    height: 40px;
    padding: 0;
    width: 40px;
    line-height: 40px;
}
.yith_wcwl_wishlist_footer .yith-wcwl-share .fa.fa-envelope-o {
    font: normal normal normal 14px/1 FontAwesome;
}
.yith_wcwl_wishlist_footer .yith-wcwl-share .yith-wcwl-after-share-section {
    color: var(--bloghub-primary-color);
}
.bh-product-info .yith-wcwl-add-to-wishlist {
    display: none;
}
.wishlist-title-container {
    display: none;
}
table.wishlist_table tbody td, table.wishlist_table thead th {
    border-color: var(--bloghub-border-color);
}
body.single-product .bh-blog-columns {
    margin: 0 0 35px;
}
/* Related Products */
.bh-related-product-wrapper {
    width: 100%;
    padding: 58px 0 13px;
    border-top: 1px solid var(--bloghub-border-color);
    margin-top: 73px;
    position: relative;
}
.bh-related-product-wrapper h4 {
    font-weight: 700;
}
.bh-related-product-wrapper .bh-heading-wrap>div {
    margin-bottom: 44px;
}
.bh-related-product-swiper .bh-product-thumb {
    margin: 0 0 16px;
}
.bh-related-product-wrapper .bh-heading-wrap>div .bh-heading {
    font-size: var(--bloghub-title-size);
    text-transform: uppercase;
    font-weight: 700;
    position: relative;
    background: var(--bloghub-main-bg);
    padding-right: 20px;
    margin: 0 0 10px;
}
/* Cart Single Page */
.woocommerce-cart .bh-main-page-container {
    padding: 80px 0 21px;
}
.woocommerce table.shop_table {
    border: none;
    margin: 0 0 40px;
    border-radius: 0;
    border-spacing: 0 0;
    border-bottom: 1px solid var(--bloghub-border-color);
    border-right: 1px solid var(--bloghub-border-color);
}
.woocommerce table.shop_table th, .woocommerce table.shop_table td {
    border-bottom: 0;
    text-align: left;
    border-right: 0;
}
.woocommerce-page .cart-collaterals .cart_totals table.shop_table {
    border: 1px solid var(--bloghub-border-color);
    border-top: 0;
}
.woocommerce-cart .bh-blog-columns {
    margin-bottom: 43px;
}
.wc-proceed-to-checkout .checkout-button.button.alt.wc-forward {
    margin: 0;
}
.woocommerce table.shop_table td {
    border-color: var(--bloghub-border-color);
}
.woocommerce a.remove {
    display: block;
    font-size: 18px;
    height: 25px;
    width: 25px;
    text-align: center;
    line-height: 1;
    border-radius: 100%;
    color: var(--bloghub-white) !important;
    text-decoration: none;
    font-weight: 500;
    border: 0;
    background: var(--bloghub-primary-color);
    padding: 1px 0;
}
.woocommerce a.remove:hover {
    background: var(--bloghub-primary-color) !important;
}
.woocommerce-cart #add_payment_method table.cart img, .woocommerce-cart table.cart img, .woocommerce-checkout table.cart img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}
td.product-name a, .woocommerce table.shop_table td a {
    font-weight: 500;
    color: var(--bloghub-title-color);
}
.woocommerce table.cart td.actions .coupon {
    margin-bottom: 0;
    float: left !important;
}
.cart-collaterals .cart_totals h2 {
    font-size: var(--bloghub-title-size);
    font-weight: 600;
    margin-bottom: 0;
    text-transform: capitalize;
    border: 1px solid var(--bloghub-border-color);
    padding: 20px;
}
.cart-collaterals .cart_totals table th {
    padding: 20px;
    text-transform: capitalize;
    border: 1px solid var(--bloghub-border-color);
    border-top: none;
    max-width: 100%;
    color: var(--bloghub-title-color);
}
.woocommerce-cart .cart-collaterals .cart_totals tr td {
    padding: 20px;
    text-transform: capitalize;
    max-width: 100%;
}
body .woocommerce .checkout-button {
    width: 100%;
    line-height: 30px !important;
}
#add_payment_method .wc-proceed-to-checkout, .woocommerce-cart .wc-proceed-to-checkout, .woocommerce-checkout .wc-proceed-to-checkout {
    padding: 24px 0 0;
}
body .woocommerce-additional-fields .woocommerce-additional-fields__field-wrapper p#order_comments_field textarea#order_comments {
    height: 150px;
    padding: 20px;
}
.woocommerce table.cart td.actions .coupon input#coupon_code {
    width: calc(100% - 170px);
    max-width: 200px;
    padding: 0 20px;
    margin: 0;
    border-radius: var(--bloghub-radius0);
    border-radius: 30px 0 0 30px;
}
.woocommerce table.cart td.actions .coupon button.button, .woocommerce table.cart td.actions .coupon button.button {
    max-width: 150px;
    font-size: var(--bloghub-font-size);
    font-weight: 500;
    color: var(--bloghub-white);
    background: var(--bloghub-primary-color);
    min-height: 50px;
    border: none;
    border-radius: var(--bloghub-radius0);
    border-radius: 0 30px 30px 0;
}
.woocommerce table.cart td.actions .coupon button.button:hover, .woocommerce table.cart td.actions .coupon button.button:hover {
    color: var(--bloghub-white);
    background: var(--bloghub-primary-color);
}
.woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button {
    min-width: 170px;
    font-size: var(--bloghub-font-size);
    font-weight: 500;
    color: var(--bloghub-white);
    background: var(--bloghub-primary-color) !important;
    min-height: 50px;
    border: none;
    border-radius: var(--bloghub-radius-comman);
    line-height: 50px;
    padding: 0 20px;
    text-align: center;
    border-radius: 40px;
    overflow: hidden;
    text-transform: uppercase;
}
.woocommerce #respond input#submit:hover, .woocommerce a.button:hover, .woocommerce button.button:hover, .woocommerce input.button:hover {
    color: var(--bloghub-white) !important;
    background: var(--bloghub-primary-color) !important;
    -webkit-box-shadow: inset 15em 0 0 0 var(--bloghub-hover-btn-bg);
    -moz-box-shadow: inset 15em 0 0 0 var(--bloghub-hover-btn-bg);
    box-shadow: inset 15em 0 0 0 var(--bloghub-hover-btn-bg);
}
.woocommerce #respond input#submit:focus, .woocommerce a.button:focus, .woocommerce button.button:focus, .woocommerce input.button:focus {
    transition: box-shadow 0.5s;
    -webkit-box-shadow: inset 15em 0 0 0 var(--bloghub-hover-btn-bg);
    -moz-box-shadow: inset 15em 0 0 0 var(--bloghub-hover-btn-bg);
    box-shadow: inset 15em 0 0 0 var(--bloghub-hover-btn-bg);
}
.woocommerce #respond input#submit.disabled, .woocommerce #respond input#submit:disabled, .woocommerce #respond input#submit:disabled[disabled], .woocommerce a.button.disabled, .woocommerce a.button:disabled, .woocommerce a.button:disabled[disabled], .woocommerce button.button.disabled, .woocommerce button.button:disabled, .woocommerce button.button:disabled[disabled], .woocommerce input.button.disabled, .woocommerce input.button:disabled, .woocommerce input.button:disabled[disabled] {
    cursor: not-allowed;
    opacity: .5;
    padding: 0 20px;
    min-width: 170px;
    font-size: var(--bloghub-font-size);
    font-weight: 500;
    color: var(--bloghub-main-bg);
    background: var(--bloghub-primary-color);
    min-height: 50px;
    border: none;
    border-radius: 30px;
}
.woocommerce #respond input#submit.disabled:hover, .woocommerce #respond input#submit:disabled:hover, .woocommerce #respond input#submit:disabled[disabled]:hover, .woocommerce a.button.disabled:hover, .woocommerce a.button:disabled:hover, .woocommerce a.button:disabled[disabled]:hover, .woocommerce button.button.disabled:hover, .woocommerce button.button:disabled:hover, .woocommerce button.button:disabled[disabled]:hover, .woocommerce input.button.disabled:hover, .woocommerce input.button:disabled:hover, .woocommerce input.button:disabled[disabled]:hover {
    color: var(--bloghub-main-bg);
    background: var(--bloghub-primary-color);
}
table th, .wp-block-calendar th {
    border-color: rgb(255 255 255 / 18%);
}
/* Checkout Single Page */
.woocommerce-checkout .bh-main-page-container {
    padding: 80px 0 0px;
}
.woocommerce-checkout .bh-main-page-container .bh-page-columns {
    margin-bottom: 45px;
}
.woocommerce-checkout .woocommerce form.checkout_coupon .form-row.form-row-first {
    width: calc(100% - 170px);
    display: flex;
    flex-wrap: wrap;
}
.woocommerce form.checkout_coupon .form-row.form-row-last {
    width: 170px;
    display: inline-block;
}
.woocommerce-checkout-review-order .form-row.place-order {
    margin: 0 0 0;
}
.woocommerce .col2-set .col-1, .woocommerce-page .col2-set .col-1 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    float: none;
    width: 100%;
    padding: 0;
}
.woocommerce p label {
    width: 100%;
    text-transform: capitalize;
}
.woocommerce-input-wrapper {
    width: 100%;
    display: inline-block;
}
.select2-container .select2-selection--single {
    width: 100%;
    height: 50px;
    border: 1px solid var(--bloghub-border-color);
    border-radius: 30px;
    outline: none;
    background: var(--bloghub-input-bg);
    padding: 12px 20px 12px 10px;
}

.select2-container.select2-container--above.select2-container--open .select2-selection--single {
    border-color: var(--bloghub-primary-color);
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 50px;
    right: 15px;
}
.woocommerce div.product form.cart .group_table td, .woocommerce div.product form.cart .group_table th {
    vertical-align: middle;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: var(--bloghub-font-color);
}
body .select2-dropdown {
    background-color: var(--bloghub-secondary-bg);
    border: none;
    border-radius: var(--bloghub-radius0);
}
.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid var(--bloghub-border-color);
    margin: 0 0 20px;
    padding: 0 0 0 20px;
}
body .select2-results {
    padding: 0 0 0 20px;
}
.select2-container--default .select2-results__option--highlighted[aria-selected], .select2-container--default .select2-results__option--highlighted[data-selected] {
    background-color: var(--bloghub-primary-color);
    color: var(--bloghub-font-color);
}
.select2-results__option[aria-selected], .select2-results__option[data-selected] {
    color: var(--bloghub-font-color);
}
.select2-container--default .select2-results__option[aria-selected=true], .select2-container--default .select2-results__option[data-selected=true] {
    background-color: var(--bloghub-secondary-bg);
}
.woocommerce form .form-row label {
   font-weight: 600;
   color: var(--bloghub-title-color);
   margin: 0 0 8px;
}
body.woocommerce-checkout .woocommerce form>div>div p {
    width: 100%;
    margin: 0 0 20px;
    padding: 0;
}
body.woocommerce-checkout .woocommerce form>div>div .woocommerce-privacy-policy-text .woocommerce-privacy-policy-link {
    font-weight: 500;
}
#add_payment_method .cart-collaterals .cart_totals tr td, #add_payment_method .cart-collaterals .cart_totals tr th, .woocommerce-cart .cart-collaterals .cart_totals tr td, .woocommerce-cart .cart-collaterals .cart_totals tr th, .woocommerce-checkout .cart-collaterals .cart_totals tr td, .woocommerce-checkout .cart-collaterals .cart_totals tr th {
    border-color: var(--bloghub-border-color);
}
form.woocommerce-EditAccountForm fieldset legend, .woocommerce-billing-fields h3, .woocommerce-additionbh-fields h3, h3#order_review_heading {
    font-size: var(--bloghub-sub-title-size);
    font-weight: 600;
    text-transform: capitalize;
    margin: 0px 0 20px;
    display: inline-block;
    width: 100%;
}
.woocommerce form .form-row.woocommerce-validated .select2-container, .woocommerce form .form-row.woocommerce-validated input.input-text, .woocommerce form .form-row.woocommerce-validated select {
    border-color: var(--bloghub-primary-color);
}
body.woocommerce-checkout .woocommerce form>div>div, .woocommerce .col2-set .col-2, .woocommerce-page .col2-set .col-2 {
    width: 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    float: none;
    width: 100%;
    padding: 0;
}
#add_payment_method #payment, .woocommerce-cart #payment, .woocommerce-checkout #payment {
    background: transparent;
    border-radius: 0;
}
#add_payment_method #payment ul.payment_methods, .woocommerce-cart #payment ul.payment_methods, .woocommerce-checkout #payment ul.payment_methods {
    padding: 0 0 30px;
    border-bottom: none;
}
#add_payment_method #payment div.form-row, .woocommerce-cart #payment div.form-row, .woocommerce-checkout #payment div.form-row {
    padding: 0;
}
.woocommerce-privacy-policy-text {
    margin: 13px 0 34px;
}
.woocommerce table.shop_table td {
    color: var(--bloghub-title-color);
    font-weight: 500;
}
.woocommerce-privacy-policy-text p {
    margin: 0;
}
.woocommerce-additionbh-fields {
    margin: 0 0 45px;
    display: inline-block;
    width: 100%;
}
body .woocommerce-additionbh-fields .woocommerce-additionbh-fields__field-wrapper p#order_comments_field {
    margin: 0;
}
body .woocommerce-additionbh-fields .woocommerce-additionbh-fields__field-wrapper p#order_comments_field textarea#order_comments {
    height: 150px;
    padding: 20px;
}
.woocommerce-additionbh-fields h3 {
    margin: 0 0 15px;
}
.woocommerce-billing-fields__field-wrapper {
    margin: 0 0 45px;
}
.woocommerce-billing-fields h3 {
    margin: 0 0 15px;
}
.showcoupon {
    color: var(--bloghub-primary-color);
    font-weight: 500;
}
.woocommerce form.checkout_coupon {
    padding: 26px 30px 24px;
    margin: 0 0 45px;
    text-align: left;
    border-radius: var(--bloghub-radius0);
    background: var(--bloghub-secondary-bg);
    box-shadow: var(--bloghub-shadow);
    border: none;
    display: flex;
    flex-wrap: wrap;
}
.woocommerce form.checkout_coupon p, .woocommerce form.login p, .woocommerce form.register p {
    padding: 0;
}
.woocommerce form.checkout_coupon p button.button {
   border-radius: 0px 30px 30px 0px;
}
.woocommerce-checkout .woocommerce form.checkout_coupon .form-row.form-row-first input#coupon_code {
   border-radius: 30px 0px 0px 30px;
}
/* Login */
.woocommerce form.login {
    padding: 21px 30px 30px;
    margin: 0 0 45px;
    text-align: left;
    border-radius: var(--bloghub-radius0);
    background: var(--bloghub-secondary-bg);
    box-shadow: var(--bloghub-shadow);
    border: none;
    display: flex;
    flex-wrap: wrap;
}
.woocommerce form.login>p, .woocommerce form.register>p {
    width: 100%;
    margin: 0 0 21px;
    padding: 0;
}
.woocommerce form.login .password-input, .woocommerce form.register .password-input {
    width: 100%;
}
.bh-login-bottom {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    margin: 7px 0 26px;
    color: var(--bloghub-title-color);
}
.bh-login-bottom a {
    color: var(--bloghub-title-color);
}
.bh-login-bottom a:hover {
    color: var(--bloghub-primary-color);
}
.bh-login-bottom>span {
    margin: 0 0 10px;
}
.woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme {
    margin: 0;
    cursor: pointer;
}
.bh-remember-pswrd input {
    display: none 
}
.bh-remember-pswrd span {
    margin: 0;
    position: relative;
    padding-left: 30px;
    cursor: pointer 
}
.bh-remember-pswrd span:before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0;
    width: 18px;
    height: 18px;
    border: 1px solid var(--bloghub-border-color);
    border-radius: 2px;
    -webkit-transition: var(--bloghub-transition);
    -moz-transition: var(--bloghub-transition);
    -ms-transition: var(--bloghub-transition);
    -o-transition: var(--bloghub-transition);
    transition: var(--bloghub-transition);
}
.bh-remember-pswrd span:after {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    width: 10px;
    height: 6px;
    border-left: 2px solid var(--bloghub-main-bg);
    border-bottom: 2px solid var(--bloghub-main-bg);
    -webkit-transform: rotate(-20deg);
    -moz-transform: rotate(-20deg);
    -ms-transform: rotate(-20deg);
    transform: rotate(-20deg);
    -webkit-transition: var(--bloghub-transition);
    -moz-transition: var(--bloghub-transition);
    -ms-transition: var(--bloghub-transition);
    -o-transition: var(--bloghub-transition);
    transition: var(--bloghub-transition);
    opacity: 0;
}
.bh-remember-pswrd input:checked~span:after {
    opacity: 1;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg) 
}
.bh-remember-pswrd input:checked~span:before {
    background-color: var(--bloghub-title-color);
    border: 1px solid transparent 
}
.bh-remember-pswrd input:checked~span {
    color: var(--bloghub-title-color);
}
pre {
    font-size: 14px;
    color: var(--bloghub-white);
    background: var(--bloghub-primary-color);
}
pre {
    background: #031a2a;
}
.wp-block-table .has-fixed-layout {
    background: var(--bloghub-page-title-bg);
}
.has-fixed-layout td {
    color: var(--bloghub-title-color);
}
.wp-block-table.is-style-stripes {
    border-bottom: 1px solid var(--bloghub-border-color);
}
/* Register Page */
.woocommerce form.register {
    padding: 26px 30px 21px;
    margin: 0 0 45px;
    text-align: left;
    border-radius: var(--bloghub-radius0);
    background: var(--bloghub-main-bg);
    background: var(--bloghub-secondary-bg);
    box-shadow: var(--bloghub-shadow);
    border: none;
    display: flex;
    flex-wrap: wrap;
}
.woocommerce form .show-password-input, .woocommerce-page form .show-password-input {
    right: 20px;
    top: 14px;
}
.woocommerce form.register .woocommerce-privacy-policy-text~.woocommerce-form-row.form-row {
    margin: 0 0 9px;
}
/*Lost Password*/
.woocommerce .woocommerce-ResetPassword {
    padding: 25px 30px 30px;
    margin: 0 0 0px;
    text-align: left;
    border-radius: var(--bloghub-radius0);
    background: var(--bloghub-secondary-bg);
    box-shadow: var(--bloghub-shadow);
    border: none;
    display: flex;
    flex-wrap: wrap;
}
.woocommerce .woocommerce-ResetPassword>p {
    width: 100%;
    margin: 0 0 4px;
    padding: 0;
}
.woocommerce .woocommerce-ResetPassword>.woocommerce-form-row.woocommerce-form-row--first {
    margin: 0 0 40px;
}
/* My Account */
body.woocommerce-account .woocommerce nav.woocommerce-MyAccount-navigation {
    padding: 0 15px;
}
body.woocommerce-account .woocommerce nav.woocommerce-MyAccount-navigation ul {
    padding: 0;
    list-style: none;
}
nav.woocommerce-MyAccount-navigation ul li a {
    margin-bottom: 20px;
    border: 1px solid var(--bloghub-border-color);
    padding: 10px 20px;
    border-radius: var(--bloghub-radius0);
    display: inline-block;
    width: 100%;
    color: var(--bloghub-title-color);
    font-weight: 500;
}
nav.woocommerce-MyAccount-navigation ul li a:hover, nav.woocommerce-MyAccount-navigation ul li.is-active a {
    color: var(--bloghub-primary-color);
    border-color: var(--bloghub-primary-color);
}
form.woocommerce-EditAccountForm fieldset legend, .woocommerce-billing-fields h3, .woocommerce-additionbh-fields h3, .woocommerce-account .addresses .title h3, h3#order_review_heading, .woocommerce-additional-fields h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--bloghub-title-color);
    margin-bottom: 15px;
    text-transform: uppercase;
}
.woocommerce-account .woocommerce-MyAccount-content h3 {
    margin-bottom: 20px;
}
.woocommerce-account .woocommerce span.password-input {
    width: 100%;
}
.woocommerce table.my_account_orders th {
    padding: 12px 10px;
}
.woocommerce table.shop_table td a.button {
    color: var(--bloghub-main-bg);
}
.woocommerce .woocommerce-error .button, .woocommerce .woocommerce-info .button, .woocommerce .woocommerce-message .button, .woocommerce-page .woocommerce-error .button, .woocommerce-page .woocommerce-info .button, .woocommerce-page .woocommerce-message .button, body .woocommerce-noreviews a, body .no-comments a {
    min-width: unset !important;
    background-color: transparent !important;
    background: transparent !important;
    color: var(--bloghub-primary-color) !important;
    text-transform: capitalize !important;
    outline: none !important;
    padding: 0 !important;
    cursor: pointer !important;
    font-size: var(--bloghub-font-size) !important;
    border-radius: 0 !important;
    min-height: unset !important;
    line-height: 1.2;
    box-shadow: none !important;
}
.woocommerce .woocommerce-error .button:hover, .woocommerce .woocommerce-info .button:hover, .woocommerce .woocommerce-message .button:hover, .woocommerce-page .woocommerce-error .button:hover, .woocommerce-page .woocommerce-info .button:hover, .woocommerce-page .woocommerce-message .button:hover, body .woocommerce-noreviews a:hover, body .no-comments a:hover {
    color: var(--bloghub-title-color) !important;
    background: transparent !important;
}
.woocommerce .woocommerce-error .button:before, .woocommerce .woocommerce-info .button:before, .woocommerce .woocommerce-message .button:before, .woocommerce-page .woocommerce-error .button:before, .woocommerce-page .woocommerce-info .button:before, .woocommerce-page .woocommerce-message .button:before, body .woocommerce-noreviews a:before, body .no-comments a:before {
    content: unset !important;
}
.woocommerce-account .woocommerce-MyAccount-content button.button {
    margin-top: 30px;
}
/* Blog Thumbs Page CSS */
.bh-blog-thumb-page-wrapper {
    padding: 80px 0 23px;
}
.bh-blog-thumb-page-wrapper .bh-blog-img img {
    max-height: 400px;
    min-width: 100%;
}
#yith-quick-view-modal .yith-wcqv-wrapper {
    max-height: 400px;
}
.bh-product-hover ul li span {
    margin: 0 0 0 4px;
}
.bloghub-demo .widget.widget_categories ul {
    margin: 0;
}
/* Swiper Bullets */
.bh-bullets {
    left: 0;
    bottom: 40px;
    width: 100%;
    position: unset;
    margin: 31px 0 0;
}
.bh-bullets .swiper-pagination-bullet {
    height: 9px;
    width: 9px;
    background-color: var(--bloghub-main-bg);
    border-radius: 100%;
    margin: 0;
    cursor: pointer;
    opacity: 1;
}
.bh-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--bloghub-primary-color);
}
.bh-bullets span {
    margin: 0 8px;
}
.bh-swiper-nav>div {
    width: 60px;
    height: 50px;
    background: var(--bloghub-secondary-bg);
    line-height: 50px;
    text-align: center;
    position: relative;
}
.bh-swiper-nav>div:hover {
    background: var(--bloghub-primary-color);
}
.bh-swiper-nav>div svg {
    height: 12px;
    margin: 0 0 3px;
    fill: var(--bloghub-white);
}
.bh-swiper-nav>div.bh-nav-prev:after, .bh-swiper-nav>div.bh-nav-prev:before {
    content: '';
    position: absolute;
    left: 100%;
    border-top: 25px solid transparent;
    border-bottom: 25px solid transparent;
    border-left: 15px solid var(--bloghub-secondary-bg);
}
.bh-swiper-nav>div.bh-nav-prev:before {
    left: auto;
    right: 100%;
    border-left: none;
    border-right: 15px solid var(--bloghub-secondary-bg);
}
.bh-swiper-nav>div.bh-nav-prev:hover {
    background: var(--bloghub-primary-color);
}
.bh-swiper-nav>div.bh-nav-prev:hover:before {
    border-right-color: var(--bloghub-primary-color);
}
.bh-swiper-nav>div.bh-nav-prev:hover:after {
    border-left-color: var(--bloghub-primary-color);
}
.bh-swiper-nav>div.bh-nav-next:after, .bh-swiper-nav>div.bh-nav-next:before {
    content: '';
    position: absolute;
    left: 100%;
    border-top: 25px solid transparent;
    border-bottom: 25px solid transparent;
    border-left: 15px solid var(--bloghub-secondary-bg);
}
.bh-swiper-nav>div.bh-nav-next:before {
    left: auto;
    right: 100%;
    border-left: none;
    border-right: 15px solid var(--bloghub-secondary-bg);
}
.bh-swiper-nav>div.bh-nav-next:hover {
    background: var(--bloghub-primary-color);
}
.bh-swiper-nav>div.bh-nav-next:hover:before {
    border-right-color: var(--bloghub-primary-color);
}
.bh-swiper-nav>div.bh-nav-next:hover:after {
    border-left-color: var(--bloghub-primary-color);
}
.bh-swiper-nav>div, .bh-swiper-nav>div * {
    -webkit-transition: var(--bloghub-transition);
    -moz-transition: var(--bloghub-transition);
    -ms-transition: var(--bloghub-transition);
    -o-transition: var(--bloghub-transition);
    transition: var(--bloghub-transition);
}
.bh-swiper-nav>div.bh-nav-prev b {
    margin: 0 0 0 5px;
}
.bh-swiper-nav>div.bh-nav-next b {
    margin: 0 5px 0 0;
}
.bh-swiper-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: absolute;
    bottom: 31px;
    top: 0;
    margin: auto;
    left: -100px;
    right: -100px;
    align-items: center;
}
/* Link CSS */
.bh-link {
    text-transform: uppercase;
    font-size: var(--bloghub-font14);
    color: var(--bloghub-primary-color) !important;
    letter-spacing: 0.6px;
    padding: 0 0 3px;
    position: relative;
    display: inline-block;
}
.bh-link:before {
    content: "";
    position: absolute;
    height: 1px;
    background: var(--bloghub-primary-color);
    bottom: 0;
    left: 0;
    right: 0;
}
.bh-link:after {
    content: "";
    position: absolute;
    height: 1px;
    background: var(--bloghub-white);
    bottom: 0;
    left: 0;
    right: 0;
    width: 0;
    z-index: 1;
}
.bh-link:hover:after {
    width: 100%;
}
.bh-link:hover:after, .bh-link:hover, .bh-link:after, .bh-link {
    -webkit-transition: var(--bloghub-transition);
    -moz-transition: var(--bloghub-transition);
    -ms-transition: var(--bloghub-transition);
    -o-transition: var(--bloghub-transition);
    transition: var(--bloghub-transition);
}
.bh-link:hover {
    color: var(--bloghub-white) !important;
}
/* Demo Footer */
.bh-footer-widget .menu {
    padding: 0;
}
.bh-footer-widget .menu li {
    list-style: none;
    position: relative;
    padding: 0 0 0 15px;
}
.bh-footer-widget .menu li:last-child {
    margin: 0;
}
.bh-footer-widget .menu li span {
    position: absolute;
    left: 0;
}
/* Footer Spcer */
.bh-foooter-spacer {
    padding: 0;
}
.bh-foooter-spacer .bh-copyright-wrapper {
    margin: 0;
}
/* Unit Content CHANGES */
.hide {
    display: none !important;
}
body:not(.bloghub-demo) .bh-single-blog {
    padding: 80px 0 23px;
}
body:not(.bloghub-demo) .bh-main-post-wrapper {
    padding: 80px 0 30px;
}
body:not(.bloghub-demo) .bh-main-page-container {
    padding: 80px 0 23px;
}
/* Widgets */
.wp-block-categories li, .wp-block-archives li, .widget_nav_menu ul li, .widget_pages ul li, .widget_archive ul li, .widget_categories ul li {
    border-bottom: 1px solid var(--bloghub-border-color);
    font-weight: 600;
    padding-bottom: 12px;
}
.wp-block-categories li:last-child, .wp-block-archives li:last-child, .widget_nav_menu ul li:last-child, .widget_pages ul li:last-child, .widget_archive ul li:last-child, .widget_categories ul li:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}
body:not(.bloghub-demo) .bh-footer-wrapper .bh-footer-widgets {
    margin-bottom: 23px;
}
body:not(.bloghub-demo) .bh-footer-wrapper .widget:last-of-type {
    margin-top: 0;
}
.woocommerce table.shop_table thead th, table thead th, table th {
    color: var(--bloghub-white);
    background: var(--bloghub-primary-color);
}
code {
    line-height: 1.8em;
    color: var(--bloghub-white);
    background-color: var(--bloghub-primary-color);
    padding: 3px 8px;
    border-radius: 5px;
}
.wp-block-code code {
    background: transparent;
}
p.wp-block-tag-cloud {
    display: flex;
    flex-wrap: wrap;
}
.calendar_wrap nav.wp-calendar-nav {
    font-weight: 500;
}
.bh-categories-tags .cat-links, .bh-categories-tags .tags-links {
    display: flex;
    flex-wrap: wrap;
}
.bh-categories-tags .tags-links .bh-blog-tags {
    margin: 5px 15px 0 0;
}
.bh-categories-tags .cat-links .bh-blog-Posted {
    margin: 6px 15px 0 0;
}
h3#reply-title.comment-reply-title small a {
    font-family: var(--bloghub-globbh-family);
    text-transform: capitalize;
}
.wp-block-latest-comments__comment-excerpt p {
    font-size: 14px;
}
.nice-select .current {
    white-space: nowrap;
    width: 100%;
    overflow: hidden;
    padding-right: 20px;
    display: inline-block;
}
table th a {
    color: var(--bloghub-white);
}
.wp-block-table td, .wp-block-table th {
    border-color: var(--bloghub-border-color);
}
.woocommerce-cart .woocommerce table.shop_table a.remove {
    line-height: 20px;
    padding: 5px 0 0;
}
.woocommerce table.shop_attributes tr:nth-child(even) th {
    background: var(--bloghub-primary-color);
}
.bloghub-demo .widget.widget_tag_cloud .tagcloud a, .bloghub-demo .wp-block-tag-cloud .tag-cloud-link, .bloghub-demo .woocommerce.widget_product_tag_cloud .tagcloud .tag-cloud-link {
    font-size: 14px !important;
}
.bh-faq-wrapper .card button.btn.btn-link:not(.collapsed) {
    color: var(--bloghub-primary-color);
}
.woocommerce table.cart td.actions .coupon input#coupon_code {
    border-color: var(--bloghub-border-color);
}
.woocommerce .cart-collaterals .cart_totals th, .woocommerce-page .cart-collaterals .cart_totals th {
    background: transparent;
    color: var(--bloghub-title-color);
}
.woocommerce-checkout .woocommerce table.shop_table tfoot th {
    color: var(--bloghub-title-color);
    background: transparent;
}
.woocommerce-checkout .woocommerce table.shop_table tfoot th {
    color: var(--bloghub-primary-color);
}
.woocommerce-checkout .woocommerce table.shop_table tfoot th {
    border-color: var(--bloghub-border-color);
}
.woocommerce #payment #place_order, .woocommerce-page #payment #place_order {
    border-radius: 30px;
}
/* Twitter Widget Style */
.bh-footer-content {
    display: flex;
    flex-wrap: wrap;
}
.bh-footer-content .bh-footer-icon {
    width: 20px;
}
.bh-footer-content .bh-footer-text {
    width: calc(100% - 20px);
    padding-left: 10px;
}
.bh-footer-content .bh-footer-icon svg {
    height: 12px;
    fill: var(--bloghub-primary-color);
}
.widget-twitter-feed ul li {
    padding: 0;
}
.widget-twitter-feed ul li:before {
    content: unset;
}
.bh-footer-content .bh-footer-text p {
    margin: 0;
}
.widget-twitter-feed ul li h6 a {
    display: inline-block;
    width: 100%;
    color: var(--bloghub-primary-color);
    margin: 10px 0 10px;
    text-transform: lowercase;
}
.bh-footer-content .bh-footer-text .bh-date-footer {
    font-size: 14px;
    color: var(--bloghub-primary-color);
}
/* Select 2 */
.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border: 0;
    content: '';
    display: block;
    height: 5px;
    margin-top: -6px;
    pointer-events: none;
    position: absolute;
    right: 12px;
    top: 50%;
    -webkit-transform-origin: 66% 66%;
    -ms-transform-origin: 66% 66%;
    transform-origin: 66% 66%;
    -webkit-transform: rotate( 45deg);
    -ms-transform: rotate(45deg);
    transform: rotate( 45deg);
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    width: 5px;
    right: 22px;
    width: 8px;
    height: 8px;
    border-bottom: 2px solid var(--bloghub-title-color);
    border-right: 2px solid var(--bloghub-title-color);
}
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: var(--bloghub-title-color);
    border-width: 2px;
    -webkit-transform: rotate( -135deg);
    -ms-transform: rotate(-135deg);
    transform: rotate( -135deg);
}
.widget_categories .nice-select ul li:last-child.option {
    padding-bottom: 10px;
}
.wp-block-group.has-background~.more-link.bh-btn {
    margin-top: 0;
    margin-bottom: 20px;
}
blockquote a code {
    color: var(--bloghub-white);
    background-color: var(--bloghub-primary-color);
}
.bloghub-demo .widget_tag_cloud {
    margin-bottom: 70px;
}
.bh-footer-widget .menu li a span svg {

    fill: var(--bloghub-primary-color);
}
.bh-footer-widget .menu li span {
    position: absolute;
    left: 0;
    height: 5px;
    width: 5px;
    border-radius: 0%;
    background: var(--bloghub-primary-color);
    top: 8px;
}
.bh-sidebar-wrapper .woocommerce-mini-cart.cart_list li.woocommerce-mini-cart-item .remove.remove_from_cart_button {
    top: 20px;
}
.bh-sidebar-wrapper .woocommerce-mini-cart.cart_list li.woocommerce-mini-cart-item img.attachment-woocommerce_thumbnail {
    margin-top: 2px;
}
.bh-sidebar-wrapper .price_slider_amount {
    margin-bottom: 29px;
}
.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item {
    padding: 0 0 1px;
    list-style: none;
    border-bottom: 1px solid var(--bloghub-border-color);
    font-weight: 600;
    padding-bottom: 12px;
    padding-left: 18px;
}
.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item:last-of-type {
    border-bottom: 0;
    padding-bottom: 0px;
}
.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item span.count {
    float: right;
    color: var(--bloghub-primary-color);
}
.widget .product-categories li {
    border-bottom: 1px solid var(--bloghub-border-color);
    font-weight: 600;
    padding-bottom: 12px;
    padding-left: 18px;
}
.widget .product-categories li:last-of-type {
    border-bottom: 0;
    padding-bottom: 0px;
}
body .widget.widget_archive ul:not(.list) li, body .widget.widget_categories ul:not(.list) li {
    color: var(--bloghub-primary-color);
}
.widget-list-count, .woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item span.count {
    display: inline-block;
    color: var(--bloghub-link-color);
    font-weight: 500;
    min-height: 30px;
    text-align: center;
}
.widget-list-count:before, .woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item span.count:before {
    content: "(";
}
.widget-list-count:after, .woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item span.count:after {
    content: ")";
}
.entry-content .wp-block-archives-list li .widget-list-count {
    float: right;
}
/* Widget Box Start */
.bh-sidebar-wrapper .widget {
    background: var(--bloghub-secondary-bg);
    margin: 0 0 30px;
    padding: 39px 30px 40px;
    border: 1px solid var(--bloghub-widget-border);
    border-radius: 6px;
}
body .bh-sidebar-wrapper .widget.widget_archive .nice-select {
    margin-bottom: 0;
}
.bh-sidebar-wrapper .widget.widget_calendar {
    padding-bottom: 21px;
}
.bh-sidebar-wrapper .widget.widget_categories>ul {
    margin: 0;
}
.bh-sidebar-wrapper .widget.widget_categories .nice-select {
    margin-bottom: 0;
}
.bh-sidebar-wrapper .widget.widget_pages {
    padding-bottom: 33px;
}
.bh-sidebar-wrapper .widget.widget_meta {
    padding-bottom: 33px;
}
.bh-sidebar-wrapper .widget.widget_recent_entries {
    padding-bottom: 33px;
}
.bh-sidebar-wrapper .widget.widget_rss {
    padding-bottom: 33px;
}
.bh-sidebar-wrapper .widget.widget_recent_comments ul li:last-of-type {
    margin-bottom: 23px;
}
.bh-sidebar-wrapper .widget.widget_search {
    padding: 40px 30px 40px;
}
body .bh-sidebar-wrapper .widget.widget_text .nice-select {
    margin-bottom: 0;
}
.bh-sidebar-wrapper .widget_tag_cloud {
    padding-bottom: 30px;
}
.bh-sidebar-wrapper .widget.widget_nav_menu {
    padding-bottom: 33px;
}
/* Woo Widgets */
body .bh-sidebar-wrapper .woocommerce-mini-cart.cart_list li.woocommerce-mini-cart-item>a:not(.remove) {
    padding-left: 20px;
}
.bh-sidebar-wrapper .widget.widget_shopping_cart {
    padding-bottom: 18px;
}
.bh-sidebar-wrapper .widget.widget_price_filter {
    padding-bottom: 11px;
}
.bh-sidebar-wrapper .widget.widget_product_tag_cloud {
    padding: 35px 30px 30px;
}
.bh-sidebar-wrapper .widget.widget_products {
    padding-bottom: 19px;
}
.bh-sidebar-wrapper .widget.widget_product_categories {
    padding-bottom: 34px;
}
/* Cat sub menu spacing */
body .widget.widget_categories .children {
    margin-top: 12px;
}
body .widget.widget_categories .children:last-of-type {
    margin-bottom: 0;
}
.widget .nice-select .list li:last-child, .widget .nice-select .list li:last-child {
    padding-bottom: 10px;
}
.woocommerce .bh-sidebar-wrapper .widget:last-of-type {
    margin-bottom: 10px;
}
/* FOOTER SIDEBAR WIDGET*/
/* RECENT POST*/
.bh-sidebar-wrapper .bh-recent-post-widgets.widget {
    padding: 39px 30px 0px;
}
.bh-sidebar-wrapper .bh-recent-post-widgets.widget .widget-title {
    font-size: var(--bloghub-widgets-title-size);
    font-weight: 700;
    color: var(--bloghub-title-color);
    margin: 0px 0 25px;
    position: relative;
    padding: 0 0 12px;
    display: inline-block;
}
.bh-sidebar-wrapper .bh-recent-post-widgets.widget .widget-title:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    background: var(--bloghub-primary-color);
    width: 85%;
    margin: 0;
    top: unset;
}
/* NEWSLETTER INFO */
.bh-sidebar-wrapper .widget_bloghub-widget-newslatter {
    background: #fcfcfc;
    margin: 0 0 30px;
    padding: 35px 30px 40px;
    border: 1px solid var(--bloghub-border-color);
    border-radius: 6px;
}
.bh-sidebar-wrapper .widget_bloghub-widget-newslatter .bh-newsletter-title {
    font-size: var(--bloghub-widgets-title-size);
    font-weight: 700;
    color: var(--bloghub-title-color);
    margin: 0px 0 25px;
    position: relative;
    padding: 0 0 12px;
    display: inline-block;
}
.bh-sidebar-wrapper .widget_bloghub-widget-newslatter .bh-newsletter-title:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    background: var(--bloghub-primary-color);
    width: 85%;
    margin: 0;
    top: unset;
}
.bh-sidebar-wrapper .widget_bloghub-widget-newslatter .bh-footer-newsletter-inner input {
    background: var(--bloghub-input-bg);
    border: 1px solid var(--bloghub-border-color);
}
/* FOOTER SIDEBAR WIDGET*/
/**** 5. Demo CSS Start ****/
/* Blog Thumb CSS Start */
.bh-blog-wrapper {
    padding-bottom: 50px;
}
.bh-blog-wrapper .row {
    justify-content: center;
}
.blog-style-one p {
    margin-bottom: 18px;
}
.bh-blog-img {
    display: inline-block;
    width: 100%;
}
.bh-blog-img img {
    max-height: 240px;
    width: 100%;
    min-width: 240px;
    object-fit: cover;
}
.bh-blog-data ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}
.bh-sm-icon svg {
    fill: var(--bloghub-primary-color);
    height: 15px;
}
.bh-blog-data ul li .bh-sm-icon {
    margin: 0 3px 0 0;
    vertical-align: top;
}
.bh-blog-single-imgae {
    position: relative;
}
.bh-blog-title {
    font-size: var(--bloghub-sub-title-size);
    font-weight: 600;
    color: var(--bloghub-title-color);
    line-height: 1.5;
    margin: 0 0 6px;
}
.bh-blog-thumb-page-wrapper .bh-blog-details .bh-blog-title {
    font-size: var(--bloghub-sub-title-size);
    margin: 0 0 5px;
}
.bh-blog-wrapper .bh-blog-title {
    font-size: var(--bloghub-widgets-title-size);
    margin: 0px 0 7px;
}
.bh-blog-data {
    margin: 7px 0 4px;
}
.bh-blog-thumb-page-wrapper .bh-blog-details .bh-blog-data {
    margin: 10px 0 20px;
}
.bh-blog-wrapper .bh-blog-data {
    margin: 9px 0 15px;
}
.bh-blog-columns .bh-blog-thumb-section .bh-blog-details .bh-read-more-link {
    margin-top: 10px;
}
.bh-blog-data a {
    font-weight: 500;
    text-transform: capitalize;
}
.bh-read-more-link, .bh-read-more-link:visited, .bh-read-more-link:hover, .bh-read-more-link:focus {
    color: var(--bloghub-primary-color);
}
.edit-btn-read-more-wrap .bh-read-more-link .bh-arrow {
    margin-bottom: 1px;
}
.bh-blog-details .bh-read-more-link:visited {
    color: var(--bloghub-primary-color);
}
.bh-blog-single-data {
    width: 100%;
}
.bh-blog-img {
    position: relative;
    display: inline-block;
    width: 100%;
}
.bh-blog-title:hover {
    color: var(--bloghub-primary-color);
}
.bh-blog-title:hover, .bh-blog-title {
    -webkit-transition: var(--bloghub-transition);
    -moz-transition: var(--bloghub-transition);
    -ms-transition: var(--bloghub-transition);
    -o-transition: var(--bloghub-transition);
    transition: var(--bloghub-transition);
}
.bh-blog-img-inner {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0 0 24px;
}
/* Effect Style One */
.bh-effect-style1, .bh-effect-style1-inner {
    position: relative;
}
.bh-effect-style1-inner:before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    background: #ffffff;
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.bh-effect-style1-inner:after {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    background: #ffffff;
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transform-origin: 90%;
    -ms-transform-origin: 90%;
    transform-origin: 90%;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.bh-effect-style1:hover .bh-effect-style1-inner:before {
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    opacity: 0.4;
}
.bh-effect-style1:hover .bh-effect-style1-inner:after {
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    opacity: 0.4;
}
/* Effect Style 2*/
.bh-effect-style2, .bh-effect-style2-inner {
    position: relative;
}
.bh-effect-style2-inner:before {
    content: "";
    position: absolute;
    left: -50%;
    top: -50%;
    width: 200%;
    height: 200%;
    background-color: var(--bloghub-primary-color);
    opacity: 0;
    border-radius: var(--bloghub-circle-radius);
    -webkit-transform: scale(.2);
    transform: scale(.2);
    transition: all .1s ease-out;
}
.bh-effect-style2:hover .bh-effect-style2-inner:before {
    opacity: .3;
    -webkit-transform: scale(1);
    transform: scale(1);
    transition: all .3s ease-in;
}
/* Effect Style 3*/
.bh-effect-style3, .bh-effect-style3-inner {
    position: relative;
}
.bh-effect-style3-inner:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.7);
    bottom: 0;
    width: 150%;
    height: 0%;
    transform: rotate( 10deg) translate(-30px, 80px);
}
.bh-effect-style3:hover .bh-effect-style3-inner:after {
    height: 100%;
    opacity: 0;
    transform: rotate( 0deg) translate(0px, 0px);
    -webkit-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
}
/* Effect Style 4*/
.bloghub-newblog-style-first .bh-blog-thumb-section.bh-blog-thumb-style5 .bh-blog-info-content .bh-blog-title {
    font-weight: 600;
}
.bloghub-newblog-style-first .bh-blog-thumb-section.bh-blog-thumb-style5 .bh-blog-info-content .bh-blog-title:hover {
    color: var(--bloghub-primary-color);
}
.widgets-shortcode.wigets-recent-post.widgets-shortcode-style-three .widgets-shortcode-inner {
    padding-bottom: 14px;
}
.bh-news-style2-wrap .bh-blog-thub-text p {
    margin: 0;
}
.bloghub-new-blog-style-wrapper .bh-blog-thumb-section.bh-blog-thumb-style-two.bh-blog-thub-horizontal:hover .bh-blog-img img, .bloghub-new-blog-style-wrapper .bh-blog-thumb-section.bh-blog-thumb-style-two.bh-blog-thub-horizontal .bh-blog-img img, .bloghub-new-blog-style-wrapper .bh-blog-thumb-section.bh-blog-thumb-style5 .bh-blog-img img, .bloghub-new-blog-style-wrapper .bh-blog-thumb-section.bh-blog-thumb-style5, .bloghub-new-blog-style-wrapper .bh-blog-thumb-section.bh-blog-thumb-style-two, .bloghub-new-blog-style-wrapper .bh-blog-thumb-section.bh-blog-thumb-style-two:hover .bh-blog-image img, .bloghub-new-blog-style-wrapper .bh-blog-thumb-section.bh-blog-thumb-style-two .bh-blog-image img, .bloghub-new-blog-style-wrapper .bh-blog-thumb-section.bh-blog-thumb-style5 img, .bloghub-new-blog-style-wrapper .bh-blog-thumb-section.bh-blog-thumb-style5 .bh-blog-image img, .bloghub-new-blog-style-wrapper .bh-blog-thumb-section.bh-blog-thumb-style5:hover, .bloghub-new-blog-style-wrapper .bh-blog-thumb-section.bh-blog-thumb-style5 img, .bloghub-new-blog-style-wrapper .bh-blog-thumb-section.bh-blog-thumb-style5:hover img {
    -webkit-transition: var(--bloghub-transition);
    -moz-transition: var(--bloghub-transition);
    -ms-transition: var(--bloghub-transition);
    -o-transition: var(--bloghub-transition);
    transition: var(--bloghub-transition);
}
.bloghub-new-blog-style-wrapper .bh-blog-thumb-section.bh-blog-thumb-style-two.bh-blog-thub-horizontal .bh-blog-img, .bloghub-new-blog-style-wrapper .bh-blog-thumb-section.bh-blog-thumb-style-two, .bloghub-new-blog-style-wrapper .bh-blog-thumb-section.bh-blog-thumb-style5 .bh-blog-img, .bloghub-new-blog-style-wrapper .bh-blog-thumb-section.bh-blog-thumb-style-two .bh-blog-image, .bloghub-new-blog-style-wrapper .bh-blog-thumb-section.bh-blog-thumb-style5 .bh-blog-image {
    overflow:hidden;
}
.bloghub-new-blog-style-wrapper .bh-blog-thumb-section.bh-blog-thumb-style-two.bh-blog-thub-horizontal:hover .bh-blog-img img, .bloghub-new-blog-style-wrapper .bh-blog-thumb-section.bh-blog-thumb-style-two:hover .bh-blog-image img, .bloghub-new-blog-style-wrapper .bh-blog-thumb-section.bh-blog-thumb-style5:hover .bh-blog-img img, .bloghub-new-blog-style-wrapper .bh-blog-thumb-section.bh-blog-thumb-style5:hover .bh-blog-image img {
    transform: scale(1.03);
}
/* Blog Overlay */
.bh-blog-image {
    position: relative;
}
.bh-blog-image:before {
    background: rgb(0 0 0 / 36%);
    background: linear-gradient( 180deg, rgba(255, 255, 255, 0) 30%, rgba(33, 37, 41, 0.86) 100%);
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
}
.bh-blog-info-content {
    z-index: 2;
}
.bh-blog-image a {
    width: 100%;
}
.bh-banner-grid-news-row .bh-blog-category {
    text-transform: uppercase !important;
    font-size: 10px;
}
.bh-recent-post-widgets ul li {
    margin: 0 0 10px;
    padding: 0;
}
.bh-recent-post-widgets ul li:before {
    content: unset;
}
.bh-recent-post-widgets ul li:last-child {
    margin: 0 0 30px;
}
.bh-blog-thumb-section {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
    border: 1px solid var(--bloghub-border-color);
    padding: 0;
    position: relative;
}
.bh-blog-thumb-section:hover {
    border-color: var(--bloghub-primary-color);
}
.bh-blog-thumb-section:hover .bh-blog-img-inner img {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
}
.bh-blog-thumb-section:hover, .bh-blog-thumb-section, .bh-blog-thumb-section:hover .bh-blog-img-inner img, .bh-blog-thumb-section .bh-blog-img-inner img {
    -webkit-transition: var(--bloghub-transition);
    -moz-transition: var(--bloghub-transition);
    -ms-transition: var(--bloghub-transition);
    -o-transition: var(--bloghub-transition);
    transition: var(--bloghub-transition);
}
.bh-blog-thumb-page-wrapper .bh-blog-details p {
    margin-bottom: 8px;
}
.bh-product-slider-wrapper .bh-bullets {
    margin: 2px 0 36px;
}
.bh-product-slider-wrapper .bh-swiper-nav {
    bottom: -31px;
}
.bh-product-slider-wrapper .bh-swiper-nav {
    display: none;
}
#yith-quick-view-modal .yith-wcqv-main {
    background: var(--bloghub-secondary-bg);
}
.bh-blog-data a span {
    font-weight: 700;
}
.bh-blog-data a:hover span {
    color: var(--bloghub-primary-color);
}
.bh-blog-data ul li {
    position: relative;
    padding-left: 20px;
    margin-left: 15px;
}
.bh-blog-data ul li:first-child {
    margin: 0;
    padding: 0;
}
.bh-blog-data ul li:not(:first-child):before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: var(--bloghub-circle-radius);
    background: var(--bloghub-primary-color);
    display: inline-block;
    position: absolute;
    left: 0;
    top: 9px;
}
.bh-blog-thumb-section .bh-blog-details {
    width: 100%;
    padding: 0 20px 17px;
}
.bh-blog-thumb-section {
    border-radius: 6px;
    overflow: hidden;
}
/* Blog Styles */
/* Blog Styles Two Start */
.bh-blog-thumb-section.bh-blog-thumb-style-two {
    border: 0;
    border-radius: 0;
}
.bh-blog-thumb-section.bh-blog-thumb-style-two .bh-blog-thub-text .bh-blog-details {
    width: 100%;
    padding: 0;
}
.bh-blog-thumb-section.bh-blog-thumb-style-two .bh-blog-image {
    margin: 0 0 25px;
}
.bh-blog-thumb-section.bh-blog-thumb-style-two .bh-blog-thub-text .bh-blog-details .bh-meta-icon svg {
    fill: var(--bloghub-primary-color);
}
.bh-blog-thumb-section.bh-blog-thumb-style-two .bh-blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    display: inline-block;
    width: auto;
    text-transform: capitalize;
    background: var(--bloghub-primary-color);
    color: var(--bloghub-white);
    padding: 6px 10px 3px;
    z-index: 1;
}
.bh-blog-thumb-section.is-large img {
    width: 100%;
}
.bh-blog-thumb-section.bh-blog-thumb-style-two .bh-blog-image img {
    min-height: 250px;
    max-height: 250px;
    border-radius: 10px;
}
.bh-blog-thumb-section.bh-blog-banner-style.bh-banner-style-two .bh-blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    display: inline-block;
    width: auto;
    text-transform: capitalize;
    background: var(--bloghub-primary-color);
    color: var(--bloghub-white);
    padding: 6px 15px 3px;
}
.bh-main-magazin-blog-wrapper .bh-blog-thumb-section .bh-blog-title {
    white-space: normal;
    overflow: visible;
}
.bh-main-magazin-blog-wrapper .bh-blog-thumb-section.bh-blog-thumb-style-two .bh-blog-image img, .bh-blog-thumb-section.bh-blog-thumb-style-two .bh-blog-image {
    border-radius: 10px;
    overflow: hidden;
}
.bh-blog-thumb-section.bh-blog-thumb-style-two .bh-blog-meta-data {
    font-weight: 500;
}
.bh-blog-meta-data {
    text-transform: capitalize;
}
.bh-main-magazin-blog-wrapper .bh-video-text {
    display: none;
}
.bh-main-magazin-blog-wrapper .bh-blog-thumb-section:hover .bh-blog-image img, .bh-main-magazin-blog-wrapper .bh-blog-thumb-section:hover .bh-blog-img img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}
.bh-main-magazin-blog-wrapper .bh-blog-thumb-section:hover img, .bh-main-magazin-blog-wrapper .bh-blog-thumb-section img, .bh-main-magazin-blog-wrapper .bh-blog-thumb-section:hover .bh-blog-image img, .bh-main-magazin-blog-wrapper .bh-blog-thumb-section .bh-blog-image img {
    -webkit-transition: var(--bloghub-transition);
    -moz-transition: var(--bloghub-transition);
    -ms-transition: var(--bloghub-transition);
    -o-transition: var(--bloghub-transition);
    transition: var(--bloghub-transition);
}
.bh-main-magazin-blog-wrapper .bh-blog-thumb-section.bh-blog-thumb-style-two .bh-blog-image img, .bh-main-magazin-blog-wrapper .bh-blog-thumb-section.bh-blog-thumb-style-two .bh-blog-image {
    border-radius: 10px;
}
.bh-main-magazin-blog-wrapper .bh-blog-thumb-section.bh-blog-thumb-style-two {
    margin: 0 0 36px;
}
.bh-magazine-style2-wrap {
    padding: 0 15px;
}
.bh-magazine-style3-wrap {
    padding: 0 15px;
}
.bh-main-magazin-blog-wrapper .bh-blog-meta-data li .bh-meta-icon {
    margin-right: 10px;
}
.bh-main-magazin-blog-wrapper .bh-blog-meta-data li .bh-meta-icon svg {
    vertical-align: text-top;
}
.bh-main-magazin-blog-wrapper {
    font-weight: 500;
}
.bloghub-newblog-style-first .bh-blog-thumb-section.bh-blog-thumb-style5.bh-blog-thumb-style5-overlay .bh-blog-category {
    z-index: 1;
    padding-top: 2px;
    font-size: 10px;
}
/* Blog Styles Two End */
.bh-news-style5-wrap .bh-blog-thumb-section.bh-blog-thumb-style-two .bh-blog-image img, .bh-blog-thumb-section.bh-blog-thumb-style-two .bh-blog-image {
    border-radius: 0;
}
/* Blog Horizontal Styles Two Start */
.bh-blog-thumb-section.bh-blog-thumb-style-two.bh-blog-thub-horizontal .bh-blog-img, .bh-blog-thumb-section.bh-blog-thumb-style-two.bh-blog-thub-horizontal .bh-blog-img img {
    border-radius: 10px;
    overflow: hidden;
}
.bh-news-style2-wrap .bh-blog-thumb-section.bh-blog-thumb-style-two .bh-blog-img, .bh-news-style2-wrap .bh-blog-thumb-section.bh-blog-thumb-style-two .bh-blog-img img {
    border-radius: 0;
}
.bh-thumb-style-three-wrapper .bh-blog-thumb-section.bh-blog-thumb-style-three .bh-blog-category {
    text-transform: uppercase;
}
/* Blog Full Styles Two Start */
.bh-blog-thumb-section.bh-blog-thumb-style-two.bh-blog-thub-full img {
    min-height: 400px;
    max-height: 400px;
}
/* Blog Styles Three Start */
.bh-blog-thumb-section.bh-blog-thumb-style-three {
    border: 0;
    border-radius: 0;
}
.bh-blog-thumb-section.bh-blog-thumb-style-three .bh-blog-thub-text .bh-blog-details {
    width: 100%;
    padding: 0;
}
.bh-blog-thumb-section.bh-blog-thumb-style-three .bh-blog-image {
    margin: 0 0 36px;
}
.bh-blog-thumb-section.bh-blog-thumb-style-three .bh-blog-thub-text .bh-blog-details .bh-meta-icon svg {
    fill: var(--bloghub-primary-color);
}
.bh-thumb-style-three-wrapper .bh-blog-thub-text .bh-blog-title {
    white-space: normal;
}
.bh-blog-thumb-section.bh-blog-thumb-style-three .bh-blog-category {
    display: inline-block;
    width: auto;
    text-transform: capitalize;
    background: var(--bloghub-primary-color);
    color: var(--bloghub-white);
    padding: 6px 10px 3px;
    border-radius: 40px;
}
.bh-blog-thumb-section.bh-blog-thumb-style-three .bh-blog-image>.bh-blog-category {
    position: absolute;
    bottom: -15px;
    left: 15px;
    z-index: 2;
}
.bh-blog-thumb-section.bh-blog-thumb-style-three .bh-blog-image img {
    min-height: 280px;
    max-height: 280px;
}
.bh-thumb-style-three-wrapper .bh-video-text {
    display: none;
}
.bh-thumb-style-three-wrapper .bh-blog-category {
    margin: 0;
}
.bh-thumb-style-three-wrapper .bh-blog-meta-data {
    font-weight: 500;
}
.bh-thumb-style-three-wrapper p {
    margin-bottom: 11px;
    font-weight: 500;
}
.bh-thumb-style-three-video-big .bh-blog-thumb-section.bh-blog-thumb-style-three img {
    min-height: 430px;
    max-height: 430px;
}
.bh-thumb-style-three-video-big .bh-blog-thumb-section.bh-blog-thumb-style-three .bh-video-text {
    display: inline-block;
}
.bh-thumb-style-three-video-big .bh-blog-thumb-section.bh-blog-thumb-style-three .popup-youtube {
    width: auto;
}
.bh-thumb-style-three-video-big .bh-blog-thumb-section .bh-blog-thub-text .bh-blog-title {
    font-size: 24px;
}
.bh-blog-thumb-section.bh-blog-thumb-style-three:hover .bh-blog-image:before {
    background: linear-gradient( 180deg, rgba(255, 255, 255, 0) 0%, rgba(33, 37, 41, 0.86) 100%);
}
.bh-blog-thumb-section.bh-blog-thumb-style-three:hover .bh-blog-image:before, .bh-blog-thumb-section.bh-blog-thumb-style-three .bh-blog-image:before, .bh-blog-thumb-section.bh-blog-thumb-style-three:hover, .bh-blog-thumb-section.bh-blog-thumb-style-three {
    -webkit-transition: var(--bloghub-transition);
    -moz-transition: var(--bloghub-transition);
    -ms-transition: var(--bloghub-transition);
    -o-transition: var(--bloghub-transition);
    transition: var(--bloghub-transition);
}
.bh-blog-thumb-section.bh-blog-thumb-style-three:hover {
    -webkit-transform: translateY(-8px);
    -moz-transform: translateY(-8px);
    -ms-transform: translateY(-8px);
    -o-transform: translateY(-8px);
    transform: translateY(-8px);
}
/*Style Blooger Effect*/
.bh-blooger-style-wrapper .bloghub-blogs-section .bloghub-blogs-img-inner:after, .bloghub-blogs-section-img-big:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.7);
    bottom: 0;
    width: 150%;
    height: 0%;
    transform: rotate( 10deg) translate(-30px, 80px);
}
.bh-blooger-style-wrapper .bloghub-blogs-section:hover .bloghub-blogs-img-inner:after, .bloghub-blogs-section-img-big:hover:after {
    height: 100%;
    opacity: 0;
    transform: rotate( 0deg) translate(0px, 0px);
    -webkit-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
}
.bh-blooger-style-wrapper .bloghub-blogs-section:hover .bloghub-blogs-img-inner, .bloghub-blogs-section-img-big {
    overflow: hidden;
    position: relative;
}
/*Style Blooger Effect*/
/* Blog Styles Three Overlay start */
.bh-blog-thumb-section.bh-blog-thumb-style-three.bh-blog-thub-overlay .bh-blog-image {
    margin: 0;
}
.bh-blog-thumb-section.bh-blog-thumb-style-three.bh-blog-thub-overlay .bh-blog-info-content {
    background: transparent;
    max-width: initial;
}
.bh-blog-thumb-section.bh-blog-thumb-style-three.bh-blog-thub-overlay .bh-blog-info-content .bh-blog-meta-data li a {
    color: var(--bloghub-white);
}
.bh-blog-thumb-section.bh-blog-thumb-style-three.bh-blog-thub-overlay .bh-blog-info-content .bh-blog-meta-data li a:hover {
    /*color: var(--bloghub-primary-color);*/
}
.bh-header-wrapper.bh-header-style2.bh-header-style3 .bh-top-header-wrapper .bh-notice-btn {
    background: var(--bloghub-hover-btn-bg);
    display: inline-block;
    padding-top: 5px;
}
.bh-blog-thumb-section.bh-blog-thumb-style-three.bh-blog-thub-overlay .bh-blog-info-content .bh-blog-title {
    color: var(--bloghub-white);
}
.bh-thumb-style-three-wrapper .bh-blog-thumb-section.bh-blog-thumb-style-three.bh-blog-thub-overlay .bh-blog-title {
    color: #fff !important;
}
/* Blog Styles Three Horizontal Start */
.bh-btn-wrapper {
    text-align: center;
}
.bloghub-new-blog-style-wrapper .bh-blog-meta-data li .bh-blog-category {
    border-radius: 30px;
}
/*------- BLOG STYLE Bloghub Start ---------*/
/*1*/
.bloghub-blogs-wrapper.bloghub-blogs-style1 .row, .bloghub-blogs-wrapper.bloghub-blogs-style2 .row {
    justify-content: center;
}
.bloghub-blogs-wrapper.bloghub-blogs-style2 .bloghub-blogs-section:not(.bloghub-blogs-section-horizontal) .bh-blog-title {
    margin-bottom: 6px;
}
.bloghub-blogs-section {
    background: var(--bloghub-secondary-bg);
    padding: 10px;
    margin: 0 0 30px;
}
.bloghub-blogs-section .bloghub-blogs-images img {
    height: 240px;
    object-fit: cover;
    width: 100%;
}
.bloghub-blogs-section .bloghub-blog-content {
    padding: 20px 20px 10px;
}
.bloghub-blogs-img-inner {
    position: relative;
}
.bloghub-blogs-img-inner:before {
    background: rgb(0 0 0 / 36%);
    background: linear-gradient( 180deg, rgba(255, 255, 255, 0) 0%, rgb(0 0 0 / 40%) 100%);
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
}
.bloghub-blogs-section .bloghub-blog-content .bh-blog-data {
    margin: 12px 0 14px;
}
.bloghub-blogs-section .bh-blog-data a span {
    color: var(--bloghub-primary-color);
}
.bloghub-blogs-section .bh-blog-data ul li:not(:first-child):before {
    top: 12px;
}
.bloghub-blogs-section .bloghub-blog-content .bh-blog-title {
    margin-bottom: 14px;
}
.bloghub-blogs-section .bloghub-blog-content p {
    margin: 0;
}
.bloghub-blogs-section .bloghub-blog-content .bhh-trending-share-on {
    padding: 20px 0 10px;
}
.bloghub-blogs-section .bloghub-blog-content .bhh-trending-share-on>li {
    color: var(--bloghub-title-color);
    font-weight: 600;
}
ul.bhh-trending-share-on li {
    margin-right: 5px;
}
.bloghub-blogs-section .bh-video-text {
    display: none;
}
.bloghub-blogs-section .popup-youtube .bh-video-svg {
    background: var(--bloghub-primary-color);
    border-color: var(--bloghub-primary-color);
}
.bloghub-blogs-section:hover .popup-youtube .bh-video-svg {
    -webkit-transform: scale(.95);
    -moz-transform: scale(.95);
    -ms-transform: scale(.95);
    -o-transform: scale(.95);
    transform: scale(.95);
    background: var(--bloghub-title-color);
    border-color: var(--bloghub-title-color);
}
.bloghub-blogs-section .popup-youtube .bh-video-svg, .bloghub-blogs-section:hover .popup-youtube .bh-video-svg, .bloghub-blogs-section, .bloghub-blogs-section:hover {
    -webkit-transition: var(--bloghub-transition);
    -moz-transition: var(--bloghub-transition);
    -ms-transition: var(--bloghub-transition);
    -o-transition: var(--bloghub-transition);
    transition: var(--bloghub-transition);
}
.bloghub-blogs-section .popup-youtube .bh-video-svg svg {
    height: 18px;
}
.bloghub-blog-content {
    width: 100%;
}
/*2 (Hozital)*/
.bloghub-blogs-section.bloghub-horizontal-style .popup-youtube .bh-video-svg {
    height: 60px;
    width: 60px;
    line-height: 60px;
}
.bloghub-blogs-section.bloghub-blogs-section-horizontal {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0 0 30px;
}
.bloghub-blogs-section.bloghub-blogs-section-horizontal .bh-blog-title {
    max-width: 100%;
}
.bloghub-blogs-section.bloghub-blogs-section-horizontal .bloghub-blog-content .bh-blog-data {
    margin-top: 0;
}
.bloghub-blogs-section.bloghub-blogs-section-horizontal .bloghub-blog-content .bhh-trending-share-on {
    padding-bottom: 0;
}
.bloghub-blogs-section.bloghub-blogs-section-horizontal .bloghub-blog-content {
    padding: 12px 20px 0px;
}
.bh-btn-wrapper {
    padding-top: 10px;
}
/*3 Horizontal No img */
.bloghub-blogs-section.no-img-horizontal {
    padding: 17px 30px 18px;
    margin: 0 0 30px;
    min-height: 173px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.bloghub-blogs-section .bh-blog-title {
    font-size: 20px;
    font-weight: 600;
}
.bloghub-blogs-section.no-img-horizontal .bh-blog-data {
    margin-bottom: 14px;
}
/* Horizontal small */
.bloghub-blogs-section.bloghub-horizontal-style.bloghub-horizontal-samll {
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 30px;
}
.bloghub-blogs-section.bloghub-horizontal-style.bloghub-horizontal-samll .bloghub-blog-content {
    padding: 13px 20px 0px;
}
/* Style 5*/
.bloghub-blogs-wrapper.bloghub-blogs-style5 .bloghub-blogs-section.bloghub-blogs-section-horizontal .bloghub-blog-content {
    padding: 7px 20px 5px;
}
.bloghub-blogs-wrapper.bloghub-blogs-style5 .bloghub-blogs-section.no-img-horizontal {
    min-height: 170px;
}
.bloghub-blogs-section-img-big {
    margin: 0 0 30px;
}
.bloghub-blogs-section-img-big img.img-fluid {
    height: 570px;
    object-fit: cover;
    width: 100%;
}
/*BLOGHUB-SOCIAL*/
ul.bhh-trending-share-on {
    padding: 30px 0px 20px;
    margin: 0;
}
ul.bhh-trending-share-on li {
    display: inline-flex;
    font-weight: 500;
    padding-right: 3px;
    transition: all 0.3s;
    list-style: none;
}
ul.bhh-trending-share-on li:nth-child(1) {
    padding-right: 6px;
}
ul.bhh-trending-share-on li a {
    background-color: #f9fafb;
    border: 1px solid rgb(234, 235, 236);
    width: 40px;
    height: 40px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}
ul.bhh-trending-share-on li a {
    background-color: var(--bloghub-blockquote-bg);
}
ul.bhh-trending-share-on li:hover a {
    background-color: var(--bloghub-primary-color);
    border-color: var(--bloghub-primary-color);
    transform: translateY(-5px);
}
ul.bhh-trending-share-on li:hover a svg {
    fill: var(--bloghub-white);
}
ul.bhh-trending-share-on li a svg {
    fill: var(--bloghub-title-color);
    transition: all 0.3s;
}
/*------- BLOG STYLE Bloghub END ---------*/
/*------- BLOG STYLE FIVE (News) ---------*/
.bh-blog-thumb-section.bh-blog-thumb-style5 {
    border-radius: 0;
    border: 0;
}
/* Overlay */
.bh-blog-thumb-section.bh-blog-thumb-style5.bh-blog-thumb-style5-overlay .bh-blog-image img {
    min-height: 480px;
    max-height: 480px;
}
.bh-blog-thumb-section.bh-blog-thumb-style5 .bh-blog-info-content {
    background: transparent;
    max-width: inherit;
}
.bh-blog-thumb-section.bh-blog-thumb-style5 .bh-blog-info-content ul a, .bh-blog-thumb-section.bh-blog-thumb-style5 .bh-blog-info-content .bh-blog-title {
    color: var(--bloghub-white);
}
.bh-blog-thumb-section.bh-blog-thumb-style5 .bh-blog-info-content ul a:hover {
    color: var(--bloghub-primary-color);
}
.bh-blog-thumb-section.bh-blog-thumb-style5.bh-blog-thumb-style5-overlay .bh-blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    width: 100%;
    max-width: 88px;
    height: 28px;
    border-radius: 50px;
    color: var(--bloghub-white);
    background: var(--bloghub-primary-color);
}
/* Horizontal*/
.bh-blog-thumb-section.bh-blog-thumb-style5.bh-blog-thumb-style5-horizontal .bh-blog-thumb-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.bh-blog-thumb-section.bh-blog-thumb-style5.bh-blog-thumb-style5-horizontal .bh-blog-thumb-inner .bh-blog-image {
    height: 140px;
    width: 150px;
}
.bh-blog-thumb-section.bh-blog-thumb-style5.bh-blog-thumb-style5-horizontal .bh-blog-thumb-inner .bh-blog-image img {
    height: 140px;
    width: 150px;
    object-fit: cover;
    object-position: top center;
}
.bh-blog-thumb-section.bh-blog-thumb-style5.bh-blog-thumb-style5-horizontal .bh-blog-thumb-inner .bh-blog-image a {
    display: inline-block;
}
.bh-blog-thumb-section.bh-blog-thumb-style5.bh-blog-thumb-style5-horizontal .bh-blog-thumb-inner .bh-blog-details {
    width: calc(100% - 150px);
    padding: 0 0 0 20px;
}
.bh-blog-thumb-section.bh-blog-thumb-style5.bh-blog-thumb-style5-horizontal .bh-blog-thumb-inner .bh-blog-details .bh-meta-icon svg {
    fill: var(--bloghub-primary-color);
}
.bh-blog-thumb-section.bh-blog-thumb-style5.bh-blog-thumb-style5-horizontal .bh-blog-thumb-inner .bh-blog-details li {
    width: 100%;
}
.bh-blog-thumb-section.bh-blog-thumb-style5.bh-blog-thumb-style5-horizontal .bh-blog-thumb-inner .bh-blog-details .bh-blog-title {
    font-weight: 700;
    font-size: 14px;
}
.bh-blog-thumb-section.bh-blog-thumb-style5.bh-blog-thumb-style5-horizontal .bh-blog-thumb-inner .bh-blog-details .bh-banner-blog-title {
    margin: 0;
}
.bh-blog-thumb-style5-horizontal .bh-video-text {
    display: none;
}
.bloghub-new-blog-style-wrapper .bh-blog-thumb-section.bh-blog-thumb-style5 .bh-blog-thumb-inner .bh-blog-details .bh-blog-title {
    white-space: normal;
}
.bloghub-new-blog-style-wrapper .bh-blog-thumb-section.bh-blog-thumb-style5 .bh-blog-meta-data {
    margin: 0 0 12px;
}
.bloghub-new-blog-style-wrapper .bh-video-play-icon .bh-video-text {
    display: none;
}
.bh-banner-grid-news-small-col .bh-blog-thumb-section.bh-blog-banner-style.bh-banner-style-two.bh-banner-style-three .bh-blog-info-content {
    left: 40px;
    max-width: 80%;
    bottom: 7px;
}
.bh-banner-grid-news-small-col .bh-blog-thumb-section.bh-blog-banner-style.bh-banner-style-two.bh-banner-style-three .bh-blog-info-content .bh-blog-category {
    margin: 0 0 10px;
}
/* kc */
.bh-banner-grid-news-row .bh-banner-grid-news-big-col:first-child .bh-blog-category {
    background: #4b64ff;
}
.bh-banner-grid-news-row .bh-banner-grid-news-big-col:nth-child(2) .bh-blog-category {
    background: #c24bff;
}
.bh-banner-grid-news-row .bh-banner-grid-news-small-col .bh-blog-thumb-section.bh-blog-banner-style:first-child .bh-blog-category {
    background: #ffa85b;
}
.bh-banner-grid-news-row .bh-banner-grid-news-small-col .bh-blog-thumb-section.bh-blog-banner-style:nth-child(2) .bh-blog-category {
    background: #4bcaff;
}
.bloghub-new-blog-style-wrapper.bloghub-new-blog-style-wrapper .bh-news-style2-wrap .bh-blog-meta-data {
    margin: 0 0 10px;
}
.bloghub-new-blog-style-wrapper .bh-blog-category {
    border-radius: 50px;
    min-width: 100px;
    text-align: center;
    text-transform: uppercase !important;
}
.bloghub-new-blog-style-wrapper .bh-blog-thumb-section.bh-blog-thumb-style5 .bh-blog-info-content {
    padding-left: 10px;
    padding-bottom: 0;
}
.bloghub-new-blog-style-wrapper .bh-blog-thumb-section.bh-blog-thumb-style5 .bh-blog-meta-data .bh-meta-icon {
    margin-right: 6px;
}
.bloghub-newblog-style-secondd .bh-blog-thumb-style5.bh-blog-thumb-style5-horizontal:first-of-type .bh-blog-category {
    background: #4b64ff;
}
.bloghub-newblog-style-secondd .bh-blog-thumb-style5.bh-blog-thumb-style5-horizontal:nth-child(2) .bh-blog-category {
    background: #c24bff;
}
.bloghub-newblog-style-secondd .bh-blog-thumb-style5.bh-blog-thumb-style5-horizontal:nth-child(3) .bh-blog-category {
    background: #ffa85b;
}
.bloghub-newblog-style-first .bh-banner-blog-title .bh-blog-title {
    white-space: normal;
}
.bloghub-newblog-style-first .bh-blog-thumb-section.bh-blog-thumb-style5.bh-blog-thumb-style5-overlay .bh-blog-category {
    background: #4bcaff;
}
.bh-news-style5-wrap.news-thumb-normal .row .col-12:first-of-type .bh-blog-category {
    background: #c24bff;
}
.bh-news-style5-wrap.news-thumb-normal .row .col-12:nth-child(2) .bh-blog-category {
    background: #ffa85b;
}
.bh-news-style5-wrap.news-thumb-normal .row .col-12:nth-child(3) .bh-blog-category {
    background: #4b64ff;
}
.bh-news-style5-wrap.news-thumb-normal .row .col-12:nth-child(4) .bh-blog-category {
    background: #4bcaff;
}
.bh-blog-thumb-section.bh-blog-thumb-style5.bh-blog-thumb-style5-horizontal .bh-video-svg {
    height: 50px;
    width: 50px;
    padding-left: 3px;
}
.bh-blog-thumb-section.bh-blog-thumb-style5.bh-blog-thumb-style5-horizontal .bh-blog-thumb-inner .bh-blog-image img {
    height: 140px;
    max-height: 140px;
    min-height: 140px;
}
.news-last-blog .vc_col-sm-6:first-of-type .bloghub-newblog-style-secondd .bh-blog-thumb-style5.bh-blog-thumb-style5-horizontal:first-of-type .bh-blog-category {
    background: #c24bff;
}
.news-last-blog .vc_col-sm-6:last-of-type .bloghub-newblog-style-secondd .bh-blog-thumb-style5.bh-blog-thumb-style5-horizontal:first-of-type .bh-blog-category {
    background: #ff5b7e;
}
.bh-news-style2-wrap .bh-blog-thumb-section.bh-blog-thumb-style-two:first-of-type .bh-blog-category {
    background: #ffa85b;
}
.bh-news-style2-wrap .bh-blog-thumb-section.bh-blog-thumb-style-two:nth-child(2) .bh-blog-category {
    background: #4bcaff;
}
.bh-news-style2-wrap .bh-blog-thumb-section.bh-blog-thumb-style-two:nth-child(3) .bh-blog-category {
    background: #ff5b7e;
}
.bh-news-style2-wrap .bh-blog-thumb-section.bh-blog-thumb-style-two:nth-child(4) .bh-blog-category {
    background: #c24bff;
}
.bloghub-new-blog-style-wrapper {
    font-weight: 500;
}
.bloghub-new-blog-style-wrapper .bh-blog-category {
    font-weight: 600 !important;
    font-size: 10px;
    letter-spacing: 0;
}
.bh-banner-grid-news-style .bh-blog-thumb-section.bh-blog-banner-style.is-large .bh-blog-info-content .bh-banner-blog-title .bh-blog-title {
    font-size: 22px;
}
/*------- BLOG STYLE FIVE (News) ---------*/
/* COLOR CATE */
.is-sky-blue {
    background: #4bcaff !important;
}
.is-blue {
    background: #4b64ff !important;
}
.is-pink {
    background: #c24bff !important;
}
.is-yellow {
    background: #ffa85b !important;
}
/* BLOG BANNER STYLES START */
/* blog Grid banner style 1 */
.bh-blog-thumb-section.bh-blog-banner-style {
    border: 0;
    margin: 0 0 20px;
    border-radius: 0;
}
.bh-blog-thumb-inner {
    width: 100%;
}
.bh-blog-thumb-section .bh-blog-title {
    max-width: 100%;
    font-size: 20px;
    font-weight: 700;
}
.bh-banner-blog-title {
    margin-top: 12px;
}
.bh-blog-banner-style .bh-blog-image {
    overflow: hidden;
    display: block;
    position: relative;
}
.bh-blog-banner-style .bh-blog-image {
}
.bh-blog-banner-style:hover .bh-blog-image>img {
    -webkit-transform: rotate(1deg) scale(1.1);
    -moz-transform: rotate(1deg) scale(1.1);
    -ms-transform: rotate(1deg) scale(1.1);
    -o-transform: rotate(1deg) scale(1.1);
    transform: rotate(1deg) scale(1.1);
}
.bh-blog-banner-style:hover .bh-blog-image>img, .bh-blog-banner-style .bh-blog-image>img, .bh-blog-banner-style:hover, .bh-blog-banner-style {
    -webkit-transition: var(--bloghub-transition);
    -moz-transition: var(--bloghub-transition);
    -ms-transition: var(--bloghub-transition);
    -o-transition: var(--bloghub-transition);
    transition: var(--bloghub-transition);
}
/* blog Grid banner style 2 */
/* Large */
.bh-blog-thumb-section.bh-blog-banner-style.bh-banner-style-two .bh-blog-title {
    overflow: unset;
    white-space: normal;
    text-overflow: unset;
    color: var(--bloghub-white);
    margin: 0 0 14px;
}
.bh-blog-thumb-section.bh-blog-banner-style.bh-banner-style-two .bh-blog-title:hover {
    color: var(--bloghub-primary-color);
}
.bh-blog-thumb-section.bh-blog-banner-style.bh-banner-style-two.is-large .bh-blog-title {
    font-size: 48px;
}
.bh-blog-thumb-section.bh-blog-banner-style.bh-banner-style-two .bh-blog-meta-data {
    margin: 0 0 20px;
}
.bh-banner-grid-news-small-col .bh-blog-thumb-section.bh-blog-banner-style.bh-banner-style-two .bh-blog-meta-data {
	margin: 0 0 7px;
}
.bh-banner-grid-news-small-col .bh-banner-blog-title{
	margin-top:0;
}
.bh-blog-thumb-section.bh-blog-banner-style.bh-banner-style-two .bh-blog-info-content {
    width: fit-content;
    max-width: 760px;
    background: transparent;
    padding: 0;
}
.bh-blog-thumb-section.bh-blog-banner-style.bh-banner-style-two .bh-blog-info-content:before {
    display: none;
    content: unset;
}
.bh-blog-thumb-section.bh-blog-banner-style.bh-banner-style-two.is-large .bh-blog-info-content p {
    font-size: 18px;
    margin: 0;
}
.bh-blog-thumb-section.bh-blog-banner-style.bh-banner-style-two .bh-blog-info-content p {
    color: var(--bloghub-white);
}
.bh-blog-thumb-section.bh-blog-banner-style.bh-banner-style-two.is-large .bh-blog-info-content {
    bottom: 49px;
    left: 80px;
}
.bh-blog-thumb-section.bh-blog-banner-style.bh-banner-style-two .bh-blog-meta-data a {
    color: var(--bloghub-white);
}
.bh-blog-meta-data ul {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.bh-blog-meta-data li {
    list-style: none;
    margin: 0 30px 0 0;
}
.bh-blog-meta-data li:last-child {
    margin: 0 0;
}
.bh-meta-icon svg {
    height: 15px;
    fill: var(--bloghub-white);
}
.bh-blog-meta-data li .bh-blog-category {
    text-transform: capitalize;
    background: var(--bloghub-primary-color);
    color: var(--bloghub-white);
    padding: 6px 10px 3px;
}
.bh-blog-meta-data li .bh-meta-icon {
    margin: 0px 15px 0 0;
    display: inline-block;
    vertical-align: middle;
}
/* Small */
.bh-blog-thumb-section.bh-blog-banner-style.bh-banner-style-two .bh-blog-thumb-inner>.bh-blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    display: inline-block;
    width: auto;
    text-transform: capitalize;
    background: var(--bloghub-primary-color);
    color: var(--bloghub-white);
    padding: 6px 10px 3px;
}
.bh-banner-grid-magazine-big-col .bh-blog-thumb-section.is-large img {
    max-height: 750px;
    min-height: 750px;
}
.bh-banner-grid-magazine-small-col .bh-blog-thumb-section .bh-blog-image img {
    min-height: 230px;
    max-height: 230px;
}
.bh-banner-grid-magazine-small-col .bh-blog-thumb-section {
    margin: 0 0 20px;
}
.bh-banner-grid-magazine-small-col .bh-blog-info-content {
    left: 20px;
    bottom: 7px;
}
/*** Banner Grid 3 Start **/
.bh-blog-thumb-section.bh-blog-banner-style.bh-banner-style-two.bh-banner-style-three .bh-banner-blog-title .bh-blog-title {
    font-size: 18px;
    font-weight: 700;
}
.bh-blog-thumb-section.bh-blog-banner-style.bh-banner-style-two.bh-banner-style-three .bh-blog-category {
    border-radius: 40px;
}
.bh-blog-thumb-section.bh-blog-banner-style.bh-banner-style-two.bh-banner-style-three .bh-banner-blog-title .bh-blog-title-inner {
    font-weight: 500;
}
.bh-banner-grid-magazine-style .bh-banner-grid-magazine-big-col .bh-blog-thumb-section.bh-blog-banner-style.bh-banner-style-two.is-large .bh-blog-title {
    font-size: 48px;
}
.bh-banner-grid-magazine-small-col .bh-blog-thumb-section.bh-blog-banner-style.bh-banner-style-two .bh-blog-info-content {
    max-width: 80%;
    width: 100%;
}
.bh-banner-grid-magazine-small-col .bh-blog-thumb-section.bh-blog-banner-style.bh-banner-style-two .bh-blog-info-content .bh-blog-meta-data {
    margin: 0;
}
/*** Banner Grid 3 End **/
/* NEWS BANNER GRID */
.bh-banner-grid-news-style {
    padding: 0 10px;
    position: relative;
}
.bh-banner-grid-news-style {
    background: var(--bloghub-secondary-bg) !important;
}
.bh-banner-grid-news-row {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}
.bh-banner-grid-news-big-col {
    width: 38%;
}
.bh-banner-grid-news-small-col {
    width: 24%;
}
.bh-banner-grid-news-big-col .bh-blog-thumb-section, .bh-banner-grid-news-small-col .bh-blog-thumb-section {
    padding: 0 10px;
}
.bh-banner-grid-news-style .bh-blog-thumb-section.bh-blog-banner-style.bh-banner-style-two .bh-blog-category {
    position: unset;
}
.bh-banner-grid-news-row .bh-blog-thumb-section.is-large img {
    min-height: 600px;
    max-height: 600px;
}
.bh-banner-grid-news-small-col .bh-blog-thumb-section .bh-blog-image img {
    min-height: 290px;
    max-height: 290px;
}
.bh-banner-grid-news-big-col .bh-blog-thumb-section.bh-blog-banner-style.bh-banner-style-two.bh-banner-style-three .bh-blog-info-content {
    padding: 0;
    max-width: 83%;
    left: 50px;
    right: 20px;
    bottom: 20px;
}
.bh-banner-grid-news-big-col .bh-blog-thumb-section.bh-blog-banner-style.bh-banner-style-two.bh-banner-style-three .bh-blog-info-content .bh-blog-meta-data {
    margin: 0 0 15px;
}
.bh-banner-grid-news-big-col .bh-blog-thumb-section.bh-blog-banner-style.bh-banner-style-two.bh-banner-style-three .bh-blog-info-content .bh-banner-blog-title {
    margin-top: 7px;
}
.bh-banner-grid-magazine-style .bh-blog-thumb-section.bh-blog-banner-style.bh-banner-style-two .bh-blog-category, .bh-main-magazin-blog-wrapper .bh-blog-thumb-section.bh-blog-thumb-style-two .bh-blog-category {
    text-transform: uppercase;
}
.bh-main-magazin-blog-wrapper .bh-blog-meta-data ul li span svg {
    fill: var(--bloghub-primary-color);
}
.bh-magazine-style2-wrap .bh-blog-thumb-section .bh-blog-meta-data {
    margin: 0 0 17px;
}
.bh-magazine-style2-wrap p {
    margin: 0;
}
/* NEWS BANNER GRID */
.widgets-shortcode.wigets-followers .widgets-shortcode-inner .bh-wigets-followers-list {
    margin: 0;
}
.bh-blog-thumb-section.bh-blog-banner-style.baaner1 .bh-blog-category {
    letter-spacing: 3px;
}
/* MAGAZINE BANNER GRID */
.bh-banner-grid-magazine-style {
    padding: 0 10px;
    position: relative;
}
.bh-banner-grid-magazine-row {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}
.bh-banner-grid-magazine-big-col {
    width: 75%;
}
.bh-banner-grid-magazine-small-col {
    width: 25%;
}
.bh-banner-grid-magazine-big-col .bh-blog-thumb-section, .bh-banner-grid-magazine-small-col .bh-blog-thumb-section {
    padding: 0 10px;
}
.bh-banner-grid-magazine-big-col .bh-blog-thumb-section.bh-blog-banner-style.bh-banner-style-two .bh-blog-info-content {
    left: 80px;
    padding: 0;
    bottom: 80px;
    max-width: 690px;
}
.bh-banner-grid-magazine-big-col .bh-blog-thumb-section.bh-blog-banner-style.bh-banner-style-two.is-large .bh-blog-category {
    position: unset;
    margin: 0;
}
.bh-banner-grid-magazine-big-col .bh-blog-thumb-inner, .bh-banner-grid-magazine-small-col .bh-blog-thumb-inner {
    position: relative;
}
.bh-blog-thumb-section.bh-blog-banner-style.bh-banner-style-two .bh-blog-img-inner:before {
    background: rgb(0 0 0 / 36%);
    background: linear-gradient( 180deg, rgba(255, 255, 255, 0) 0%, rgb(0 0 0 / 96%) 100%);
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
}
/* MAGAZINE BANNER GRID */
.bh-blog-thumb-section .bh-blog-image img {
    min-height: 390px;
    max-height: 390px;
    width: 100%;
    object-fit: cover;
}
.bh-blog-info-content {
    background: rgb(255 255 255 / 90%);
    position: absolute;
    bottom: 10px;
    max-width: 465px;
    width: 100%;
    left: 10px;
    padding: 34px 40px 27px;
    right: 10px;
}
.bh-blog-thumb-section.bh-blog-banner-style .bh-blog-info-content {
    background: transparent;
}
.bh-blog-thumb-section.bh-blog-banner-style .bh-blog-info-content:before {
    background: var(--bloghub-secondary-bg);
    opacity: .9;
    content: "";
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    position: absolute;
}
.bh-blog-thumb-section.bh-blog-banner-style .bh-blog-info-content * {
    position: relative;
    z-index: 1;
}
.bh-blog-category {
    color: var(--bloghub-primary-color);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 8px;
}
.bh-blog-category:visited, .bh-blog-category:focus {
    color: var(--bloghub-primary-color);
}
.bh-blog-thumb-section.bh-blog-banner-style .bh-blog-title {
    margin-bottom: 12px;
}
.bh-blog-thumb-section.bh-blog-banner-style .bh-blog-category {
    margin: 0;
}
/* Blog Layered Style */
.bh-blog-thumb-section.bh-blog-thub-horizontal.bh-blog-style3 {
    margin: 27px 0px;
}
.bh-blog-thumb-section.bh-blog-thub-horizontal .bh-video-text {
    display: none;
}
.sticky-sidebar {
    position: relative;
}
.sticky-sidebar .sticky-sidebar-col .food-widget-row {
    position: sticky;
    top: 20px;
}
.sticky-sidebar .food-widget-row {
    position: sticky  ;
    top: 20px;
}
.sticky-sidebar .e-con-inner {
    align-items: flex-start !important;
}
body .has-video img {
    filter: brightness(0.5) !important;
}
.bh-footer-wrapper.default-footer:not(.bh-dark-footer) td {
   border-color: #d3d6df;
}
/* CUSTOM WIDGETS STYLING */
.widgets-shortcode {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.widgets-shortcode-title {
    color: var(--bloghub-white);
    background: var(--bloghub-primary-color);
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    min-width: 170px;
    padding: 14px 10px;
    text-align: center;
    border-radius: 6px 6px 0 0;
    margin: 0;
    position: relative;
    font-family: 'Barlow', sans-serif;
}
.widgets-shortcode-title:before {
    content: "";
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid var(--bloghub-primary-color);
    position: absolute;
    bottom: -6px;
    left: 0;
    right: 0;
    margin: auto;
}
.widgets-shortcode-inner {
    background: var(--bloghub-secondary-bg);
    border: 1px solid var(--bloghub-border-color);
    border-radius: 6px;
    padding: 40px 20px;
    width: 100%;
}
.widgets-shortcode ul {
    margin: 0;
    padding: 0;
}
.widgets-shortcode ul li {
    list-style: none;
}
/* 1 Authore Widget*/
.widgets-shortcode.wigets-authore {
    text-align: center;
}
.widget-author-info img {
    width: 100px;
    height: 100px;
    border-radius: var(--bloghub-circle-radius);
    object-fit: cover;
    border: 1px solid var(--bloghub-border-color);
    margin: 0 0 20px;
}
.bh-golbal-social ul {
    display: inline-flex;
    flex-wrap: wrap;
}
.bh-golbal-social ul li {
    margin: 3px 8px 3px 0;
}
.bh-golbal-social ul a {
    height: 40px;
    width: 40px;
    display: inline-block;
    line-height: 38px;
    border: 1px solid var(--bloghub-border-color);
    border-radius: 50%;
    text-align: center;
}
.bh-golbal-social ul a:hover {
    border-color: var(--bloghub-primary-color);
}
.bh-golbal-social ul a svg {
    height: 14px;
    fill: var(--bloghub-title-color);
}
.bh-golbal-social ul a:hover svg {
    fill: var(--bloghub-primary-color);
}
.bh-golbal-social ul a:hover svg, .bh-golbal-social ul a svg {
    -webkit-transition: var(--bloghub-transition);
    -moz-transition: var(--bloghub-transition);
    -ms-transition: var(--bloghub-transition);
    -o-transition: var(--bloghub-transition);
    transition: var(--bloghub-transition);
}
.widget-author-info h4 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 8px;
}
.widget-author-info h5 {
    font-size: 14px;
    color: var(--bloghub-primary-color);
    font-weight: 600;
    margin-bottom: 20px;
}
.widgets-shortcode.wigets-authore .widgets-shortcode-inner p {
    margin-bottom: 30px;
}
/* Social*/
.bh-golbal-social h4 {
    font-size: 0.938rem;
    font-weight: 700;
    margin: 0 0 12px;
}
.bh-followers-list ul {
    display: inline-flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
}
.bh-golbal-social {
    margin: 0 0 10px;
}
.bh-golbal-social ul li {
    margin: 3px 8px 0px 0;
    list-style: none;
}
.bh-followers-list ul a {
    height: 40px;
    width: 40px;
    display: inline-block;
    line-height: 38px;
    border: 1px solid var(--bloghub-border-color);
    border-radius: 50%;
    text-align: center;
}
.bh-followers-list ul a:hover {
    border-color: var(--bloghub-primary-color);
}
.bh-followers-list ul a svg {
    height: 14px;
    fill: var(--bloghub-title-color);
}
.bh-followers-list ul a:hover svg {
    fill: var(--bloghub-primary-color);
}
.bh-followers-list ul a:hover svg, .bh-followers-list ul a svg {
    -webkit-transition: var(--bloghub-transition);
    -moz-transition: var(--bloghub-transition);
    -ms-transition: var(--bloghub-transition);
    -o-transition: var(--bloghub-transition);
    transition: var(--bloghub-transition);
}
.bh-golbal-social li:hover, .bh-golbal-social li {
    -webkit-transition: var(--bloghub-transition);
    -moz-transition: var(--bloghub-transition);
    -ms-transition: var(--bloghub-transition);
    -o-transition: var(--bloghub-transition);
    transition: var(--bloghub-transition);
}
.bh-golbal-social li:hover {
    -webkit-transform: translateY(-6px);
    -moz-transform: translateY(-6px);
    -ms-transform: translateY(-6px);
    -o-transform: translateY(-6px);
    transform: translateY(-6px);
}
/* 2 Follower Widget*/
.widgets-shortcode.wigets-followers .bh-wigets-followers-list {
    max-width: 280px;
    margin: auto;
}
.widgets-shortcode.wigets-followers .bh-wigets-followers-list ul {
    justify-content: space-between;
    display: flex;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}
.widgets-shortcode.wigets-followers .bh-wigets-followers-list li {
    margin: 0 0 20px;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 50%;
}
.widgets-shortcode.wigets-followers .bh-wigets-followers-list li .bh-follow-icon, .widgets-shortcode.wigets-followers .bh-follow-info {
    margin: 0 0 10px;
}
.widgets-shortcode.wigets-followers .bh-wigets-followers-list li .bh-follow-icon {
    margin-right: 12px;
}
.widgets-shortcode.wigets-followers .bh-follow-info h5 {
    color: var(--bloghub-link-color);
    font-weight: 800;
    font-size: 14px;
    margin: 0 0 3px;
}
.widgets-shortcode.wigets-followers .bh-follow-info a {
    font-size: 14px;
    margin: 0;
}
.wigets-followers .widgets-shortcode-inner {
    padding-bottom: 8px;
}
.widgets-shortcode.wigets-followers .bh-wigets-followers-list li:hover img, .widgets-shortcode.wigets-followers .bh-wigets-followers-list li img, .widgets-shortcode.wigets-followers .bh-wigets-followers-list li {
    -webkit-transition: var(--bloghub-transition);
    -moz-transition: var(--bloghub-transition);
    -ms-transition: var(--bloghub-transition);
    -o-transition: var(--bloghub-transition);
    transition: var(--bloghub-transition);
}
.widgets-shortcode.wigets-followers .bh-wigets-followers-list li:hover img {
    -webkit-transform: translateX(-8px);
    -moz-transform: translateX(-8px);
    -ms-transform: translateX(-8px);
    -o-transform: translateX(-8px);
    transform: translateX(-8px);
}
/* 3 Catergory Widget style */
.bh-categories-list ul li a p {
    margin: 0;
}
.bh-categories-list ul li {
    margin: 0 0 17px;
}
.bh-categories-list ul li:last-child {
    margin: 0;
}
.bh-categories-list ul li a {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 0 10px;
    position: relative;
    color: var(--bloghub-title-color);
    font-weight: 600;
}
.bh-categories-list ul li a:hover {
    color: var(--bloghub-primary-color);
}
.bh-categories-list ul li .widget-list-icons {
    margin-right: 10px;
    vertical-align: middle;
    display: inline-block;
}
.bh-categories-list ul li:hover .widget-list-icons svg {
    fill: var(--bloghub-primary-color);
}
.widget-list-icons svg {
    fill: var(--bloghub-link-color);
    height: 10px;
}
.bh-categories-list ul li:hover .widget-list-icons svg, .bh-categories-list ul li, .widget-list-icons svg {
    -webkit-transition: var(--bloghub-transition);
    -moz-transition: var(--bloghub-transition);
    -ms-transition: var(--bloghub-transition);
    -o-transition: var(--bloghub-transition);
    transition: var(--bloghub-transition);
}
.widgets-shortcode.wigets-categories .widgets-shortcode-inner {
    padding: 40px 40px;
    padding-bottom: 24px;
}
.bh-categories-list ul li:hover {
    -webkit-transform: translateX(6px);
    -moz-transform: translateX(6px);
    -ms-transform: translateX(6px);
    -o-transform: translateX(6px);
    transform: translateX(6px);
}
/* 4 Recent Post Widget style */
.widgets-shortcode.wigets-recent-post .widgets-shortcode-inner {
    padding-bottom: 30px;
}
.widgets-shortcode.wigets-recent-post .widgets-shortcode-inner li .post-img-thumb {
    position: relative;
    display: block;
    margin-bottom: 10px;
    overflow: hidden;
}
.widgets-shortcode.wigets-recent-post .widgets-shortcode-inner li .post-img-thumb:before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    background: #ffffff;
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: 90%;
    -ms-transform-origin: 90%;
    transform-origin: 90%;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.widgets-shortcode.wigets-recent-post .widgets-shortcode-inner li .post-img-thumb:after {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    background: #ffffff;
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transform-origin: 90%;
    -ms-transform-origin: 90%;
    transform-origin: 90%;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.widgets-shortcode.wigets-recent-post .widgets-shortcode-inner li:hover .post-img-thumb:before {
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    opacity: 0.5;
}
.widgets-shortcode.wigets-recent-post .widgets-shortcode-inner li:hover .post-img-thumb:after {
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    opacity: 0.5;
}
.bh-post-list li a {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.bh-post-list li a img {
    height: 80px;
    width: 80px;
    border-radius: 6px;
    margin: 0 0;
    object-fit: cover;
}
.bh-post-list li a p {
    margin: 0 0 10px;
    width: calc(100% - 80px);
    padding-left: 20px;
}
.bh-post-list li a .bh-post-title {
    font-size: 14px;
    font-weight: 700;
    display: inline-block;
    width: 100%;
    color: var(--bloghub-title-color);
}
.bh-post-list li a .bh-post-date {
    color: var(--bloghub-primary-color);
    display: inline-block;
    font-weight: 500;
}
/*** WIDGET SHORT CODE STYLE TWO *****/
.widgets-shortcode-style-two.widgets-shortcode {
    background: var(--bloghub-secondary-bg);
    padding: 49px 30px 20px;
    border-radius: 0;
}
.widgets-shortcode-style-two .widgets-shortcode-title {
    color: var(--bloghub-title-color);
    background: transparent;
    border-radius: 0;
    font-size: 20px;
    padding: 0;
    min-width: auto;
    text-align: left;
    width: 100%;
    font-family: var( --bloghub-title-family);
    margin: 0 0 30px;
}
.widgets-shortcode-style-two.widgets-shortcode.wigets-categories {
   padding-bottom: 34px;
}
.widgets-shortcode-style-two .widgets-shortcode-title:before {
    content: unset;
}
.widgets-shortcode-style-two .widgets-shortcode-title:before {
    left: -30px;
}
.widgets-shortcode-style-two .widgets-shortcode-inner {
    border: 0;
    background: transparent;
    padding: 0;
    border-radius: 0;
}
.widgets-shortcode-style-two .widgets-shortcode-title:before {
    content: "";
    position: absolute;
    height: 35px;
    width: 4px;
    background: #ffc410;
    top: 0;
    border: 0;
    right: unset;
    left: -30px;
    bottom: 0;
}
.widgets-shortcode.wigets-categories.widgets-shortcode-style-two .widgets-shortcode-inner {
    padding: 0;
}
.widgets-shortcode-style-two.widgets-shortcode.widgets-shortcode.wigets-categories .widgets-shortcode-title:before {
    background: #9cd346;
}
/**** WIDGET SHORT CODE STYLE THREE ****/
.widgets-shortcode-style-three.widgets-shortcode {
    background: #fafafa;
    padding: 49px 30px 20px;
}
.widgets-shortcode-style-three .widgets-shortcode-title {
    color: var(--bloghub-title-color);
    background: transparent;
    border-radius: 0;
    font-size: 20px;
    padding: 0;
    min-width: auto;
    text-align: left;
    width: 100%;
    font-family: var( --bloghub-title-family);
    margin: 0 0 30px;
}
.widgets-shortcode-style-three .widgets-shortcode-title:before {
    content: unset;
}
.widgets-shortcode-style-three .widgets-shortcode-inner {
    border: 0;
    background: transparent;
    padding: 0;
    border-radius: 0;
}
.widgets-shortcode-style-three .widgets-shortcode-title:before {
    content: unset;
}
.widgets-shortcode-style-three.widgets-shortcode:before {
    content: "";
    background: url(../images/line-on.png);
    background-repeat: repeat-x;
    background-size: contain;
    height: 6px;
    border: 0;
    top: 0;
    z-index: 6;
    position: absolute;
    width: 100%;
    left: 0;
}
.widgets-shortcode-style-three.widgets-shortcode:after {
    content: "";
    background: url(../images/line-on.png);
    background-repeat: repeat-x;
    background-size: contain;
    height: 6px;
    border: 0;
    bottom: 0;
    z-index: 6;
    position: absolute;
    width: 100%;
    left: 0;
}
.widgets-shortcode-style-three.widgets-shortcode>span:before {
    content: "";
    background: url(../images/line-left.png);
    background-repeat: repeat;
    background-size: contain;
    width: 6px;
    border: 0;
    top: 5px;
    z-index: 6;
    left: 0;
    bottom: 6px;
    position: absolute;
}
.widgets-shortcode-style-three.widgets-shortcode>span:after {
    content: "";
    background: url(../images/line-left.png);
    background-repeat: repeat;
    background-size: contain;
    width: 6px;
    border: 0;
    bottom: 6px;
    z-index: 6;
    top: 5px;
    right: 0;
    position: absolute;
}
.widgets-shortcode.wigets-categories.widgets-shortcode-style-three .widgets-shortcode-inner {
    padding: 0;
}
.widgets-shortcode-style-three.widgets-shortcode .post-img-thumb img {
    border-radius: 0;
}
/* INSTAGRAM SECTION CSS */
.bh-instagram-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.bh-instagram-section {
    width: 12.5%;
    position: relative;
    overflow: hidden;
    margin: 0 0;
}
.bh-instagram-section .bh-insta-inner {
    display: inline-block;
    width: 100%;
}
.bh-instagram-section .bh-insta-inner>img {
    width: 100%;
    min-height: 240px;
    max-height: 240px;
    object-fit: cover;
}
.bh-instagram-section .bh-insta-inner .bh-insta-icon {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    right: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background: rgb(38 47 65 / 40%);
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
}
.bh-instagram-section .bh-insta-inner .bh-insta-icon svg {
    position: relative;
    fill: var(--bloghub-white);
}
.bh-instagram-section .bh-insta-inner .bh-insta-icon svg:hover, .bh-instagram-section .bh-insta-inner .bh-insta-icon svg:hover path.cls-1 {
    fill: var(--bloghub-primary-color);
}
.bh-instagram-section:hover .bh-insta-inner .bh-insta-icon {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
}
.bh-instagram-section .bh-insta-inner .bh-insta-icon svg:hover, .bh-instagram-section .bh-insta-inner .bh-insta-icon svg:hover path.cls-1,.bh-instagram-section, .bh-instagram-section:hover, .bh-instagram-section .bh-insta-inner .bh-insta-icon, .bh-instagram-section:hover .bh-insta-inner .bh-insta-icon, .bh-instagram-section .bh-insta-inner .bh-insta-icon svg, .bh-instagram-section .bh-insta-inner .bh-insta-icon svg:hover {
    -webkit-transition: var(--bloghub-transition);
    -moz-transition: var(--bloghub-transition);
    -ms-transition: var(--bloghub-transition);
    -o-transition: var(--bloghub-transition);
    transition: var(--bloghub-transition);
}
.bh-insta-button {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}
.bh-insta-button a {
    max-width: 190px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    text-align: center;
    justify-content: center;
    min-height: 50px;
    background-color: var(--bloghub-primary-color);
    color: var(--bloghub-white);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    border-radius: 6px;
    line-height: 1.5;
    margin-top: 30px;
    padding: 6px 20px 2px;
}
.bh-insta-button a:hover {
    color: var(--bloghub-white);
    background-color: var(--bloghub-hover-btn-bg);
}
.bh-insta-button a:hover, .bh-insta-button a {
    -webkit-transition: var(--bloghub-transition);
    -moz-transition: var(--bloghub-transition);
    -ms-transition: var(--bloghub-transition);
    -o-transition: var(--bloghub-transition);
    transition: var(--bloghub-transition);
}
.bh-insta-button a:hover {
    -webkit-transform: translateY(-6px);
    -moz-transform: translateY(-6px);
    -ms-transform: translateY(-6px);
    -o-transform: translateY(-6px);
    transform: translateY(-6px);
}
.bh-insta-button a {
   position: relative;
}
.bh-insta-button a:before {
   content: '';
   position: absolute;
   width: 100px;
   height: 100px;
   left: 0;
   top: 0;
   transform: scale(0);
   border-radius: 50%;
   background: rgba(255,255,255,.5);
   bottom: 0;
   right: 0;
   margin: auto;
}
.bh-insta-button a:hover:before {
   transform: scale(1);
   opacity: 0;
   transition: all .5s ease-in-out;
}
.bh-insta-svg {
    width: 30px;
    margin: 0 0 3px;
}
.bh-insta-button a span:not(.bh-insta-svg) {
    width: calc(100% - 30px);
    text-align: left;
    padding-left: 12px;
    padding-bottom: 1px;
}
.bh-insta-svg svg {
    fill: var(--bloghub-white);
}
.bh-insta-button a:hover .bh-insta-svg svg {
}
.instagram-slider-style3-wrap, .instagram-slider-style2-wrap {
    width: 100%;
    position: relative;
    overflow: hidden;
}
/* INSTAGRAM SECTION CSS STYLE TWO */
.bh-instagram-wrapper.instagram-style-two {
    position: relative;
}
.instagram-style-two .bh-instagram-section {
    width: 16.66%;
    flex: 0 0 auto;
}
.instagram-style-two .bh-instagram-section .bh-insta-icon {
    background: transparent;
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
}
.instagram-style-two .bh-instagram-section:hover .bh-insta-inner .bh-insta-icon {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}
.instagram-style-two .bh-instagram-section .bh-insta-icon:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    background: var(--bloghub-primary-color);
    bottom: 0;
    opacity: .8;
}
.instagram-style-two .bh-instagram-section .bh-insta-inner .bh-insta-icon svg:hover {
    fill: var(--bloghub-white);
}
.bh-instagram-wrapper.instagram-style-two .bh-insta-button a {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    height: fit-content;
    padding: 23px 30px 19px;
    max-width: 200px;
}
/* INSTAGRAM SECTION CSS STYLE Three */
.instagram-slider .bh-instagram-section {
    width: 100%;
}
/*4*/
.instagram-slider-style2-wrap .bh-instagram-section, .instagram-slider-style3-wrap .bh-instagram-section {
    width: 100%;
}
.instagram-slider-style2-wrap .bh-insta-button {
    display: none;
}
.instagram-slider-style3-wrap {
    position: relative;
}
.instagram-slider-style3-wrap .bh-insta-button a {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 2;
    padding: 0;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    line-height: 1.5;
    padding-top: 3px;
}
.instagram-slider-style3-wrap .bh-insta-button a span:not(.bh-insta-svg) {
    display: none;
}
.bloghub-new-blog-style-wrapper .bh-blog-thumb-section.bh-blog-thumb-style-two .bh-blog-meta-data svg {
    fill: var(--bloghub-primary-color);
    vertical-align: baseline;
}
.bloghub-new-blog-style-wrapper .bh-blog-thumb-section.bh-blog-thumb-style-two .bh-blog-meta-data .bh-meta-icon {
    margin-right: 10px;
}
/* CATEGORY SECTION CSS */
.bh-category-section {
    position: relative;
    margin: 0 0 30px;
}
.bh-category-section:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: rgb(0 0 0 / 50%);
}
.bh-category-section:hover:before {
    background: rgb(0 0 0 / 70%);
}
.bh-category-section .bh-category-btn {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.bh-category-section .img-fluid {
    height: 220px;
    object-fit: cover;
    width: 100%;
}
.bh-category-button {
    position: relative;
    font-size: 15px;
    color: var(--bloghub-title-color);
    font-weight: 600;
    background: var(--bloghub-secondary-bg);
    padding: 12px 30px 10px;
    min-height: 50px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    min-width: 150px;
    text-align: center;
    transition: all 0.5s;
}
.bh-category-section:hover .bh-category-button {
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
    background-color: var(--bloghub-primary-color);
    color: var(--bloghub-white);
}
.bh-category-section:before, .bh-category-section, .bh-category-section:hover:before, .bh-category-section:hover, .bh-category-section:hover .bh-category-button, .bh-category-section .bh-category-button {
    -webkit-transition: var(--bloghub-transition);
    -moz-transition: var(--bloghub-transition);
    -ms-transition: var(--bloghub-transition);
    -o-transition: var(--bloghub-transition);
    transition: var(--bloghub-transition);
}
/* BLog VIdeo Icon CSS */
/* style 1*/
.bh-video-play-icon {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.popup-youtube {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.popup-youtube .bh-video-svg {
    border: 1px solid var(--bloghub-white);
    width: 70px;
    height: 70px;
    display: flex;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: auto;
}
.popup-youtube .bh-video-svg svg {
    fill: var(--bloghub-white);
}
.popup-youtube .bh-video-text {
    color: var(--bloghub-white);
    font-weight: 600;
    text-transform: uppercase;
    margin-left: 20px;
}
.bh-blog-thumb-section:hover .popup-youtube .bh-video-svg {
    border-color: var(--bloghub-primary-color);
    background: var(--bloghub-primary-color);
}
.bh-blog-thumb-section:hover .popup-youtube .bh-video-text {
    color: var(--bloghub-primary-color);
}
.bh-blog-thumb-section .popup-youtube .bh-video-svg, .bh-blog-thumb-section:hover .popup-youtube .bh-video-svg, .bh-blog-thumb-section:hover .popup-youtube .bh-video-text, .popup-youtube .bh-video-text, .bh-blog-thumb-section:hover, .bh-blog-thumb-section {
    -webkit-transition: var(--bloghub-transition);
    -moz-transition: var(--bloghub-transition);
    -ms-transition: var(--bloghub-transition);
    -o-transition: var(--bloghub-transition);
    transition: var(--bloghub-transition);
}
/* CONTACT FORM CSS START */
/* Contact Page CSS */
.bh-contact-wrapper {
    padding: 80px 0 0;
    margin: 0 0 -330px;
    position: relative;
    z-index: 999;
}
.bh-contact-inner {
    background: var(--bloghub-secondary-bg);
    box-shadow: var(--bloghub-shadow);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}
.bh-contact-img {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
}
.bh-contact-form {
    padding: 49px 35px 34px 50px;
}
.bh-contact-form .input-wrap textarea {
    margin: 0;
    height: 180px;
}
.bh-contact-title h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 0px 0 4px;
}
.bh-contact-title {
    margin: 0 0 37px;
}
.bg-primary {
    background: var(--bloghub-primary-color) !important;
}
.bh-contact-details-icon {
    width: 70px;
    text-align: center;
}
.bh-contact-details-col {
    display: flex;
    flex-wrap: wrap;
}
.bh-contact-details-icon img {
    height: 50px;
}
.bh-contact-details-icon svg {
    fill: var(--bloghub-white);
    height: 50px;
}
.bh-contact-details-info {
    width: calc(100% - 70px);
    padding: 0 0 0 20px;
}
.bh-contact-details {
    color: var(--bloghub-white);
}
.bh-contact-info-title h4 {
    color: var(--bloghub-white);
    margin: 0 0 10px;
    font-weight: 700;
    font-size: 20px;
}
.bh-contact-details-info h4 {
    color: var(--bloghub-white);
    font-weight: 600;
    font-size: 18px;
    margin: 0 0 10px;
}
.bh-contact-form>div {
    display: inherit;
}
.bh-contact-details-col {
    margin: 0px 0 49px;
    padding-bottom: 37px;
    position: relative;
}
.bh-contact-details-col:before {
    position: absolute;
    content: "";
    left: -50px;
    right: -50px;
    bottom: 0;
    background: var(--bloghub-white);
    height: 1px;
    opacity: .1;
}
.bh-contact-details {
    padding: 49px 30px 0px 35px;
}
.bh-contact-info-title {
    margin: 0 0 41px;
}
.bh-contact-details-col:last-of-type {
    margin: 0;
    padding-bottom: 39px;
}
.bh-contact-details-col:last-of-type:before {
    content: unset;
}
.bh-contact-details-info p {
    margin: 0 0 5px;
}
.bh-contact-info-title p {
    margin: 0 0 0;
}
.banner-grid1-small-thumb {
}
.map-wrapper .wpb_wrapper {
    padding: 0 !important;
}
/* Banner SLider CSS START */
.bhh-banner-icon>* {
    top: 41%;
}
.bhh-banner-slider-style1-wrapper {
    width: 100%;
    padding: 30px 0px 0;
}
.bhh-banner-slider-img {
    position: relative;
}
.bhh-banner-slider-img:before {
    background: rgb(0 0 0 / 36%);
    background: linear-gradient( 180deg, rgba(255, 255, 255, 0) 0%, rgb(0 0 0 / 96%) 100%);
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
}
.bhh-banner-slider-style1-wrapper .swiper-container {
    width: 100%;
    margin: 0 auto;
    overflow: visible;
}
.bhh-banner-slider-style1-wrapper .swiper-slide img {
    width: 100%;
    display: block;
    height: 630px;
    object-fit: cover;
    object-position: top;
}
.bhh-banner-slider-style1-wrapper .swiper-slide span {
    display: inline-block;
    margin-top: 20px;
}
.bhh-banner-slider-style1-wrapper .swiper-container .swiper-wrapper {
    align-items: center;
}
.bhh-banner-slider-style1 {
    position: relative;
}
.bhh-banner-slider-content {
    position: absolute;
    bottom: 50px;
    left: 80px;
    z-index: 2;
}
.bhh-date-box {
    padding: 0;
    margin: 0 0 16px;
    text-transform: capitalize;
}
.bhh-date-box li {
    display: inline-flex;
    margin-right: 13px;
    list-style: none;
    margin-bottom: 0;
}
.bhh-date-box li a {
    font-size: 14px;
    text-decoration: none;
    font-weight: 500;
    color: var(--bloghub-white);
}
.bhh-date-box li a:hover {
    color: var(--bloghub-primary-color);
}
.bhh-date-box li a:hover svg {
    fill: var(--bloghub-primary-color);
}
.bhh-date-box li a:hover svg, .bhh-date-box li a svg {
    -webkit-transition: var(--bloghub-transition);
    -moz-transition: var(--bloghub-transition);
    -ms-transition: var(--bloghub-transition);
    -o-transition: var(--bloghub-transition);
    transition: var(--bloghub-transition);
}
.bhh-date-box li a svg {
    margin-right: 5px;
    fill: var(--bloghub-white);
}
.bhh-banner-slider-content h2 {
    max-width: 500px;
    margin: 0 0 9px;
}
.bhh-banner-slider-content h2 a {
    font-size: 42px;
    text-align: left;
    color: var(--bloghub-white);
    font-weight: 500;
    width: 100%;
    max-width: 500px;
    margin: 0;
    padding: 0;
    line-height: 1.2;
}
.bhh-banner-slider-content h2 a:hover {
    color: var(--bloghub-primary-color);
}
.bhh-banner-slider-content p {
    color: var(--bloghub-white);
    /*font-size: 18px; */
    width: 100%;
    max-width: 500px;
    font-weight: 500;
    margin: 0;
}
.bhh-banner-icon .swiper-button-next {
    background: var(--bloghub-primary-color);
    height: 105px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 10px;
}
.bhh-banner-icon .swiper-button-next p {
    color: var(--bloghub-white);
    margin: 0px 10px;
}
.bhh-banner-icon .swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
    content: 'none';
}
.bhh-banner-icon .swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
    content: 'none';
}
.bhh-banner-icon .swiper-button-prev {
    background: var(--bloghub-primary-color);
    height: 105px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 10px;
}
.bhh-banner-icon .swiper-button-prev p {
    color: var(--bloghub-white);
    margin: 0px 10px;
    width: 20px;
    word-break: break-all;
    line-height: 1.5;
}
.bhh-banner-icon .swiper-button-next p {
    color: var(--bloghub-white);
    margin: 0px 10px;
    width: 20px;
    word-break: break-all;
    line-height: 1.5;
}
/* Banner SLider CSS END */
/*** Banner Slider Style Two Start ***/
.bloghub-banner-slider-two-wrapper {
    padding: 80px 0 80px;
    position: relative;
}
.bloghub-banner-slider-two-imgs {
    position: relative;
}
.bloghub-banner-slider-two-imgs .swiper-slide:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: rgb(0 0 0 / 60%);
}
.bloghub-banner-slider-two-wrapper .blog-slide-wrap {
    font-size: 16px;
    font-weight: 500;
    color: #333333;
}
.bloghub-banner-slider-two-wrapper .bh-blog-title {
    color: #1b060a;
    font-weight: 700;
    font-size: 38px;
    margin: 0 0 8px;
}
.blog-slide-wrap .bh-blog-meta-data {
    font-weight: 500;
}
.bh-banner-slider-arrow .bh-banner-arrowss>div:after {
    display: none;
}
.bh-banner-slider-arrow {
    position: absolute;
    width: 60%;
    bottom: 100px;
    right: 0;
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    align-items: center;
}
.bh-banner-slider-arrow:before {
    content: "";
    position: absolute;
    left: 0;
    right: 260px;
    height: 2px;
    background: #26c2d5;
    top: 8px;
}
.bh-banner-slider-arrow:after {
    content: "";
    position: absolute;
    right: 0%;
    height: 2px;
    background: #26c2d5;
    top: 8px;
    width: 80px;
}
.bh-banner-slider-arrow .swiper-button-next, .bh-banner-slider-arrow .swiper-button-prev {
    position: unset;
    width: 16px;
    height: 30px;
}
.bh-banner-arrowss {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    width: 60px;
    justify-content: center;
}
.bh-banner-arrowss svg {
    height: 12px;
    fill: #222222;
}
.bh-banner-arrowss svg:hover {
    fill: var(--bloghub-primary-color);
}
.bh-banner-slider-arrow p {
    margin: 0;
    font-weight: 600;
    font-size: 14px;
    color: #222222;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    min-width: 180px;
    padding: 0 15px;
    margin-right: 80px;
}
.bh-banner-slider-arrow p:before {
    content: "";
    position: absolute;
    background: #26c2d5;
    height: 20px;
    top: -1px;
    width: 2px;
    left: 0;
}
.bh-banner-slider-arrow p:after {
    content: "";
    position: absolute;
    right: 0;
    height: 20px;
    background: #26c2d5;
    top: -1px;
    width: 2px;
}
.bh-banner-arrowss {
    position: absolute;
    right: 85px;
    top: 16px;
}
.bh-banner-arrowss svg:hover, .bh-banner-arrowss svg {
    -webkit-transition: var(--bloghub-transition);
    -moz-transition: var(--bloghub-transition);
    -ms-transition: var(--bloghub-transition);
    -o-transition: var(--bloghub-transition);
    transition: var(--bloghub-transition);
}
.blog-slide-wrap .bh-blog-meta-data li .bh-blog-category {
    border-radius: 40px;
    margin: 0;
    text-transform: uppercase;
}
.bh-blog-thumb-section.bh-blog-thumb-style-three .bh-blog-category {
    min-width: 100px;
    text-align: center;
}
.bh-dentist-style-wrapper .bh-blog-thumb-section.bh-blog-thumb-style-three .bh-blog-image>.bh-blog-category {
    text-transform: uppercase;
}
.bloghub-banner-slider-two-imgs .swiper-slide.swiper-slide-active:before {
    background: transparent;
}
.bloghub-banner-slider-two-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
}
.bloghub-banner-slider-two-container {
    max-width: 100%;
    margin: auto;
}
.bloghub-banner-slider-two-imgs {
    width: 65%;
}
.bloghub-banner-slider-two-blogs {
    width: 35%;
}
.bloghub-banner-slider-two-imgs, .bloghub-banner-slider-two-blogs {
    padding: 0 15px;
}
.bloghub-slider-img .swiper-slide img {
    display: block;
    margin: auto;
    width: 100%;
    height: 670px;
    object-fit: cover;
}
.blog-slide-wrap .bh-blog-meta-data li .bh-meta-icon svg {
    fill: var(--bloghub-primary-color);
}
.blog-slide-wrap .bh-blog-details p {
    margin: 0 0 20px;
}

@media (min-width: 1800px) {
    .bloghub-banner-slider-two-wrapper {
        min-height: 820px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
   }
    .bloghub-banner-slider-two-imgs {
        width: 80%;
        margin-left: -20px;
   }
    .bloghub-banner-slider-two-blogs {
        width: 38%;
        position: absolute;
        right: 12px;
   }
    .bloghub-banner-slider-two-container .bloghub-slider-img .swiper-slide {
        width: 60%;
   }
    .slider-image-internal {
        display: none;
   }
    .bh-header-wrapper.bh-header-style2.bh-header-style3 .bh-main-header {
        padding: 8px 0;
   }
}
@media (max-width: 1799.98px) {
    .bloghub-banner-slider-two-wrapper .bloghub-banner-slider-two-container {
        max-width: 1750px;
   }
    .bloghub-banner-slider-two-wrapper .bloghub-banner-slider-two-imgs {
        display: none;
   }
    .bloghub-banner-slider-two-wrapper .bloghub-banner-slider-two-blogs {
        width: 100%;
   }
    .bloghub-banner-slider-two-wrapper .slider-image-internal {
        display: block;
        width: 50%;
   }
    .bloghub-banner-slider-two-wrapper .bh-blog-thumb-inner {
        width: 50%;
        padding: 0 0 0 50px;
   }
    .bloghub-banner-slider-two-wrapper .blog-slide-wrap {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
   }
    .bloghub-banner-slider-two-wrapper .bh-banner-slider-arrow:before, .bloghub-banner-slider-two-wrapper .bh-banner-slider-arrow:after {
        display: none;
   }
    .bloghub-banner-slider-two-wrapper .bh-banner-slider-arrow {
        bottom: 30px;
   }
}
@media (max-width: 1499.98px) {
    .bloghub-banner-slider-two-wrapper .bh-banner-blog-title .bh-blog-title {
        font-size: 28px;
   }
   /* Header3 */
    .bh-header-wrapper.bh-header-style2.bh-header-style3 .bh-notice-wrapper {
        display: none;
   }
}
@media (max-width: 767.98px) {
    .bloghub-banner-slider-two-wrapper .bh-blog-thumb-inner {
        width: 100%;
        padding: 30px 0 0;
   }
    .bloghub-banner-slider-two-wrapper .slider-image-internal {
        display: block;
        width: 100%;
   }
    .bloghub-banner-slider-two-wrapper .bh-banner-slider-arrow, .bloghub-banner-slider-two-wrapper .bh-banner-slider-arrow p {
        width: 100%;
   }
    .bloghub-banner-slider-two-wrapper .bh-banner-slider-arrow p:before, .bloghub-banner-slider-two-wrapper .bh-banner-slider-arrow p:after {
        display: none;
   }
    .bloghub-banner-slider-two-wrapper .bh-banner-arrowss {
        right: 0;
        left: 0;
        margin: auto;
   }
}
/****** Banner Slider Style Two END ******/
.button.product_type_simple.add_to_cart_button.ajax_add_to_cart {
    display: none !important;
}
.wp-block-latest-comments__comment-author, .wp-block-latest-comments__comment-link {
    color: var(--bloghub-title-color);
}
.bh-banner-grid-magazine-style {
    background: var(--bloghub-main-bg);
    padding-top: 20px;
}
.bh-header-wrapper.bh-header-style2.bh-header-style3 .bh-search-fields input {
    background: var(--bloghub-input-bg);
}
.entry-header .bh-post-meta {
    font-weight: 500;
}
.bh-blog-thumb-section.bh-blog-banner-style.baaner1 .bh-blog-title {
    white-space: normal;
}
.bh-sidebar-wrapper .widget.widget_categories {
    padding-top: 40px;
    padding-bottom: 30px;
}
.bloghub-blogs-images {
    width: 100%;
}
.bh-blog-thumb-section img, .bh-instagram-section img {
    filter: brightness(0.9);
}
.bh-banner-grid-news-row .bh-blog-category {
    letter-spacing: 0;
}
.bh-blog-thumb-section img, .bh-instagram-section img, .bh-blog-thumb-section:hover img, .bh-instagram-section:hover img {
    -webkit-transition: var(--bloghub-transition);
    -moz-transition: var(--bloghub-transition);
    -ms-transition: var(--bloghub-transition);
    -o-transition: var(--bloghub-transition);
    transition: var(--bloghub-transition);
}
.bh-dentist-style-wrapper .bh-blog-thumb-section.bh-blog-thumb-style-three.bh-blog-thub-overlay .bh-blog-info-content .bh-blog-title {
    white-space: normal;
}
.bh-dentist-style-wrapper .bh-blog-thumb-section.bh-blog-thumb-style-three.bh-blog-thub-overlay .bh-blog-info-content {
    padding: 10px 20px 3px;
}
.bh-dentist-style-wrapper .bh-blog-thumb-section.bh-blog-thumb-style-three.bh-blog-thub-overlay .bh-blog-info-content .bh-blog-title-inner {
    display: none;
}
.bloghub-dentist-horizontal-wrapper .bh-blog-thumb-section.bh-blog-thumb-style5.bh-blog-thumb-style5-horizontal .bh-blog-thumb-inner .bh-blog-details li {
    width: auto;
    margin-bottom: 6px;
}
.bloghub-dentist-horizontal-wrapper .bh-blog-thumb-section.bh-blog-thumb-style5.bh-blog-thumb-style5-horizontal .bh-blog-thumb-inner .bh-blog-title {
    white-space: normal;
    font-size: 20px;
}
.bloghub-dentist-horizontal-wrapper .bh-blog-thumb-section.bh-blog-thumb-style5.bh-blog-thumb-style5-horizontal .bh-blog-thumb-inner .bh-blog-details li a, .bh-dentist-style-wrapper .bh-thumb-style-three-wrapper .bh-blog-meta-data a {
    color: #666;
    font-weight: 500;
}
.bloghub-dentist-horizontal-wrapper .bh-blog-thumb-section.bh-blog-thumb-style5.bh-blog-thumb-style5-horizontal .bh-blog-thumb-inner .bh-blog-details li a.bh-blog-category, .bh-dentist-style-wrapper .bh-thumb-style-three-wrapper .bh-blog-meta-data a.bh-blog-category {
    color: #fff;
}
.bloghub-dentist-horizontal-wrapper .bh-blog-thumb-section.bh-blog-thumb-style5.bh-blog-thumb-style5-horizontal .bh-blog-thumb-inner .bh-blog-details {
    padding-left: 30px;
}
body.single-product .product-qyt .quantity {
    background: var(--bloghub-secondary-bg);
}

.bh-blog-columns .entry-content.bh-single-data .wpb_content_element {
    margin: 0;
}
/* Vertical SLider */
.bloghub-vertical-slider-wrapper {
    position: relative;
    overflow: hidden;
    padding-top: 20px;
}
.bloghub-vertical-slider-wrapper .container-fluid {
    padding: 0 10px;
}
.bloghub-vertical-big-slide, .bloghub-vertical-small-slide {
    padding: 0 10px;
}
.bloghub-vertical-big-slide {
    width: 75%;
}
.bloghub-vertical-small-slide {
    width: 25%;
}
.bloghub-vertical-slider-row {
    display: flex;
    flex-wrap: wrap;
}
.swiper.bloghub-vertical-thumb {
    overflow: hidden;
}
.bloghub-vertical-slider-wrapper .swiper {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.bloghub-vertical-small-slide {
    max-height: 800px;
}
.bloghub-verticle-thumb {
    position: relative;
}
.bloghub-verticle-thumb {
    position: relative;
    display: flex;
    flex-wrap: wrap;
}
.bloghub-verticle-thumb-inner {
    width: 100%;
    position: relative;
    margin: 0 0 20px;
}
.bloghub-vertical-small-slide .bh-blog-category {
    text-transform: uppercase;
    position: absolute;
    top: 15px;
    left: 15px;
    display: inline-block;
    width: auto;
    background: #ff486a;
    color: var(--bloghub-white);
    padding: 6px 10px 3px;
}
.bloghub-vertical-big-slide .bloghub-verticle-thumb .bh-blog-meta-data .bh-blog-category {
    background: #ff486a;
    padding: 6px 10px 3px;
    text-transform: uppercase;
}
.bloghub-v-slide-img img {
    width: 100%;
    height: 760px !important;
    object-fit: cover;
}
.bloghub-verticle-thumb .bloghub-v-slide-content .bh-blog-title {
    font-size: 20px;
    white-space: normal;
    color: var(--bloghub-white);
    font-weight: 700;
}
.bloghub-vertical-small-slide .bloghub-v-slide-img img {
    height: 240px !important;
}
.bloghub-verticle-thumb .bloghub-v-slide-content {
    position: absolute;
    left: 20px;
    bottom: 10px;
    z-index: 1;
}
.bloghub-v-slide-img {
    position: relative;
    overflow: hidden;
}
.bloghub-v-slide-img:before {
    background: rgb(0 0 0 / 36%);
    background: linear-gradient( 180deg , rgba(255, 255, 255, 0) 0, rgb(33 37 41) 100%);
    background: linear-gradient( 180deg , rgba(255, 255, 255, 0) 0, #222 100%);
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
}
.bloghub-verticle-thumb .bh-blog-meta-data {
    font-weight: 500;
}
.bloghub-verticle-thumb .bh-blog-meta-data a {
    color: var(--bloghub-white);
}
.bloghub-verticle-thumb .bh-blog-meta-data a:hover {
    color: #ff486a;
}
.bloghub-verticle-thumb .bh-blog-meta-data a:hover svg {
    fill: #ff486a;
}
.bloghub-v-slide-img:hover img {
    transform: scale(1.1);
}
.bloghub-v-slide-img:hover, .bloghub-v-slide-img:hover img, .bloghub-v-slide-img img, .bloghub-v-slide-img, .bloghub-verticle-thumb .bh-blog-meta-data a:hover svg, .bloghub-verticle-thumb .bh-blog-meta-data a svg, .bloghub-verticle-thumb .bloghub-v-slide-content .bh-blog-title:hover, .bloghub-verticle-thumb .bloghub-v-slide-content .bh-blog-title{
    -webkit-transition: var(--bloghub-transition);
    -moz-transition: var(--bloghub-transition);
    -ms-transition: var(--bloghub-transition);
    -o-transition: var(--bloghub-transition);
    transition: var(--bloghub-transition);
}
.bloghub-verticle-thumb .bloghub-v-slide-content .bh-blog-meta-data li:first-child span svg {
    vertical-align: text-top;
}
.bloghub-v-slide-content {
    max-width: 90%;
    display: flex;
    flex-wrap: wrap;
}
.bloghub-verticle-thumb .bloghub-v-slide-content .bh-blog-title:hover {
    color: #ff486a;
}
.bloghub-verticle-thumb p {
    font-size: 18px;
    margin: 0;
    color: var(--bloghub-white);
    font-weight: 500;
}
@media screen and (min-width: 1200px) {
    .bloghub-vertical-big-slide .bloghub-verticle-thumb .bloghub-v-slide-content .bh-blog-title {
        font-weight: 700;
        font-size: 48px;
   }
    .bloghub-vertical-big-slide .bloghub-verticle-thumb .bloghub-v-slide-content {
        left: 80px;
        bottom: 40px;
        max-width: 710px;
   }
    .bh-blog-thumb-section.bh-blog-thumb-style-three.bh-blog-thub-horizontal.bh-no-img .bh-blog-title {
        font-size: 24px;
   }
}
@media screen and (max-width: 1199.98px) {
    .bloghub-verticle-thumb .bh-blog-meta-data {
        display: none;
   }
    .bloghub-vertical-big-slide .bloghub-verticle-thumb .bh-blog-meta-data {
        display: block;
   }
    .bloghub-verticle-thumb .bloghub-v-slide-content .bh-blog-title {
        white-space: nowrap;
        overflow: hidden;
        max-width: 50%;
   }
    .bloghub-v-slide-img img {
        height: 400px;
   }
    .bloghub-vertical-small-slide .bloghub-v-slide-img img {
        height: 120px;
   }
    .bloghub-vertical-small-slide .bloghub-verticle-thumb .bloghub-v-slide-content .bh-blog-title {
        white-space: nowrap;
        overflow: hidden;
        max-width: 45%;
   }
    .bloghub-vertical-small-slide .bloghub-verticle-thumb .bloghub-v-slide-content .bh-blog-title {
        display: none;
   }
    .bloghub-vertical-big-slide {
        width: 70%;
   }
    .bloghub-vertical-small-slide {
        width: 30%;
   }
    .bloghub-vertical-big-slide .bloghub-verticle-thumb .bh-blog-title {
        max-width: 90%;
   }
    .bloghub-vertical-big-slide .bloghub-verticle-thumb .bh-blog-title {
        white-space: normal;
        max-width: 100%;
   }
}
@media screen and (max-width: 991.98px) {
    .bloghub-vertical-big-slide .bloghub-verticle-thumb .bh-blog-title {
        max-width: 70%;
   }
    .bloghub-vertical-small-slide .bh-banner-blog-title {
        display: none;
   }
    .bloghub-verticle-thumb p {
        display: none;
   }
}
@media screen and (max-width: 767.98px) {
    .bloghub-vertical-big-slide .bloghub-verticle-thumb .bh-blog-meta-data {
        display: none;
   }
    .bloghub-vertical-big-slide, .bloghub-vertical-small-slide {
        width: 100%;
   }
    .bloghub-vertical-small-slide {
        display: none;
   }
}
/* Vertical SLider */
body.admin-bar .edit-btn-read-more-wrap {
    position: relative;
    z-index: 1;
}
.trending-post-wrapper .bh-blog-thumb-section.bh-blog-thumb-style-three.bh-blog-thub-horizontal.bh-no-img {
    margin: 0 0 20px;
}
.bloghub-demo .bh-single-imgae-wrap .bh-single-imgae .post-thumbnail {
    position: relative;
    display: inline-block;
    width: 100%;
}
.bloghub-demo .bh-single-imgae-wrap .bh-single-imgae .post-thumbnail:before {
    background: rgb(0 0 0 / 36%);
    background: linear-gradient( 180deg , rgba(255, 255, 255, 0) 0%, rgba(33, 37, 41, 0.86) 100%);
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
}
.posted_in .al_meta_tag {
   color: var(--bloghub-title-color) !important;
}
.woocommerce div.product div.images.woocommerce-product-gallery .flex-viewport {
   border: 1px solid var(--bloghub-border-color);
   border-radius: 3px;
}
.bloghub-vertical-small-slide .bh-blog-category {
   z-index: 1;
}
.bh-thumb-style-three-wrapper .bh-blog-thumb-section.bh-blog-thumb-style-three.bh-blog-thub-overlay.has-video .bh-video-play-icon {
   display: none;
}
.bh-title-section.bh-title-style6 .bh-insta-button a:before {
   display: none;
}
.qty_button.plus.toltiped {
   padding-top: 8px;
}
.wc-proceed-to-checkout .checkout-button.button.bh-btn:hover {
   -webkit-box-shadow: inset 45em 0 0 0 var(--bloghub-hover-btn-bg);
   -moz-box-shadow: inset 45em 0 0 0 var(--bloghub-hover-btn-bg);
   box-shadow: inset 45em 0 0 0 var(--bloghub-hover-btn-bg);
}
body.category .wpb_wrapper >p {
   margin-bottom: 20px;
}
.bh-header-wrapper.bh-header-style2.bh-header-style3 .bh-main-header .bh-comman-icon {
    line-height: 36px;
}

body.box-layout {
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}
body.box-layout main, .box-layout .bh-single-product-page {
    background: var(--boxed-bg);
    max-width: 1400px;
    margin: auto;
}
body.box-layout header.bh-header-wrapper, body.box-layout  footer.bh-footer-wrapper {
    max-width: 1400px;
    margin: auto;
}

.bh-contact-list {
    padding: 0;
    margin: 0;
}
.bh-contact-list li {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
}
.bh-contact-list li p {
    width: calc(100% - 30px);
    padding-left: 20px;
}
.bloghub-blogs-section-img-big .bh-video-svg {
    background: var(--bloghub-primary-color);
    border-color: var(--bloghub-primary-color);
}
.bloghub-blogs-section-img-big .bh-video-svg:hover{
    background: var(--bloghub-title-color);
    border-color: var(--bloghub-title-color);
}
.bloghub-blogs-section-img-big .bh-video-svg:hover,
.bloghub-blogs-section-img-big .bh-video-svg {
    -webkit-transition: var(--bloghub-transition);
    -moz-transition: var(--bloghub-transition);
    -ms-transition: var(--bloghub-transition);
    -o-transition: var(--bloghub-transition);
    transition: var(--bloghub-transition);
}
.bh-footer-widgets .bh-recent-post-widgets.widget ul li:last-of-type {
    margin: 0;
}
.bh-footer-widget .bh-contact-list ul li:last-of-type {
    margin: 0;
}
.blg-tour-banner-slider .bloghub-v-slide-img  .bh-video-svg {
    border: 0;
}
.bh-contact-list li:last-of-type p {
    margin: 0;
}
.bh-footer-wrapper .widget:last-of-type.bh-recent-post-widgets.widget {
    margin-bottom: 0;
}
.blg-tour-banner-slider .bloghub-verticle-thumb-inner {
    margin: 0;
}
.bh-dark-footer .bh-copyright-wrapper {
    color: var(--bloghub-white);
}
.bh-blogger-border .bloghub-blogs-section {
    border: 1px solid var(--bloghub-border-color) !important;
}
.bh-blogger-border .bloghub-blogs-section ul.bhh-trending-share-on li a {
    border: 0;
    background: var(--bloghub-main-bg);
}
.bh-blogger-border .bloghub-blogs-section ul.bhh-trending-share-on li:hover a {
    background: var(--bloghub-primary-color);
}
/*.bh-blogger-border .bloghub-blogs-section, .bh-blogger-border .bloghub-blogs-section .bh-blog-title, .bh-blogger-border .bloghub-blogs-section  .bloghub-blog-content .bh-blog-data {*/
/*    font-style: normal;*/
/*}*/
/********** 6 Responsive CSS Start **********/
@media screen and (min-width: 768px) {
    .bh-mobile-logo {
        display: none;
   }
   /* Horizontal Blog */
    .bh-blog-thumb-section.bh-blog-thub-horizontal {
        flex-wrap: nowrap;
        align-items: center;
   }
    .bh-blog-thumb-section.bh-blog-thub-horizontal .bh-blog-img, .bh-blog-thumb-section.bh-blog-thub-horizontal .bh-blog-img .bh-blog-img-inner {
        flex-wrap: nowrap;
        height: 100%;
        max-width: 270px;
        min-width: 270px;
        margin: 0;
   }
    .bh-blog-thumb-section.bh-blog-thub-horizontal .bh-blog-img img {
        margin: 0;
        max-width: 270px;
        min-width: 270px;
        height: 230px;
        height: 100%;
        max-height: initial;
   }
    .bh-blog-thumb-section.bh-blog-thub-horizontal .bh-blog-details {
        width: calc(100% - 270px);
        padding: 19px 20px 12px;
        padding-left: 30px;
   }
   /* Blog THumb style */
    .bh-blog-thumb-section.bh-blog-thumb-style-two.bh-blog-thub-horizontal .bh-blog-image {
        width: 270px;
        height: 220px;
   }
    .bh-blog-thumb-section.bh-blog-thumb-style-two.bh-blog-thub-horizontal .bh-blog-thub-text {
        width: calc(100% - 270px);
        padding: 20px;
        padding-left: 30px;
   }
   /* BLOGHUB BLOG 2 Horizontal*/
    .bloghub-blogs-section.bloghub-blogs-section-horizontal .bloghub-blogs-images, .bloghub-blogs-section.bloghub-blogs-section-horizontal .bloghub-blogs-images img {
        width: 250px;
        height: 250px;
   }
    .bloghub-blogs-section.bloghub-blogs-section-horizontal .bloghub-blog-content {
        width: calc(100% - 250px);
        padding-left: 20px;
   }
   /* Horizontal small */
    .bloghub-blogs-section.bloghub-horizontal-style.bloghub-horizontal-samll .bloghub-blogs-images, .bloghub-blogs-section.bloghub-horizontal-style.bloghub-horizontal-samll .bloghub-blogs-images img {
        width: 180px;
        height: 150px;
   }
    .bloghub-blogs-section.bloghub-horizontal-style.bloghub-horizontal-samll .bloghub-blog-content {
        width: calc(100% - 180px);
        padding-left: 20px;
   }
   /*first Banner grid LG */
    .bh-blog-thumb-section.bh-blog-banner-style.is-large .bh-blog-info-content {
        max-width: 630px;
        padding: 44px 50px 37px;
   }
    .bh-blog-thumb-section.bh-blog-banner-style.is-large .bh-blog-info-content .bh-banner-blog-title {
        margin-top: 13px;
   }
    .bh-blog-thumb-section.bh-blog-banner-style.is-large .bh-blog-info-content p {
        margin: 0 0 17px;
   }
    .bh-blog-thumb-section.bh-blog-banner-style.is-large .bh-blog-info-content .bh-banner-blog-title .bh-blog-title {
        font-size: 24px;
        margin: 0 0 10px;
   }
   /*first grid LG */
   /* THUMB STYLE TWO GORIZONTAL MAGAZINE */
    .bh-blog-thumb-section.bh-blog-thumb-style-two.bh-blog-thub-horizontal .bh-blog-img, .bh-blog-thumb-section.bh-blog-thumb-style-two.bh-blog-thub-horizontal .bh-blog-img .bh-blog-img-inner {
        flex-wrap: nowrap;
        height: 100%;
        max-width: 270px;
        min-width: 270px;
        margin: 0;
   }
    .bh-blog-thumb-section.bh-blog-thumb-style-two.bh-blog-thub-horizontal .bh-blog-img img {
        margin: 0;
        max-width: 270px;
        min-width: 270px;
        height: 230px;
        height: 100%;
        max-height: initial;
   }
    .bh-blog-thumb-section.bh-blog-thumb-style-two.bh-blog-thub-horizontal .bh-blog-details {
        width: calc(100% - 270px);
        padding: 19px 20px 12px;
        padding-left: 30px;
   }
}
@media screen and (min-width: 992px) {
    .bh-sidebar-wrapper {
        padding-left: 20px;
   }
    .bh-sidebar-wrapper.bh-left-sidebar {
        padding-left: 0;
        padding-right: 20px;
   }
}
@media screen and (min-width: 1200px) {
   .bloghub-vertical-slider-row {
        overflow: hidden;
    }
   /* Header*/
    .close-search {
        display: none;
   }
    .container {
        max-width: 1170px;
   }
    .bh-main-nav-wrapper .menu .sub-menu {
        position: absolute;
        background: var(--bloghub-secondary-bg);
        min-width: 200px;
        left: 0;
        top: 60px;
        padding: 10px 0;
        border: none;
        border-radius: var(--bloghub-radius0);
        box-shadow: 0px 6px 20px 0 rgb(0 0 0 / 8%);
        visibility: hidden;
        opacity: 0;
        text-align: left;
        width: auto;
        z-index: 99;
   }
    .bh-main-nav-wrapper .menu>li:hover>.sub-menu, .bh-main-nav-wrapper .menu>li>.sub-menu li:hover>.sub-menu, .bh-main-nav-wrapper .menu>li>.sub-menu li:hover>.sub-menu li:hover>.sub-menu {
        visibility: visible;
        opacity: 1;
   }
    .bh-main-nav-wrapper .menu>li .sub-menu, .bh-main-nav-wrapper .menu>li:hover .sub-menu {
        -webkit-transition: var(--bloghub-transition);
        -moz-transition: var(--bloghub-transition);
        -ms-transition: var(--bloghub-transition);
        -o-transition: var(--bloghub-transition);
        transition: var(--bloghub-transition);
   }
    .bh-main-nav-wrapper .menu .sub-menu .sub-menu {
        left: -215px;
        top: 0;
   }
    .bh-main-nav-wrapper .menu .sub-menu li {
        padding: 6px 20px;
   }
    .bh-main-nav-wrapper .menu .sub-menu li:hover {
        padding: 6px 10px 6px 30px;
   }
    .bh-main-nav-wrapper .menu .sub-menu li, .bh-main-nav-wrapper .menu .sub-menu li:hover {
        -webkit-transition: var(--bloghub-transition);
        -moz-transition: var(--bloghub-transition);
        -ms-transition: var(--bloghub-transition);
        -o-transition: var(--bloghub-transition);
        transition: var(--bloghub-transition);
   }
    .bh-main-nav-wrapper .menu .sub-menu .sub-menu:before {
        content: "";
        position: absolute;
        right: -10px;
        width: 0;
        height: 0;
        border-top: 8px solid transparent;
        border-left: 10px solid var(--bloghub-secondary-bg);
        border-bottom: 8px solid transparent;
        top: 6px;
   }
    .bh-main-nav-wrapper .menu .sub-menu li, .bh-main-nav-wrapper .menu .sub-menu li:hover {
        -webkit-transition: var(--bloghub-transition);
        -moz-transition: var(--bloghub-transition);
        -ms-transition: var(--bloghub-transition);
        -o-transition: var(--bloghub-transition);
        transition: var(--bloghub-transition);
   }
    .bh-main-nav-wrapper .menu .sub-menu li:hover>a {
        color: var(--bloghub-primary-color);
   }
    body .bh-main-nav-wrapper .menu>li>a {
        padding: 24px 0px;
   }
    .bh-about-info p {
        word-break: break-word;
   }
    body .bh-main-nav-wrapper .menu>li>a:before {
        position: absolute;
        background: var(--bloghub-primary-color);
        border-radius: var(--bloghub-radius0);
        opacity: 0;
        visibility: hidden;
        margin: auto;
        content: "";
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        height: 3px;
        width: 0%;
        border-radius: var(--bloghub-radius10) var(--bloghub-radius10) var(--bloghub-radius0) var(--bloghub-radius0);
   }
    body .bh-main-nav-wrapper .menu>li:hover>a:before, body .bh-main-nav-wrapper .menu>li.current-menu-item>a:before {
        visibility: visible;
        opacity: 1;
        width: 80%;
   }
    body .bh-main-nav-wrapper .menu li:hover a:before, body .bh-main-nav-wrapper .menu li.current-menu-item a:before, body .bh-main-nav-wrapper .menu li:hover a:before {
        -webkit-transition: var(--bloghub-transition);
        -moz-transition: var(--bloghub-transition);
        -ms-transition: var(--bloghub-transition);
        -o-transition: var(--bloghub-transition);
        transition: var(--bloghub-transition);
   }
    .bh-main-nav-wrapper .menu li:hover>a {
        color: var(--bloghub-primary-color);
   }
    .bh-header-wrapper .menu>li {
        padding: 0 12px;
   }
   /* New */
    .bh-header-style1 .bh-main-header .bh-main-nav-wrapper .menu>li {
        padding: 0 20px;
   }
    .bh-blog-thumb-section.is-large img {
        min-height: 800px;
        max-height: 800px;
   }
    .bh-mobile-search-btn {
        display: none;
   }
   /* Header Style */
    body .bh-header-style2 .bh-main-nav-wrapper .menu>li>a:after {
        position: absolute;
        background: var(--bloghub-primary-color);
        border-radius: var(--bloghub-radius0);
        content: "";
        bottom: 0;
        right: -20px;
        margin: auto;
        height: 5px;
        width: 5px;
        top: 0;
   }
    body .bh-header-style2 .bh-main-nav-wrapper .menu>li {
        padding: 0 20px;
        text-transform: uppercase;
   }
    body .bh-header-style2 .bh-main-nav-wrapper .menu>li:last-of-type>a:after {
        display: none;
   }
   /* HEADER3 */
    body .bh-header-wrapper.bh-header-style2.bh-header-style3 .bh-main-nav-wrapper .menu>li {
        text-transform: capitalize;
   }
    body .bh-header-wrapper.bh-header-style2.bh-header-style3 .bh-main-nav-wrapper .menu>li>a:after {
        display: none;
   }
   /* HEADER4 */
    body .bh-header-wrapper.bh-header-style2.bh-header-style4 .bh-main-nav-wrapper .menu>li {
        text-transform: capitalize;
   }
    body .bh-header-wrapper.bh-header-style2.bh-header-style4 .bh-main-nav-wrapper .menu>li>a:after {
        display: none;
   }
   /* HEADER 5 */
    body .bh-header-wrapper.bh-header-style2.bh-header-style5 .bh-main-nav-wrapper .menu>li {
        text-transform: capitalize;
   }
    body .bh-header-wrapper.bh-header-style2.bh-header-style5 .bh-main-nav-wrapper .menu>li>a:after {
        display: none;
   }
    body .bh-header-wrapper.bh-header-style2.bh-header-style5 .bh-main-nav-wrapper .menu>li {
        padding: 0 25px;
   }
   /* Header1 */
    .bh-header-style1 .bh-main-header .bh-main-nav-wrapper .menu>li>a {
        padding: 17px 0;
   }
   .bh-header-style1 .bh-main-header .bh-main-nav-wrapper .menu>li.current-menu-item a {
       color: var(--bloghub-primary-color);
   }
   .bh-header-wrapper.bh-header-style2.bh-header-style3 .bh-search-fields .bh-search-icon {
        top: 7px;
    }
}
@media screen and (min-width: 1400px) {
    .bh-instagram-wrapper.instagram-style-two .bh-instagram-section img {
        min-height: 320px;
        max-height: 320px;
    }
    .bh-top-header-row>* {
        flex: 0 0 auto;
        width: 33.33333333%;
        padding-left: 15px;
        padding-right: 15px;
   }
   /* Header 2*/
    .bh-header-wrapper.bh-header-style2 .bh-top-header-row>* {
        width: auto;
   }
    .bh-header-wrapper.bh-header-style2 .bh-top-header-row {
        margin: 0 -15px;
   }
   /* HEADER 3*/
    .bh-header-wrapper.bh-header-style2.bh-header-style3 .bh-top-header-row>* {
        width: 33.33333333%;
   }
    .bh-header-wrapper.bh-header-style2.bh-header-style3 .bh-top-header-row>.bh-date-controls {
        justify-content: left;
   }
    .bh-header-wrapper.bh-header-style2.bh-header-style3 .bh-top-header-row>.bh-notice-wrapper {
        text-align: center;
   }
    .bh-header-wrapper.bh-header-style2.bh-header-style3 .bh-top-header-row>.bh-header-social-flat {
        text-align: right;
   }
   /* HEADER 4*/
    .bh-header-wrapper.bh-header-style2.bh-header-style4 .bh-top-header-row>* {
        width: 33.33333333%;
   }
    .bh-header-wrapper.bh-header-style2.bh-header-style4 .bh-top-header-row>.bh-date-controls {
        justify-content: flex-end;
   }
    .bh-header-wrapper.bh-header-style2.bh-header-style4 .bh-top-header-row>.bh-notice-wrapper {
        text-align: left;
   }
    .bh-header-wrapper.bh-header-style2.bh-header-style4 .bh-top-header-row>.bh-header-social-flat {
        text-align: center;
   }
   /* Header 5 */
    .bh-header-wrapper.bh-header-style2.bh-header-style5 .bh-top-header-row>* {
        width: 50%;
   }
}
@media screen and (min-width: 1580px) {
   /* Header 2*/
    .bh-header-style2 .bh-main-header-inner .bh-logo-wrap {
        min-width: 340px;
   }
}
@media screen and (min-width: 1750px) {
    .bh-header-wrapper .container-fluid {
        max-width: 1730px;
   }
}
@media screen and (min-width: 1800px) {
    .bh-header-wrapper.bh-header-style2.bh-header-style3 .container-fluid, .bh-header-wrapper.bh-header-style2.bh-header-style4 .container-fluid {
        max-width: 1750px;
   }
}
@media screen and (min-width: 1850px) {
    .changing, .changed {
        transform: scale(0.835);
        -ms-user-select: none;
        -moz-user-select: -moz-none;
        -khtml-user-select: none;
        -webkit-user-select: none;
        user-select: none;
        transition: all 1s;
   }
    .changing.swiper-slide-active, .changed.swiper-slide-active {
        transform: scale(1.1);
   }
    .changing.swiper-slide-active, .changed.swiper-slide-active {
        -webkit-transition: var(--bloghub-transition);
        -moz-transition: var(--bloghub-transition);
        -ms-transition: var(--bloghub-transition);
        -o-transition: var(--bloghub-transition);
        transition: var(--bloghub-transition);
   }
    .bhh-banner-slider-style1-wrapper {
        padding: 67px 0px 31px;
   }
    .changing .bhh-banner-slider-content, .changed .bhh-banner-slider-content {
        opacity: 0;
        visibility: hidden;
   }
    .changing.swiper-slide-active .bhh-banner-slider-content, .changed.swiper-slide-active .bhh-banner-slider-content {
        opacity: 1;
        visibility: visible;
   }
    .changing.swiper-slide-active .bhh-banner-slider-content, .changed.swiper-slide-active .bhh-banner-slider-content, .changing .bhh-banner-slider-content, .changed .bhh-banner-slider-content {
        -webkit-transition: var(--bloghub-transition);
        -moz-transition: var(--bloghub-transition);
        -ms-transition: var(--bloghub-transition);
        -o-transition: var(--bloghub-transition);
        transition: var(--bloghub-transition);
   }
}
@media screen and (max-width: 1900px) {
    .bh-blog-authore-box {
        padding: 40px 40px 20px;
   }
}
@media screen and (max-width: 1849px) {
   /* header3 */
    .bh-header-wrapper.bh-header-style2.bh-header-style3 .bh-top-header-wrapper .bh-notice-inner>span {
        max-width: 250px;
        font-size: 10px;
   }
   /* Header4 */
    .bh-header-wrapper.bh-header-style2.bh-header-style4 .bh-top-header-wrapper .bh-notice-inner>span {
        max-width: 250px;
   }
    .bh-header-wrapper.bh-header-style2.bh-header-style4 .bh-notice-btn {
        margin: 0 15px 10px 0;
   }
    .bh-header-wrapper.bh-header-style2.bh-header-style4 .bh-top-header-wrapper .bh-notice-inner>span {
        max-width: 200px;
        display: none;
   }
}
@media screen and (max-width: 1599px) {
   /*Banner GRid 1*/
    .bh-blog-info-content {
        max-width: 345px;
   }
   .bh-banner-grid-news-big-col .bh-blog-thumb-section.bh-blog-banner-style.bh-banner-style-two.bh-banner-style-three .bh-blog-info-content .bh-blog-meta-data ul li:first-of-type {
        width: 100%;
        margin: 0 0 10px;
   }
}
@media screen and (max-width: 1439px) {
    .bh-header-wrapper.bh-header-style2.bh-header-style5 .bh-text-slider-row {
        display: none;
   }
    .bh-date-controls ul li.bh-today-date {
        margin-right: 10px;
   }
    .bh-desktop-search-btn {
        display: none;
   }
    .bh-mobile-search-btn {
        width: 40px;
        height: 40px;
        display: inline-block;
        line-height: 40px;
   }
    .bh-main-header .bh-main-header-inner {
        padding: 0 80px;
   }
    .bh-main-header .bh-header-searh-wrap {
        right: 10px;
   }
   .bh-header-wrapper.bh-header-style6 .bh-header-searh-wrap {
       right: 60px;
   }
   .bh-header-style6 .bh-search-btn svg {
       fill: var(--bloghub-title-color);
   }
    .bh-date-controls ul li.bh-today-date .bh-comman-icon {
        display: none;
   }
   /* Header 2 */
    .bh-header-style2 .bh-main-header-inner {
        padding: 7px 15px;
   }
}
@media screen and (max-width: 1399.98px) {
    .bh-swiper-nav {
        display: none;
   }
    .bh-header-wrapper.bh-header-style2.bh-header-style4 .bh-top-header-row>.bh-header-social-flat {
        display: none;
   }
    .bh-header-wrapper.bh-header-style2.bh-header-style4 .bh-header-social.bh-header-social-flat {
        display: none;
   }
}
@media screen and (max-width: 1199.98px) {
    .has_sub_menu ul {
        display: none;
   }
    .bh-menu-toggle {
        display: inline-block;
        vertical-align: middle;
        height: 40px;
        width: 40px;
        padding: 11px 0;
        position: relative;
        background: var(--bloghub-primary-color);
        border-radius: var(--bloghub-circle-radius);
   }
    .bh-menu-toggle span {
        width: 15px;
        height: 2px;
        background: var(--bloghub-white);
        display: block;
        position: relative;
        margin: auto;
        margin-top: 3px;
   }
    .bh-menu-toggle span, .bh-menu-toggle.open-menu span {
        -webkit-transition: var(--bloghub-transition);
        -moz-transition: var(--bloghub-transition);
        -ms-transition: var(--bloghub-transition);
        -o-transition: var(--bloghub-transition);
        transition: var(--bloghub-transition);
   }
    .bh-menu-toggle span:hover {
        cursor: pointer;
   }
    .bh-menu-toggle.open-menu span:nth-child(2) {
        display: none;
   }
    .bh-menu-toggle.open-menu span:nth-child(1) {
        transform: rotate( 45deg) translate(3.5px, 3px);
   }
    .bh-menu-toggle.open-menu span:nth-child(3) {
        transform: rotate( 135deg) translate(-7.3px, -11px);
        margin: 0;
   }
    .bh-main-navigation ul.menu {
        background: var(--bloghub-main-bg);
        position: fixed;
        left: -340px;
        top: 0;
        bottom: 0;
        width: 320px;
        height: 100%;
        text-align: left;
        z-index: 98;
        background-attachment: fixed;
        transition: 0.3s;
        overflow-y: auto;
        overflow-x: hidden;
        border-right: 1px solid var(--bloghub-border-color);
   }
    .bh-main-navigation.open-menu ul {
        left: 0;
   }
    .admin-bar .bh-main-navigation.open-menu ul {
        top: 30px;
   }
    .bh-header-wrapper .menu li.open:before {
        -webkit-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        -o-transform: rotate(180deg);
        transform: rotate(180deg);
   }
    .bh-header-wrapper .menu li.open:before, .bh-header-wrapper .menu li:before {
        -webkit-transition: var(--bloghub-transition);
        -moz-transition: var(--bloghub-transition);
        -ms-transition: var(--bloghub-transition);
        -o-transition: var(--bloghub-transition);
        transition: var(--bloghub-transition);
   }
    .bh-main-navigation ul.sub-menu {
        display: none;
        margin-top: 10px;
        margin-bottom: 7px;
   }
    .bh-main-navigation ul.sub-menu.show-submenu {
        display: block;
   }
    .bh-main-navigation ul>li {
        width: 100%;
        padding: 15px 20px;
   }
    .bh-main-navigation .menu li .sub-menu li {
        padding: 10px 20px 10px 30px;
        position: relative;
   }
    .bh-main-navigation .menu li .sub-menu li a {
        padding-left: 20px;
   }
    .bh-main-navigation .menu li .sub-menu li a:before {
        content: "";
        position: absolute;
        height: 6px;
        width: 6px;
        background: var(--bloghub-primary-color);
        top: 10px;
        margin: auto;
        left: 0px;
   }
    .bh-main-navigation .menu li.menu-item-has-children:before {
        content: "\f107";
        position: absolute;
        top: 21px;
        right: 25px;
        font-family: "Font Awesome 5 Free";
        -moz-osx-font-smoothing: grayscale;
        -webkit-font-smoothing: antialiased;
        display: inline-block;
        font-style: normal;
        font-variant: normal;
        text-rendering: auto;
        line-height: 1;
        font-weight: 900;
        color: var(--bloghub-title-color);
   }
    .bh-main-navigation .menu li.open:before {
        -webkit-transform: rotate( 180deg);
        -moz-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        -o-transform: rotate(180deg);
        transform: rotate( 180deg);
   }
    .bh-main-navigation .menu .sub-menu li.menu-item-has-children:before {
        top: 16px;
   }
    .bh-main-navigation .menu li.menu-item-has-children:before, .bh-main-navigation .menu li.open:before {
        -webkit-transition: var(--bloghub-transition);
        -moz-transition: var(--bloghub-transition);
        -ms-transition: var(--bloghub-transition);
        -o-transition: var(--bloghub-transition);
        transition: var(--bloghub-transition);
   }
    .bh-main-navigation .menu>li {
        border-bottom: 1px solid var(--bloghub-border-color);
   }
    .bh-main-navigation .menu>li:last-child {
        border-bottom: 0;
   }
    .bh-main-navigation .menu>li .sub-menu>li {
        border-bottom: 1px solid var(--bloghub-border-color);
   }
    .bh-main-navigation .menu>li .sub-menu>li:last-child {
        border-bottom: 0;
   }
    .bh-main-navigation .menu>li>.sub-menu {
        margin-left: -20px;
        margin-right: -20px;
        padding: 0 0px;
   }
    .bh-main-navigation .sub-menu {
        background: var(--bloghub-submenu-bg);
   }
    .bh-header-wrapper .menu {
        display: inline-block;
   }
    .bh-header-wrapper .menu li a {
        width: 100%;
        display: inline-block;
   }
    .bh-cart-btn {
        min-width: 40px;
        margin: 0 0 0 20px;
   }
    .bh-search-btn {
        width: 40px;
        height: 40px;
        line-height: 40px;
        position: relative;
        text-align: center;
        background: var(--bloghub-primary-color);
        display: inline-block;
        border-radius: var(--bloghub-circle-radius);
        margin: 0 0;
   }
    .bh-search-btn svg {
        position: relative;
   }
    .row.align-content-center {
        align-items: center;
   }
    .bh-menu .menu>ul::-webkit-scrollbar {
        width: 3px;
   }
    .bh-menu .menu>ul::-webkit-scrollbar-track {
        background-color: var(--bloghub-primary-color);
   }
    .bh-menu .menu>ul::-webkit-scrollbar-thumb {
        background-color: var(--bloghub-secondary-bg);
   }
    .bh-main-navigation ul.sub-menu .sub-menu {
        background: var(--bloghub-sub-menu-bg);
   }
    .bh-header-wrapper .bh-search-btn svg {
        fill: var(--bloghub-white);
   }
    body .bh-main-navigation .menu .sub-menu li.open:before {
        -webkit-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        -o-transform: rotate(180deg);
        transform: rotate( 180deg);
   }
    body .bh-main-navigation .menu .sub-menu li:before {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
   }
   /*New*/
    .bh-main-header .bh-header-searh-wrap {
        position: unset;
        margin: 0;
   }
    .bh-main-header .bh-main-header-inner {
        padding: 15px 15px;
        justify-content: space-between;
   }
   /*Banner Grid1*/
    .bh-blog-thumb-section.bh-blog-banner-style.is-large .bh-blog-image img {
        min-height: 500px;
        max-height: 500px;
   }
    .banner-grid1-small-thumb>div {
        padding-left: 0 !important;
   }
    .banner-grid1-small-thumb .wpb_wrapper {
        display: flex;
        flex-wrap: wrap;
   }
    .banner-grid1-small-thumb .bh-blog-thumb-section.bh-blog-banner-style {
        width: calc(50% - 10px);
   }
    .banner-grid1-small-thumb .wpb_wrapper .bh-blog-thumb-section.bh-blog-banner-style:last-of-type {
        margin-left: 20px;
   }
   /* Header2 */
    .bh-header-wrapper.bh-header-style2 .bh-date-controls .bh-comman-icon {
        background: var(--bloghub-primary-color);
        border-color: var(--bloghub-primary-color);
   }
    .bh-header-wrapper.bh-header-style2 .bh-date-controls .bh-comman-icon svg, .bh-header-wrapper.bh-header-style2 .bh-date-controls .bh-comman-icon svg path {
        fill: var(--bloghub-white);
   }
   /*Banner Grid NEWS 3 */
    .bh-banner-grid-news-big-col {
        width: 50%;
   }
    .bh-banner-grid-news-small-col {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
   }
    .bh-banner-grid-news-small-col .bh-blog-thumb-section.bh-blog-banner-style.bh-banner-style-two.bh-banner-style-three {
        width: 50%;
   }
   /*Banner Grid NEWS */
   /* Blgohub blosg style Blogger */
    .bhh-trending-share-on li:nth-child(1) {
        display: none;
   }
   /* BANNER GRID MAGAZINE */
    .bh-banner-grid-magazine-big-col, .bh-banner-grid-magazine-small-col {
        width: 100%;
   }
    .bh-banner-grid-magazine-small-col {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
   }
    .bh-banner-grid-magazine-small-col .bh-blog-thumb-section.bh-blog-banner-style.bh-banner-style-two {
        width: 33.33%;
   }
   /* Contact PAge */
    .bh-contact-form {
        padding: 39px 30px 24px 30px;
   }
   /* Header5*/
    .bh-temperature-info .bh-comman-icon {
        display: none;
   }
   /* banner slider2 */
    .blog-slide-wrap .bh-blog-meta-data li:first-of-type {
        display: none;
   }
    .bh-banner-slider-arrow p {
        font-size: 0;
        min-width: 75px;
   }
    .bh-instagram-section .bh-insta-inner>img {
        min-height: 160px;
        max-height: 160px;
   }
    .bh-header-wrapper.bh-header-style1 .bh-main-header-inner {
        flex-direction: row-reverse;
   }
   /* h6 */
   .bh-header-wrapper.bh-header-style6 .search-logout-btn {
       min-width: 100px;
       display: flex;
       flex-wrap: wrap;
       justify-content: space-between;
       align-items: center;
   }
   .bh-header-style6 .bh-search-btn svg {
       fill: var(--bloghub-white);
   }
   .bh-header-style6 .bh-user-login {
       position: unset;
   }
   .bh-header-style6 .bh-user-login .bh-comman-icon {
       width: 40px;
       height: 40px;
       line-height: 40px;
       position: relative;
       text-align: center;
       background: var(--bloghub-primary-color);
       display: inline-block;
       border-radius: var(--bloghub-circle-radius);
       margin: 0 0;
   }
   .bh-header-style6 .bh-user-login .bh-comman-icon svg {
       fill: var(--bloghub-white);
   }

}
@media screen and (min-width: 767.98px) and (max-width: 1199.98px) {
   /* PageBuilder CSS Food Widget Mange */
    .food-widget-row .widgets-shortcode {
        width: calc(50% - 30px);
        margin: 0 0 30px;
   }
    .food-widget-row .wpb_wrapper {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: space-between;
   }
    .food-widget-row .widgets-shortcode.wigets-authore, .food-widget-row .widgets-shortcode.wigets-followers {
        margin-right: 30px;
   }
    .food-widget-row .widgets-shortcode.wigets-categories.widgets-shortcode-style-three {
        display: none;
   }
}
@media screen and (min-width: 991.98px) and (max-width: 1199.98px) {
    .bh-sidebar-wrapper .widget ul li, .bh-sidebar-wrapper .widget ol li {
        padding-left: 15px;
   }
    body .bh-sidebar-wrapper .widget {
        padding-left: 20px;
        padding-right: 20px;
   }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
   .bh-header-social ul a {
       height: 30px;
       width: 30px;
       line-height: 26px;
   }
}
@media screen and (max-width: 991.98px) {
    .wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button.bh-btn {
        min-width: 100px;
   }
    .bh-single-data p {
        word-break: break-word;
   }
   /*Banner Grid1*/
    .banner-grid1-small-thumb .bh-blog-thumb-section.bh-blog-banner-style {
        width: 100%;
   }
    .banner-grid1-small-thumb .wpb_wrapper .bh-blog-thumb-section.bh-blog-banner-style:last-of-type {
        margin-left: 0;
   }
   /* header 3 */
    .bh-header-wrapper.bh-header-style2.bh-header-style3 .bh-top-header-wrapper .bh-notice-wrapper {
        display: none;
   }
   /* Header 4 */
    .bh-header-wrapper.bh-header-style2.bh-header-style4 .bh-notice-wrapper {
        display: none;
   }
   /*Banner Grid2 MAGAZINE*/
    .bh-banner-grid-magazine-style .bh-banner-grid-magazine-big-col .bh-blog-thumb-section.bh-blog-banner-style.bh-banner-style-two.is-large .bh-blog-title {
        font-size: 20px;
   }
    .bh-banner-grid-magazine-small-col .bh-blog-thumb-section.bh-blog-banner-style.bh-banner-style-two {
        width: 100%;
   }
    .bh-banner-grid-magazine-big-col .bh-blog-thumb-section.is-large img {
        max-height: 230px;
        min-height: 230px;
   }
    .bh-banner-grid-magazine-big-col .bh-blog-thumb-section.bh-blog-banner-style.bh-banner-style-two .bh-blog-info-content {
        left: 30px;
        bottom: 80px;
   }
    .bh-banner-grid-magazine-style .bh-banner-grid-magazine-big-col .bh-blog-thumb-section.bh-blog-banner-style.bh-banner-style-two.is-large .bh-blog-info-content {
        width: 80%;
   }
    .bh-banner-grid-magazine-big-col .bh-blog-thumb-section.bh-blog-banner-style.bh-banner-style-two.is-large img {
        min-height: 430px;
        max-height: 430px;
   }
   /*Banner Grid2 MAGAZINE*/
   /* banner-news */
    .bh-banner-grid-news-big-col {
        width: 100%;
   }
    .bh-header-wrapper.bh-header-style2.bh-header-style4 .bh-header-social.bh-header-social-flat {
        display: block;
   }
    .bh-header-wrapper.bh-header-style2 .bh-word {
        display: none;
   }
    .bh-instagram-section .bh-insta-inner>img {
        min-height: 100px;
        max-height: 100px;
   }
    .instagram-style-two .bh-instagram-section .bh-insta-inner>img {
        min-height: 130px;
        max-height: 130px;
   }
    .bh-thumb-style-three-video-big .bh-blog-thumb-section.bh-blog-thumb-style-three img {
        min-height: 300px;
        max-height: 300px;
   }
    .bh-header-wrapper.bh-header-style2.bh-header-style5 .bh-notice-wrapper {
        display: none;
   }
   .bh-header-wrapper.bh-header-style2.bh-header-style5 .bh-top-header-wrapper .bh-top-header-row {
       justify-content: center;
   }
}
@media screen and (max-width: 768px) {
    .woocommerce table.shop_table {
        border-top: 1px solid var(--bloghub-border-color);
   }
    .woocommerce-cart .woocommerce a.remove {
        margin: 10px 0;
   }
    .woocommerce table.cart td.actions .coupon input#coupon_code {
        max-width: 100%;
        margin: 0 0 20px;
        border-radius: var(--bloghub-radius0);
        border: 1px solid var(--bloghub-border-color);
   }
    .woocommerce table.cart td.actions .coupon button.button, .woocommerce table.cart td.actions .coupon button.button {
        max-width: 100%;
        border-radius: var(--bloghub-radius-comman);
        width: 100%;
        margin: 0 0 30px;
   }
    .woocommerce table.shop_table_responsive tr td::before, .woocommerce-page table.shop_table_responsive tr td::before {
        font-weight: 500;
        color: var(--bloghub-title-color);
   }
    .woocommerce table.shop_table td.product-quantity {
        display: flex;
        align-items: center;
        justify-content: space-between;
   }
    .woocommerce form.checkout_coupon .form-row.form-row-first, .woocommerce form.checkout_coupon .form-row.form-row-last {
        width: 100%;
   }
}
@media screen and (max-width: 767.98px) {
    .bh-breadcrumb-container ul {
        font-size: 16px;
   }
    .bh-desktop-logo {
        display: none;
   }
    .bh-single-data .wp-block-calendar td, .bh-single-data .wp-block-calendar th {
        padding: .25em;
   }
    .bh-single-data>table td {
        padding: 4px;
        font-size: var(--bloghub-font-size);
        word-break: normal;
   }
    .pagination .nav-links>*:not(.dots) {
        height: 30px;
        width: 30px;
        line-height: 30px;
        margin: 0 8px 0 0;
   }
    .bh-breadcrumb-container h1 {
        font-size: var(--bloghub-title-size);
   }
    .page-links .page-number span, .page-links .page-number a {
        height: 30px;
        width: 30px;
        line-height: 30px;
        margin: 0 8px 0 0;
   }
    form#yith-wcwl-form a.button.yith-wcqv-button {
        display: none !important;
   }
    form#yith-wcwl-form .product-name h3 {
        font-size: var(--bloghub-widgets-title-size);
        font-weight: 600;
   }
    .wishlist_table.mobile {
        padding: 0;
   }
    .wishlist_table.mobile a.button.add_to_cart_button {
        padding: 0 !important;
        line-height: 50px !important;
   }
    .wishlist_table.mobile .additionbh-info-wrapper .additionbh-info td {
        font-size: var(--bloghub-font-size);
        padding: 10px 0 10px;
   }
    .wishlist_table.mobile .additionbh-info-wrapper {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
   }
    .wishlist_table.mobile li {
        margin: 0 0 30px;
        border-bottom: 1px solid var(--bloghub-border-color);
        padding-bottom: 30px;
        position: relative;
   }
    .wishlist_table.mobile li .item-details table.item-details-table td {
        font-size: var(--bloghub-font-size);
   }
    body .wishlist_table.mobile .additionbh-info-wrapper .product-add-to-cart {
        margin: 0;
   }
    body .wishlist_table.mobile .additionbh-info-wrapper .product-add-to-cart .add_to_cart {
        margin: 0 !important;
   }
    .wishlist_table.mobile li .additionbh-info-wrapper .product-remove {
        position: absolute;
        top: 0;
        right: 0;
   }
    .woocommerce #reviews #comments ol.commentlist li .star-rating {
        width: 100%;
        margin: 00 0 10px;
   }
    .bh-login-wrap {
        display: flex;
   }
    .woocommerce-checkout .woocommerce form.checkout_coupon .form-row.form-row-first {
        width: 100%;
   }
    .woocommerce table.cart td.actions .coupon {
        width: 100%;
   }
    .woocommerce table.cart td.actions .coupon input#coupon_code {
        width: 100%;
   }
   /* Header CSS */
    .bh-newsletter-box input.form-control {
        width: 100%;
        margin: 0 0 15px;
   }
    .bh-blog-authore-info {
        width: 100%;
        padding: 0 0px 0 0px;
   }
   /* Header 1*/
    .bh-header-style1 .bh-top-header-row {
        flex-direction: row-reverse;
   }
    .bh-header-style1 .bh-top-header-row .bh-date-controls {
        width: 100%;
   }
    .bh-header-style1 .bh-top-header-row .bh-date-controls ul {
        justify-content: flex-start;
   }
    .bh-header-social ul a {
        height: 30px;
        width: 30px;
        line-height: 26px;
   }
    .bh-top-header-wrapper {
        padding: 10px 0;
   }
    .bh-comman-icon {
        height: 30px;
        width: 30px;
        line-height: 30px;
   }
    .bh-comman-icon svg {
        height: 12px;
   }
    .bh-date-controls ul li.bh-today-date {
        flex: 1;
        margin: 0 5px 0 0;
   }
   /*Banner Grid1*/
    .banner-grid1-small-thumb .bh-blog-thumb-section.bh-blog-banner-style .bh-blog-image img, .bh-blog-thumb-section.bh-blog-banner-style.is-large .bh-blog-image img {
        min-height: 400px;
        max-height: 400px;
   }
    .bh-blog-info-content {
        max-width: 280px;
        padding: 14px 20px 7px;
   }
    .bh-blog-data ul li {
        width: 100%;
        padding: 0;
        margin: 10px 0 0;
   }
    .bh-blog-data ul li:not(:first-child):before {
        display: none;
   }
    .bh-blog-thumb-section.bh-blog-banner-style.is-large p {
        display: none;
   }
   /*Banner Grid1*/
    .bh-date-controls ul .bh-today-date span {
        font-size: 12px;
   }
   /* Title First */
    .bh-title-section .bh-title-inner:before {
        display: none;
   }
    .bh-title-section .bh-title-inner h2 {
        padding: 0;
        width: 100%;
   }
    .bh-title-section .bh-title-inner a {
        width: 100%;
        padding: 0;
   }
    .bh-instagram-section {
        width: 25%;
   }
   /* Header2 */
    .bh-header-wrapper.bh-header-style2 .bh-date-controls .bh-comman-icon {
        height: 40px;
        width: 40px;
        line-height: 38px;
   }
    .bh-header-wrapper.bh-header-style2 .bh-date-controls .bh-comman-icon svg {
        height: 15px;
   }
   /* Banner slider 1 */
    .bhh-banner-slider-content h2 a {
        font-size: 32px;
   }
    .bhh-banner-slider-content p, .bhh-banner-icon {
        display: none;
   }
    .bhh-banner-slider-content {
        bottom: 30px;
        left: 40px;
   }
    .bhh-banner-slider-style1-wrapper .swiper-slide img {
        height: 500px;
   }
   /* Header 3 */
    .bh-header-wrapper.bh-header-style2.bh-header-style3 .bh-top-header-row .bh-date-controls ul {
        display: none;
   }
    .bh-header-wrapper.bh-header-style2.bh-header-style3 .bh-top-header-wrapper {
        padding: 3px 0;
   }
    .bh-header-wrapper.bh-header-style2.bh-header-style3 .bh-top-header-row .bh-header-social {
        width: 100%;
   }
    .bh-header-wrapper.bh-header-style2.bh-header-style3 .bh-top-header-row .bh-header-social ul {
        display: flex;
        justify-content: center;
        width: 100%;
   }
   /* Header4 */
    .bh-title-section.bh-title-style3 .bh-btn {
        width: fit-content;
        padding: 12px 10px 8px;
   }
   /* BANNER GRID MAGAZINE */
    .bh-banner-grid-magazine-small-col .bh-blog-thumb-section.bh-blog-banner-style.bh-banner-style-two {
        width: 100%;
   }
    .bh-banner-grid-magazine-big-col .bh-blog-thumb-section.is-large img {
        min-height: 230px;
        max-height: 230px;
   }
    .bh-banner-grid-magazine-style .bh-banner-grid-magazine-big-col .bh-blog-thumb-section.bh-blog-banner-style.bh-banner-style-two.is-large .bh-blog-title {
        font-size: 20px;
   }
    .bh-banner-grid-magazine-row .bh-blog-meta-data {
        display: none;
   }
   /* header5 */
    .bh-header-wrapper.bh-header-style2.bh-header-style5 .bh-top-header-wrapper .bh-top-header-row .bh-notice-wrapper {
        display: none;
   }
    .bh-header-wrapper.bh-header-style2.bh-header-style5 .bh-top-header-wrapper .bh-top-header-row {
        justify-content: center;
   }
    .bh-title-section.bh-title-style4 .bh-title-link:before {
        display: none;
   }
    .bh-main-magazin-blog-wrapper .bh-blog-thumb-section.bh-blog-thumb-style-two .bh-blog-img, .bh-magazine-style3-wrap .bh-blog-image {
        margin: 0 0 30px;
   }
    .bloghub-new-blog-style-wrapper.bloghub-new-blog-style-wrapper .bh-news-style2-wrap .bh-blog-img {
        margin: 0 0 30px;
   }
    .bh-banner-grid-news-small-col .bh-blog-thumb-section.bh-blog-banner-style.bh-banner-style-two.bh-banner-style-three {
        width: 100%;
   }
    .bh-banner-grid-news-big-col .bh-blog-thumb-section.bh-blog-banner-style.bh-banner-style-two.bh-banner-style-three .bh-blog-info-content {
        max-width: 75%;
        left: 40px;
   }
    .bh-dentist-style-wrapper .bh-blog-thumb-section.bh-blog-thumb-style-three.bh-blog-thub-overlay .bh-blog-info-content .bh-blog-meta-data li:first-of-type {
        width: 100%;
        margin: 0 0 10px;
   }
    .bh-header-wrapper.bh-header-style2.bh-header-style4 .login-btn-header .login-text {
        display: none;
   }
    body .bh-top-header-row .bh-word {
        display: none;
   }
    .bh-instagram-wrapper.instagram-style-two .bh-insta-button a {
        position: unset;
        margin-top: 30px;
        padding: 2px 20px;
   }
    .instagram-style-two .bh-instagram-section {
        width: 33%;
   }
    .admin-bar .bh-main-navigation ul.menu {
        top: 50px;
   }
    .login-btn-header .login-icon {
        width: 40px;
        height: 40px;
   }
    .bh-user-login .login-icon {
        background: var(--bloghub-primary-color);
   }
    .bh-header-wrapper.bh-header-style2.bh-header-style4 .bh-date-controls ul {
        flex-direction: row-reverse;
   }
    .bh-header-wrapper.bh-header-style2.bh-header-style4 .bh-date-controls ul .bh-user-login {
        margin: 0;
   }
    .food-latest-post-row .vc_col-sm-12 .wpb_wrapper .container {
        padding: 0;
   }
   .bloghub-blogs-section-img-big img.img-fluid {
       height: 400px;
   }
   .bh-banner-grid-news-row .bh-blog-thumb-section.bh-blog-banner-style.bh-banner-style-two.bh-banner-style-three .bh-blog-title-inner {
       display: none;
   }
}
@media (max-width: 575.98px) {
    .bh-main-navigation ul.menu {
        left: -300px;
        width: 250px;
   }
    .bh-main-navigation.open-menu ul {
        left: 0;
   }
    .bh-post-meta .bh-blog-authore {
        width: 100%;
        display: inline-block;
   }
    .bh-post-meta>* {
        margin-right: 0;
        width: 100%;
   }
   /* Header 1*/
    .bh-header-social ul a svg {
        height: 12px;
   }
   /* Banner Grid 1*/
    .bh-blog-info-content {
        max-width: 260px;
   }
   /* Header2*/
    .bh-header-wrapper.bh-header-style2 .bh-top-header-row .bh-date-controls>ul {
        display: none;
   }
    .bh-header-wrapper.bh-header-style2 .bh-top-header-wrapper .bh-notice-inner {
        justify-content: center;
        text-align: center;
   }
    .bh-header-wrapper.bh-header-style2 .bh-date-controls {
        width: 100%;
        justify-content: center;
   }
   /* header 4 */
    .bh-header-wrapper.bh-header-style2.bh-header-style4 .bh-header-social {
        width: 100%;
        text-align: center;
   }
    .bh-header-wrapper.bh-header-style2.bh-header-style4 .bh-top-header-wrapper {
        padding: 0;
   }
   /* Contact*/
    .bh-contact-details-icon {
        display: none;
   }
    .bh-contact-details-info {
        width: 100%;
        padding: 0;
   }
   /* widget social */
    .widgets-shortcode.wigets-followers .bh-wigets-followers-list li {
        width: 100%;
   }
   /* Header5 */
    .bh-header-wrapper.bh-header-style5 .bh-top-header-row .bh-date-controls>ul {
        display: inherit;
   }
    .bh-header-wrapper.bh-header-style2.bh-header-style5 .bh-top-header-row>.bh-date-controls>ul>li.bh-temperature-info {
        display: none;
   }
    .bh-header-wrapper.bh-header-style2.bh-header-style5 .bh-top-header-row>.bh-date-controls>ul>li:last-child {
        display: none;
   }
    .bh-header-wrapper.bh-header-style2.bh-header-style5 .bh-top-header-row>.bh-date-controls>ul>li:after {
        display: none;
   }
    .bh-header-wrapper.bh-header-style2.bh-header-style5 .bh-top-header-row>.bh-date-controls>ul>li {
        padding: 0;
        margin: 6px 0;
   }
   .bloghub-dentist-horizontal-wrapper .bh-blog-thumb-section.bh-blog-thumb-style5.bh-blog-thumb-style5-horizontal .bh-blog-thumb-inner .bh-blog-details {
        padding: 20px 0 0;
        width: 100%;
   }
   .bh-blog-thumb-section.bh-blog-thumb-style5.bh-blog-thumb-style5-horizontal .bh-blog-thumb-inner .bh-blog-image img {
        height: 100px;
        max-height: 100px;
        min-height: 100px;
        width: 100px;
   }
   .bh-blog-thumb-section.bh-blog-thumb-style5.bh-blog-thumb-style5-horizontal .bh-blog-thumb-inner .bh-blog-image {
        height: 100px;
        width: 100px;
   }
   .bh-blog-thumb-section.bh-blog-thumb-style5.bh-blog-thumb-style5-horizontal .bh-blog-thumb-inner .bh-blog-details {
        width: calc(100% - 100px);
   }
   .bh-header-wrapper.bh-header-style2 .bh-notice-wrapper .bh-word {
        display: none;
   }
   .bh-header-wrapper.bh-header-style2 .bh-top-header-wrapper .bh-notice-inner{ display: none;
   }
    .bh-thumb-style-three-wrapper .bh-blog-meta-data li {
        width: 100%;
        margin: 0 0 10px;
   }
   /*header6*/
   .bh-header-style6 .bh-top-header-wrapper .bh-top-header-row {
       flex-direction: row-reverse;
   }
   .bh-header-style6 .bh-top-header-wrapper .bh-top-header-row .bh-header-social {
       text-align: center;
       width: 100%;
       border-top: 1px solid var(--bloghub-border-color);
       margin: 10px 0 0;
       padding: 10px 0 0;
   }
}

/*******************  global-time-magazine-and-news CSS START  ********************/

/* Title Style Seven */
.blg-title-style-seven {
   border-bottom: 4px double var(--bloghub-border-color);
   padding-bottom: 23px;
}
.blg-title-style-seven .blg-title-inner {
   display: flex;
   flex-wrap: wrap;
   align-items: center;
   justify-content: space-between;
}
.blg-title-style-seven  h2 {
   font-size: 24px;
   font-weight: 600;
   margin: 0;
}
.blg-title-style-seven .blg-title-inner p {
   margin: 0;
}
.blg-title-style-seven .blg-title {
   margin-right: 10px;
}
.blg-title-style-seven .blg-title-inner a {
   font-weight: 600;
   color: var(--bloghub-title-color);
   position: relative;
}
.blg-title-style-seven .blg-title-inner a:hover {
    color: var(--bloghub-primary-color);
}
.blg-title-style-seven .blg-title-inner a:hover svg {
   fill: var(--bloghub-primary-color);
}
.blg-title-style-seven .blg-title-inner a:hover svg,
.blg-title-style-seven .blg-title-inner a svg {
   -webkit-transition: var(--bloghub-transition);
    -moz-transition: var(--bloghub-transition);
    -ms-transition: var(--bloghub-transition);
    -o-transition: var(--bloghub-transition);
    transition: var(--bloghub-transition);
}
.blg-title-style-seven .blg-title-inner a .bh-link-icon svg {
   margin-left: 6px;
   vertical-align: inherit;
}
.blg-title-style-seven .blg-title-inner a:before, 
.blg-title-style-seven .blg-title-inner a:hover:before,
.blg-title-style-seven .blg-title-inner a:after,
.blg-title-style-seven .blg-title-inner a:hover:after {
   -webkit-transition: var(--bloghub-transition);
    -moz-transition: var(--bloghub-transition);
    -ms-transition: var(--bloghub-transition);
    -o-transition: var(--bloghub-transition);
    transition: var(--bloghub-transition);
}
.blg-title-style-seven .blg-title-inner a:before {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  max-width: 0;
  color: var(--bloghub-primary-color);
  content: attr(data-hover);
  -webkit-transition: max-height 0.5s;
  -moz-transition: max-height 0.5s;
  transition: max-height 0.5s;
  white-space: nowrap;
}
.blg-title-style-seven .blg-title-inner a:hover:before {
  max-width: 100%;
}
.blg-title-style-seven .blg-title-inner a:after {
  content: "";
  background: var(--bloghub-primary-color);
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 0%;
}
.blg-title-style-seven .blg-title-inner a:hover:after {
  width: 75%;
}

/* Grid Style CSS Start */
.blg-grid-section {
   margin: 0 0 37px;
   position: relative;
}
.blg-grid-img {
   margin: 0 0 23px;
   position: relative;
}
.blg-grid-img img {
   height: 290px;
   width: 100%;
   object-fit: cover;
   object-position: top center;
}
.blg-thumb-title {
   margin: 0 0 8px;
   font-weight: 600;
   font-size: 28px;
}
.blg-thumb-title:hover {
   color: var(--bloghub-primary-color);
}
.blg-category {
   position: relative;
   display: inline-block;
   padding-left: 20px;
   margin: 0 0 8px;
   font-weight: 600;
   font-size: 14px;
   color: var(--bloghub-primary-color);

}
.blg-category:before {
   content: "";
   position: absolute;
   left: 0;
   height: 2px;
   width: 10px;
   background: var(--bloghub-primary-color);
   top: 0;
   bottom: 0;
   margin: auto;
}
/*list*/
.blg-info-list ul {
   margin: 0;
   padding: 0;
   display: flex;
   flex-wrap: wrap;
   align-items: center;
}
.blg-info-list ul li {
   list-style: none;
   margin: 0;
}
.blg-info-list ul li a {
   color: #9ca7ae;
}
.blg-info-list ul li a:hover {
   color: var(--bloghub-primary-color);
}
.blg-info-list ul li svg {
   height: 14px;
   width: 14px;
   fill: #9ca7ae;
}
.blg-info-list ul li a:hover svg  {
   fill: var(--bloghub-primary-color);
}
.blg-info-list ul li a:hover svg, 
.blg-info-list ul li a svg,
.blg-thumb-title:hover,
.blg-thumb-title {
   -webkit-transition: var(--bloghub-transition);
   -moz-transition: var(--bloghub-transition);
   -ms-transition: var(--bloghub-transition);
   -o-transition: var(--bloghub-transition);
   transition: var(--bloghub-transition);
}
.blg-info-list ul li:not(:last-of-type) {
   margin-right: 30px;
}
.blg-info-list ul li span {
   margin: 0 6px 0 0;
}

.blg-blog-grid-wrap .has-cat-colors .row [class*=col]:first-of-type .blg-grid-section .blg-category {
   color: #1f8eff;
}
.blg-blog-grid-wrap .has-cat-colors .row [class*=col]:first-of-type .blg-grid-section .blg-category:before {
   background: #1f8eff;
}
.blg-blog-grid-wrap .has-cat-colors .row [class*=col]:nth-child(2) .blg-grid-section .blg-category {
   color: #e23aff;
}
.blg-blog-grid-wrap .has-cat-colors .row [class*=col]:nth-child(2) .blg-grid-section .blg-category:before {
   background: #e23aff;
}
.blg-blog-grid-wrap .has-cat-colors .row [class*=col]:nth-child(3) .blg-grid-section .blg-category {
   color: #ff4f85;
}
.blg-blog-grid-wrap .has-cat-colors .row [class*=col]:nth-child(3) .blg-grid-section .blg-category:before {
   background: #ff4f85;
}


/* Horizontal thumb Style CSS Start */
.blg-grid-section.blg-horizontal-grid .blg-grid-inner {
   display: flex;
   flex-wrap: wrap;
   align-items: center;
}
.blg-grid-section.blg-horizontal-grid .blg-grid-img {
   width: 180px;
   margin: 0;
}
.blg-grid-section.blg-horizontal-grid .blg-grid-data {
   width: calc(100% - 180px);
   padding: 0 0 0 30px;
}
.blg-grid-section.blg-horizontal-grid .blg-grid-img img {
   width: 180px;
   height: 160px;
}
.blg-blog-grid-horizontal-wrap.has-cat-colors .row [class*=col]:first-of-type .blg-grid-section .blg-category {
   color: #ffa81f;
}
.blg-blog-grid-horizontal-wrap.has-cat-colors .row [class*=col]:first-of-type .blg-grid-section .blg-category:before {
   background: #ffa81f;
}
.blg-blog-grid-horizontal-wrap.has-cat-colors .row [class*=col]:nth-child(2) .blg-grid-section .blg-category {
   color: #e23aff;
}
.blg-blog-grid-horizontal-wrap.has-cat-colors .row [class*=col]:nth-child(2) .blg-grid-section .blg-category:before {
   background: #e23aff;
}
.blg-blog-grid-horizontal-wrap.has-cat-colors .row [class*=col]:nth-child(3) .blg-grid-section .blg-category {
   color: #0075db;
}
.blg-blog-grid-horizontal-wrap.has-cat-colors .row [class*=col]:nth-child(3) .blg-grid-section .blg-category:before {
   background: #0075db;
}
.blg-blog-grid-horizontal-wrap.has-cat-colors .row [class*=col]:nth-child(4) .blg-grid-section .blg-category {
   color: #324fff;
}
.blg-blog-grid-horizontal-wrap.has-cat-colors .row [class*=col]:nth-child(4) .blg-grid-section .blg-category:before {
   background: #324fff;
}

/*Video Horizontal Section style Three  */
.blg-video-img {
   position: relative;
   margin: 0 0 40px;
}
.blg-video-img-inner > img {
   height: 560px;
   width: 100%;
   object-fit: cover;
   object-position: top;
}
.blg-horizontal-grid .bh-video-text {
   display: none;
}
.blg-video-img-inner {
   position: relative;
}
.blg-video-img-inner:before {
   content: "";
   position: absolute;
   top: 0;
   bottom: 0;
   left: 0;
   right: 0;
   background: #262f41;
   opacity: .4;
}

/*Thumb Large Section style four */

.blg-blog-large-grid-wrap.has-cat-colors .blg-category {
   color: #e23aff;
}
.blg-blog-large-grid-wrap.has-cat-colors .blg-category:before {
   background: #e23aff;
}
.blg-grid-data > p {
   margin: 3px 0 0;
}

/* Horizontal Large style Five */

.blg-blog-grid-horizontal-large-wrap.has-cat-colors .blg-category {
   color: #e23aff;
}
.blg-blog-grid-horizontal-large-wrap.has-cat-colors .blg-category:before {
   background: #e23aff;
}

/* Horizontal Large style Seven */

.blg-blog-grid-style-seven .blg-category {
   color: #76ac2f;
}
.blg-blog-grid-style-seven .blg-category:before {
   background: #76ac2f;
}

/* Horizontal Large style Eight */

.blg-blog-grid-horizontal-large-wrap.style-eight .blg-category {
   color: #21c4f3;
}
.blg-blog-grid-horizontal-large-wrap.style-eight .blg-category:before {
   background: #21c4f3;
}
/*Effect*/
.blg-grid-img-inner {
   position: relative;
   overflow: hidden;
}
.blg-grid-img-inner:before {
   content: "";
   display: block;
   width: 100%;
   height: 100%;
   background-color: var(--bloghub-primary-color);
   position: absolute;
   top: 0px;
   left: 0px;
   transform: skew(60deg);
   transition: all 0.6s ease 0s;
   opacity: 0;
   visibility: hidden;
   z-index: 1;
}
.blg-grid-section:hover .blg-grid-img-inner:before {
   transform: skew(45deg) scale(3);
   opacity: .6;
   visibility: visible;
}

/*Banner Slider*/
.bhh-banner-slider-style2-wrapper.blg-global-time-slider {
   padding: 30px 0 80px;
}
.blg-banner-icon .swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
   content: 'none';
}
.blg-banner-icon .swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
   content: 'none';
}
.blg-banner-icon > div {
   width: 50px;
   height: 80px;
   background: var(--bloghub-secondary-bg);
}
.blg-banner-icon > div svg {
   height: 15px;
   width: 9px;
   fill: var(--bloghub-title-color);
}
.blg-banner-icon > div.swiper-button-prev {
   left: 0;
}
.blg-banner-icon > div.swiper-button-next {
   right: 0;
}
.bhh-banner-slider-style2-wrapper.blg-global-time-slider .bhh-banner-slider-img img {
   height: 510px;
   object-fit: cover;
   width: 100%;
}
.bhh-banner-slider-style2-wrapper.blg-global-time-slider .swiper-slide .bhh-banner-slider-content {
   opacity: 0;
   visibility: hidden;
}
.bhh-banner-slider-style2-wrapper.blg-global-time-slider .swiper-slide.swiper-slide-active .bhh-banner-slider-content {
   opacity: 1;
   visibility: visible;
}
.bhh-banner-slider-style2-wrapper.blg-global-time-slider .swiper-slide.swiper-slide-active .bhh-banner-slider-content,
.swiper-slide.swiper-slide-active .bhh-banner-slider-content,
.bhh-banner-slider-content {
   -webkit-transition: var(--bloghub-transition);
   -moz-transition: var(--bloghub-transition);
   -ms-transition: var(--bloghub-transition);
   -o-transition: var(--bloghub-transition);
   transition: var(--bloghub-transition);
}
.blg-banner-pagination {
   position: relative;
   top: 65px;
}
.blg-banner-pagination span {
   background: var(--bloghub-title-color);
}
.blg-banner-pagination span.swiper-pagination-bullet-active {
   background: var(--bloghub-primary-color);
}
.bhh-banner-slider-style2-wrapper.blg-global-time-slider .bhh-banner-slider-img:before {
   /* display: none; */
}
.bhh-banner-slider-style2-wrapper.blg-global-time-slider .bhh-banner-slider-content {
   left: auto;
   right: 30px;
   background: var(--bloghub-secondary-bg);
   bottom: 30px;
   max-width: 460px;
}
.blg-slider-category {
   position: absolute;
   background: var(--bloghub-title-color);
   left: 40px;
   top: -18px;
   min-height: 35px;
   min-width: 110px;
   display: inline-block;
   color: var(--bloghub-white);
   text-align: center;
   padding: 4px 12px 4px 0;
   font-size: 14px;
   font-weight: 600;
}
.blg-slider-category:before {
   content: "";
   height: 2px;
   width: 10px;
   background: var(--bloghub-white);
   display: inline-block;
   vertical-align: middle;
   margin: 0 6px 3px 0;
}
.bhh-banner-slider-style2-wrapper.blg-global-time-slider .blg-slider-desc {
   color: #555555;
   font-weight: 500;
   font-size: 15px;
}
.blg-slider-blog-info ul li a {
   color: #9ca7ae;
}
.bhh-banner-slider-style2-wrapper.blg-global-time-slider .blg-slider-blog-content {
   padding: 60px 40px 12px;
}
.bhh-banner-slider-style2-wrapper.blg-global-time-slider .blg-slider-blog-content h4 {
   font-size: 22px;
   font-weight: 600;
   margin: 0 0 1px;
}
.blg-slider-blog-info .blg-info-list ul {
   padding: 13px 40px 16px;
   border-top: 1px solid var(--bloghub-border-color);
}
/* Effect */

.blg-slide-effect {
   position: relative;
   overflow: hidden;
}

.blg-slide-effect:hover:before {
   transition-delay: 225ms;
}

.blg-slide-effect:hover:after,
.blg-slide-effect:hover:before {
   transform: translateY(0);
}

.blg-slide-effect:before {
   content: "" !important;
   background: linear-gradient(transparent, var(--bloghub-title-color));
   height: 100%;
   width: 25%;
   transform: translateY(-110%);
   position: absolute;
   left: 0;
   top: 0;
   z-index: 1;
   transition: all .4s;
}

.blg-slide-effect:hover:after {
   transition-delay: 75ms;
}

.blg-slide-effect:hover:after,
.blg-slide-effect:hover:before {
   transform: translateY(0);
}

.blg-slide-effect:after {
   left: 25%;
}

.blg-slide-effect:after {
   content: "";
   background: linear-gradient(transparent, var(--bloghub-title-color));
   height: 100%;
   width: 25%;
   transform: translateY(-110%);
   position: absolute;
   left: 1px;
   top: 0;
   z-index: 1;
   transition: all .4s;
}

.blg-slide-effect:after {
   left: 25%;
}

.blg-slide-effect .blg-slide-effect-inner:before {
   left: 50%;
}

.blg-slide-effect .blg-slide-effect-inner:after {
   left: 75%;
}

.blg-slide-effect-inner:after,
.blg-slide-effect-inner:before {
   content: "";
   background: linear-gradient(transparent, var(--bloghub-title-color));
   height: 100%;
   width: 25%;
   transform: translateY(-110%);
   position: absolute;
   left: 0;
   top: 0;
   z-index: 1;
   transition: all .4s;
}

.blg-slide-effect .blg-slide-effect-inner {
   width: 100%;
   height: 100%;
   position: absolute;
   bottom: 0;
   left: 0;
   transition: all .2s;
}

.blg-slide-effect:hover .blg-slide-effect-inner:before {
   transition-delay: 0.15s;
}

.blg-slide-effect:hover .blg-slide-effect-inner:after,
.blg-slide-effect:hover .blg-slide-effect-inner:before {
   transform: translateY(0);
}
/**/
.bhh-banner-slider-style2-wrapper.blg-global-time-slider .swiper-slide.swiper-slide-next .bhh-banner-slider-img img,
.bhh-banner-slider-style2-wrapper.blg-global-time-slider .swiper-slide.swiper-slide-prev .bhh-banner-slider-img img  {
   transform: scale(1.5);
   transition: all 1s;
}
.bhh-banner-slider-style2-wrapper.blg-global-time-slider .swiper-slide.swiper-slide-active .bhh-banner-slider-img img {
   transform: scale(1);
   transition: all 5s;
}
/*Insta*/
.bh-instagram-wrapper.blg-instagram-style3 .bh-insta-icon {
   background: transparent;
}
.bh-instagram-wrapper.blg-instagram-style3 .bh-instagram-section img{
    filter: none;
}
.bh-instagram-wrapper.blg-instagram-style3 .bh-instagram-section {
    overflow: hidden;
}
.bh-instagram-wrapper.blg-instagram-style3 .bh-instagram-section:hover img {
    filter: opacity(0.5);
    filter: grayscale(1);
}

.bh-instagram-wrapper.blg-instagram-style3 .bh-instagram-section:hover,
.bh-instagram-wrapper.blg-instagram-style3 .bh-instagram-section img, 
.bh-instagram-wrapper.blg-instagram-style3 .bh-instagram-section:hover img, 
.bh-instagram-wrapper.blg-instagram-style3 .bh-instagram-section img,
.bh-instagram-wrapper.blg-instagram-style3 .bh-instagram-section,
.bh-instagram-wrapper.blg-instagram-style3 .bh-instagram-section:hover,
.bh-instagram-wrapper.blg-instagram-style3 .bh-instagram-section .bh-insta-inner,
.bh-instagram-wrapper.blg-instagram-style3 .bh-instagram-section .bh-insta-inner:hover,
.bh-instagram-wrapper.blg-instagram-style3 .bh-instagram-section .bh-insta-inner img, .bh-instagram-wrapper.blg-instagram-style3 .bh-instagram-section .bh-insta-inner:hover img{
    -webkit-transition: var(--bloghub-transition);
    -moz-transition: var(--bloghub-transition);
    -ms-transition: var(--bloghub-transition);
    -o-transition: var(--bloghub-transition);
    transition: var(--bloghub-transition);
}
.bh-instagram-wrapper.blg-instagram-style3 .bh-instagram-section .bh-insta-inner {
    display: block;
    overflow: hidden;
}
/*Widget */
/* twitter */
.widget-twitter-section {
   text-align: center;
}
.blg-twit-info svg {
   fill: var(--bloghub-primary-color);
}
.blg-twit-info h4 {
   font-size: 16px;
   font-weight: 600;
   color: #353d42;
   margin: 10px 0 0;
}
.blg-twit-info span {
   display: block;
   color: #9ca7ae;
   font-size: 12px;
}
.twit-date {
   color: var(--bloghub-primary-color);
   font-size: 15px;
   font-weight: 500;
}
.widget-twitter-section p {
   margin: 0 0 9px;
}
.blg-twitter-pagination .swiper-pagination-bullet {
   background: var(--bloghub-title-color);
   width: 7px;
   height: 7px;
}
.blg-twitter-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
   background: var(--bloghub-primary-color);
}
.blg-twitter-pagination {
   margin: 10px 0 0;
}
/* Newsletter*/
.widget-newsletter-section {
   text-align: center;
   max-width: 285px;
   margin: auto;
}
.blg-newsletter-icon {
   display: inline-block;
   width: 70px;
   height: 70px;
   line-height: 70px;
   background: #fef4ef;
   border-radius: 50%;
   margin: 0 0 10px;
}
.widget-newsletter-section h4 {
   font-size: 18px;
   font-weight: 600;
}
.widget-newsletter-section p {
   font-size: 15px;
   margin: 0 0;
}
.news-letter-box input {
   border-radius: 0 !important;
   margin: 0 0 20px;
}
.news-letter-box .bh-btn {
   border-radius: 0px !important;
   background: var(--bloghub-title-color) !important;
   padding: 12px 20px 13px;
}
.news-letter-box .bh-btn svg {
   fill: var(--bloghub-white);  
   margin: 0 0 0 6px;
}
.blg-post-widget-style2 .post-img-thumb img {
   border-radius: 0;
}
.blg-post-widget-style2 .recent-post-titl {
   width: calc(100% - 80px);
   padding-left: 20px;
}
/*Footer inline social */
.blg-inline-social ul {
   display: flex;
   flex-wrap: wrap;
   padding: 0;
   margin: 0;
   justify-content: center;
}
.blg-inline-social ul li {
   margin: 0 40px 10px 0;
   list-style: none;
}
.blg-inline-social ul a .blg-s-icon{
   height: 40px;
   width: 40px;
   display: inline-block;
   line-height: 38px;
   border: 1px solid var(--bloghub-border-color);
   border-radius: 50%;
   text-align: center;
   margin: 0 10px 0 0;
}
.blg-inline-social ul a .blg-s-icon:hover {
   border-color: var(--bloghub-primary-color);
}
.blg-inline-social ul a .blg-s-icon svg {
   height: 14px;
   fill: var(--bloghub-title-color);
}
.blg-inline-social ul a .blg-s-icon:hover svg {
   fill: var(--bloghub-primary-color);
}
.blg-inline-social ul a .blg-s-icon:hover svg, .blg-inline-social ul a .blg-s-icon svg {
   -webkit-transition: var(--bloghub-transition);
   -moz-transition: var(--bloghub-transition);
   -ms-transition: var(--bloghub-transition);
   -o-transition: var(--bloghub-transition);
   transition: var(--bloghub-transition);
}
.blg-inline-social ul li a {
   display: flex;
   flex-wrap: wrap;
   align-items: center;
}
.blg-about-authore .bh-golbal-social {
   position: relative;
}
.blg-about-authore .bh-golbal-social:before {
   content: "";
   position: absolute;
   height: 1px;
   background: var(--bloghub-border-color);
   left: -20px;
   right: -20px;
   top: 22px;
}
.blg-about-authore .bh-golbal-social a {
   background: var(--bloghub-secondary-bg);
   position: relative;
}
.blg-inline-social {
   text-align: center;
   border-bottom: 1px solid var(--bloghub-border-color);
   padding-bottom: 30px;
}
.blg-inline-social .bh-social-footer-logo {
   margin: 0 0 40px;
}
.blg-post-widget-style2 .bh-post-list li a p .bh-post-title {
   font-size: 16px;
   font-weight: 600;
}
/* Responsive CSS */

@media screen and (min-width: 1800px) {
   .bhh-banner-slider-style2-wrapper.blg-global-time-slider .swiper-slide {
       max-width: 970px;
       margin: 0 auto;
   }
}

@media screen and (min-width: 1200px) {
   .blg-global-time-magazine-and-news-styles .row {
       margin-left: -20px;
       margin-right: -20px;
   }
   .blg-global-time-magazine-and-news-styles .row >* {
       padding-left: 20px;
       padding-right: 20px;
   }
   .blg-video-img-inner .bh-video-play-icon .bh-video-svg {
       width: 100px;
       height: 100px;
   }
   .blg-blog-large-grid-wrap .blg-grid-img img {
       height: 400px;
   }
   /*Horizontal-lg*/
   .blg-blog-grid-horizontal-large-wrap .blg-grid-section .blg-grid-img {
       width: 210px;
   }
   .blg-blog-grid-horizontal-large-wrap .blg-grid-section .blg-grid-img img {
       width: 210px;
       height: 210px;
   }
   .blg-blog-grid-horizontal-large-wrap .blg-grid-section .blg-grid-data {
       width: calc(100% - 210px);
   }
   .max-width-container > .wpb_column {
       max-width: 1730px;
       margin: auto;
       float: unset;
   }
}

@media screen and (max-width: 991px) {
   .blg-banner-icon {
       display: none;
   }
   .bhh-banner-slider-style2-wrapper.blg-global-time-slider .swiper-slide.swiper-slide-next .bhh-banner-slider-img img,
   .bhh-banner-slider-style2-wrapper.blg-global-time-slider .swiper-slide.swiper-slide-prev .bhh-banner-slider-img img,
   .bhh-banner-slider-style2-wrapper.blg-global-time-slider .swiper-slide.swiper-slide-active .bhh-banner-slider-img img  {
       transition: all 1s;
   }
   .bhh-banner-slider-style2-wrapper.blg-global-time-slider .swiper-slide.swiper-slide-next .bhh-banner-slider-img img,
   .bhh-banner-slider-style2-wrapper.blg-global-time-slider .swiper-slide.swiper-slide-prev .bhh-banner-slider-img img  {
       transform: scale(1.1);
   }
   .blg-grid-section.blg-horizontal-grid .blg-grid-img {
       width: 80px;
   }
   .blg-grid-section.blg-horizontal-grid .blg-grid-img img {
       width: 80px;
       height: 80px;
   }
   .blg-global-time-magazine-and-news-styles .popup-youtube .bh-video-svg {
       width: 40px;
       height: 40px;
   }
   .blg-grid-section.blg-horizontal-grid .blg-grid-data {
       width: calc(100% - 80px);
       padding: 0 0 0 20px;
    }
    .blg-global-time-magazine-and-news-styles .blg-thumb-title {
       white-space: nowrap;
       width: 100%;
       overflow: hidden;
       text-overflow: ellipsis;
   }
   
}
@media screen and (max-width: 767px) {
   .bhh-banner-slider-style2-wrapper.blg-global-time-slider .blg-slider-blog-content {
       padding: 50px 20px 12px;
   }
   .blg-slider-blog-info .blg-info-list ul {
       padding: 13px 20px 16px;
   }
   
}
@media screen and (max-width: 575px) {
   .bhh-banner-slider-style2-wrapper.blg-global-time-slider .bhh-banner-slider-content {
       right: 10px;
       bottom: 10px;
       max-width: 250px;
   }
}
/*******************  global-time-magazine-and-news CSS END  ********************/

/*******************  Architect-magazine CSS Start  ********************/
/* Banner Slider */
.blg-architect-magazine .bhh-banner-slider-style1 .blg-slider-category {
   top: 20px;
   left: 35px;
   z-index: 9;
   border-radius: 40px;
   padding: 7px 10px;
   background: var(--bloghub-primary-color);
   color: var(--bloghub-white);
}
.blg-architect-magazine .bhh-banner-slider-style1 .blg-slider-category:before {
   display: none;
}
.blg-architect-magazine .bhh-banner-slider-content {
   left: 30px;
   bottom: 20px;
   max-width: 75%;
}
.blg-architect-magazine .blg-slider-blog-content h4 a {
   color: var(--bloghub-white);
}
.blg-architect-magazine .blg-slider-blog-content h4 a:hover {
   color: var(--bloghub-primary-color);
}
.blg-architect-magazine .bhh-banner-slider-content .blg-slider-desc {
   font-weight: 400;
}
.blg-architect-magazine .bhh-banner-slider-style1 .bhh-banner-slider-img, .blg-architect-magazine .bhh-banner-slider-style1 .bhh-banner-slider-img img {
   overflow: hidden;
   border-radius: 10px;
   width: 100%;
   max-height: 510px;
   object-fit: cover;
   min-height: 510px;
}
.blg-architect-magazine .bhh-banner-slider-style1:hover .bhh-banner-slider-img img {
   transform: scale(1.2) translateX(10px);
}
.blg-architect-magazine .bhh-banner-slider-style1:hover .bhh-banner-slider-img img,
.blg-architect-magazine .bhh-banner-slider-style1 .bhh-banner-slider-img img,
.blg-architect-magazine .bhh-banner-slider-style1,
.blg-architect-magazine .bhh-banner-slider-style1:hover{
   -webkit-transition: var(--bloghub-transition);
    -moz-transition: var(--bloghub-transition);
    -ms-transition: var(--bloghub-transition);
    -o-transition: var(--bloghub-transition);
    transition: var(--bloghub-transition);   
}
/* Cat stlye 2*/
.blg-category-style2 .bh-category-section {

}
.blg-category-style2 .bh-category-section .bh-category-inner {
   overflow: hidden;
   border-radius: 10px;
}
.blg-category-style2 .bh-category-section:before {
   border-radius: 10px;
   display: none;
}
.blg-category-style2 .bh-category-section .bh-category-btn {
   top: auto;
   bottom: -22px;
}
.blg-category-style2 .bh-category-section .bh-category-btn .bh-category-button {
   border-radius: 30px;
   box-shadow: 0 0 30px rgb(0 0 0 / 8%);
}
.blg-category-style2 .bh-category-section .bh-category-inner {
   box-shadow: 0 0 40px rgb(0 0 0 / 8%);
}
.blg-category-style2 .bh-category-section:hover .bh-category-btn .bh-category-button {
   -webkit-transform: translateY(-50px);
   -moz-transform: translateY(-50px);
   -ms-transform: translateY(-50px);
   -o-transform: translateY(-50px);
   transform: translateY(-50px);
}
.blg-category-style2 .bh-category-section:hover img {
   transform: scale(1.2) translateX(10px);
}
.blg-category-style2 .bh-category-section:hover img,
.blg-category-style2 .bh-category-section:hover,
.blg-category-style2 .bh-category-section,
.blg-category-style2 .bh-category-section img {
   -webkit-transition: var(--bloghub-transition);
   -moz-transition: var(--bloghub-transition);
   -ms-transition: var(--bloghub-transition);
   -o-transition: var(--bloghub-transition);
   transition: var(--bloghub-transition);   
}
.blg-category-style2 .bh-category-section .bh-category-inner img.img-fluid {
   filter: saturate(0.5);
}
/* Title Style Seven*/
.bh-title-section.bh-title-style7 {

}
.bh-title-section.bh-title-style7 .bh-title-inner h2 {
   background: transparent;
   padding: 0 0 0 20px;
   text-transform: capitalize;
}
.bh-title-section.bh-title-style7 .bh-title-inner:before {
   width: 3px;
   background: var(--bloghub-title-color);
   border: 0;
   top: 3px;
   height: 20px;
   border-radius: 10px;
}
/* Blogs */
.blg-architect-magazine-styles .blg-grid-img-inner, .blg-architect-magazine-styles .blg-grid-img-inner img {
   border-radius: 10px;
}
.blg-architect-magazine-styles 
.blg-category {
   padding-left: 70px;
}
.blg-architect-magazine-styles .blg-category:before {
   background: var(--bloghub-font-color);
   width: 60px;
   height: 1px;
   opacity: .5;
}
.blg-architect-magazine-styles .blg-category:hover:before {
   background: var(--bloghub-primary-color);
}
.blg-architect-magazine-styles .blg-category:hover:before, 
.blg-architect-magazine-styles .blg-category:before {
   -webkit-transition: var(--bloghub-transition);
   -moz-transition: var(--bloghub-transition);
   -ms-transition: var(--bloghub-transition);
   -o-transition: var(--bloghub-transition);
   transition: var(--bloghub-transition);   
}
/* blog info*/
.blg-blogger-writter {
   display: flex;
   flex-wrap: wrap;
   align-items: center;
   border-top: 1px solid var(--bloghub-border-color);
   padding: 20px 0 3px;
   margin: 14px 0 0;

}
.blg-blogger-img {
   width: 50px;
}
.blg-blogger-img img {
   width: 50px;
   border-radius: 50%;
   height: 50px;
   border: 1px solid var(--bloghub-border-color);
   filter: unset !important;
}
body .has-video .blg-blogger-img img {
   filter: unset !important;
}
.blg-blogger-info {
   padding: 0 0 0 20px;
   width: calc(100% - 50px);
}
.blg-blogger-info h4 {
   font-size: 15px;
   font-weight: 500;
   margin: 0;
}
.blg-blogger-info span {
   font-size: 12px;
   color: var(--bloghub-primary-color);
   font-weight: 500;
}
.blg-architect-magazine-styles .bh-video-text {
   display: none;
}
.blg-architect-magazine-styles .blg-blog-grid-style-seven  .blg-thumb-title {
   font-size: 24px;
}
.blg-architect-magazine-styles .blg-blog-grid-style-seven .blg-category {
    color: var(--bloghub-primary-color);
}
/* Heasder 7 */
.bh-header-wrapper.bh-header-style7 {

}
.bh-header-wrapper.bh-header-style7 .menu li a {
   text-transform: capitalize;
}
.bh-header-wrapper.bh-header-style7 .bh-main-header .bh-logo-wrap {
   min-width: auto;
}
.header-banner-wrapper {
   margin: 3px 0;
}
.bh-header-wrapper.bh-header-style7 .bh-top-header-row .bh-date-controls>* {
   justify-content: unset;
}
.bh-header-wrapper.bh-header-style7 .bh-top-header-row .bh-date-controls>* .bh-header-social {
   margin: 0;
}
.bh-header-wrapper.bh-header-style7 .bh-main-header {
   background: var(--bloghub-header-bg);
}
@media screen and (min-width: 1200px) {
   .bh-header-wrapper.bh-header-style7 .bh-main-nav-wrapper .menu>li>a:after {
       border-radius: 50%;
   }
   .bh-header-wrapper.bh-header-style7 .bh-main-nav-wrapper .menu>li>a {
       padding: 10px 0;
   }
   .bh-header-wrapper.bh-header-style6 .menu > li {
       padding: 0 25px;
   }
   .bh-header-wrapper.bh-header-style6 .menu > li >a {
       padding: 12px 0;
   }
   .bh-header-wrapper.bh-header-style6 .menu > li.new-tag-menu:after {
       content: "New" !important;
       position: absolute;
       font-size: 12px;
       font-weight: 600;
       color: #ff2160;
       top: 6px;
   }
}

@media screen and (min-width: 1800px) {
   .blg-architect-magazine-styles .blg-category:hover:before {
       width: 80px;
   }
   .blg-architect-magazine-styles .blg-category:hover {
       padding-left: 90px;
   }
}

@media screen and (max-width: 1199px) {
   .bh-header-wrapper.bh-header-style7 .bh-top-header-row {
       justify-content: center;
   }
}
@media screen and (max-width: 991.98px) {
   .header-banner-wrapper img {
       max-height: 60px;
   }
}
@media screen and (max-width: 767.98px) {
   .header-banner-wrapper  {
       display: none;
   }
   .blg-architect-magazine .bhh-banner-slider-style1 .bhh-banner-slider-img, 
   .blg-architect-magazine .bhh-banner-slider-style1 .bhh-banner-slider-img img {
       max-height: 420px;
       min-height: 420px;
   }
}
@media screen and (max-width: 575.98px) {
   .bh-header-wrapper.bh-header-style7 .bh-top-header-row .bh-date-controls>ul {
       display: block;
   }
}
/*******************  Architect-magazine CSS End   ********************/
.woocommerce table a.remove {
    padding-top: 6px;
}
/*******************  Tour CSS Start  ********************/
/* Header 8 */
.blg-header-style8 .menu>li>a {
   display: inline-block;
}
.blg-header-style8 .menu>li>a {
   text-transform: uppercase;
   font-size: 14px;
}
.blg-header-style8 .menu>li>a:hover {
   color: var(--bloghub-primary-color);
}
/*Banner Slider */
.blg-tour-banner-slider .bh-blog-category {
   background: var(--bloghub-primary-color);
}
.blg-tour-banner-slider .bloghub-v-slide-img {
   border-radius: 0px;
}
.blg-tour-banner-slider .bloghub-verticle-thumb .bloghub-v-slide-content .bh-blog-title:hover {
   color: var(--bloghub-primary-color);
}

.blg-tour-banner-slider .popup-youtube .bh-video-svg {
   background: var(--bloghub-primary-color);
}
.blg-tour-banner-slider .popup-youtube .bh-video-svg:before {
   content: "";
   position: absolute;
   top: 0;
   right: 0;
   bottom: 0;
   left: 0;
   z-index: 0;
   border-radius: 50%;
   transition: all 0.3s;
   animation: animation_ripple 2s infinite;
}
.blg-tour-banner-slider 
.bloghub-vertical-small-slide .bh-video-play-icon {
   width: 80px;
   height: 80px;
}
.blg-tour-banner-slider .bloghub-vertical-small-slide .bh-video-play-icon .bh-video-svg {
   width: 50px;
   height: 50px;
}
.blg-tour-banner-slider .bloghub-v-slide-img:before {
    opacity: .6;
}
@keyframes animation_ripple {
   0% {
       box-shadow: 0 0 0 0 rgb(255 255 255 / 30%);
   }
   100% {
       box-shadow: 0 0 0 35px rgb(255 255 255 / 0%);
   }
}
.bh-header-wrapper.blg-header-style8 {
   padding: 10px 0;
}

@media screen and (min-width: 1200px) {
   .blg-header-style8 .menu>li>a {
       padding: 20px 0;
   }
   .blg-header-style8.bh-header-wrapper .menu>li {
       padding: 0 20px;
   }
}

@media screen and (min-width: 1800px) {
 
}

@media screen and (max-width: 1199px) {
   .bh-header-wrapper.blg-header-style8 .bh-header-searh-wrap {
       margin: 0 0 0 20px;
   }
}
@media screen and (max-width: 991.98px) {
  
}
@media screen and (max-width: 767.98px) {
  
}
@media screen and (max-width: 575.98px) {
   
}

/*******************  Tour CSS End   ********************/


/*******************  Fashion CSS Start  ********************/
/* Banner SLider */
.blg-fashion-banner .bhh-banner-slider-img img {
   height: 500px;
   object-fit: cover;
   object-position: top;
}
.blg-fashion-banner {

}
.blg-fashion-banner .bhh-banner-slider-style1 {
   border-radius: 10px;
   overflow: hidden;
}
.blg-fashion-banner .bhh-banner-slider-content {
   left: 20px;
   max-width: fit-content;
   bottom: 20px;
   right: 20px;
   top: auto;
}
.blg-fashion-banner .bhh-banner-slider-content h4 a {
   color: var(--bloghub-white);
}
.blg-fashion-banner .bhh-banner-slider-content h4 a:hover {
   color: var(--bloghub-primary-color);
}
.blg-f-slider-category {
   background: var(--bloghub-secondary-bg);
   color: var(--bloghub-primary-color) !important;
   padding: 2px 10px;
   display: inline-block;
   border-radius: 3px;
   font-weight: 500;
   letter-spacing: 1px;
   margin: 0 0 10px;
   font-size: 14px;
}
.blg-fashion-banner .bhh-banner-slider-content h4 a {
   color: var(--bloghub-white);
   font-size: 28px;
}
.blg-fashion-banner .bhh-banner-slider-content .blg-slider-desc {
   margin: 0 0 20px;
   font-weight: 400;
}
/* Header 9*/
.bh-header-wrapper.bh-header-style9 .bh-logo-wrap {
   padding: 20px 0;
}
.bh-header-wrapper.bh-header-style9 .bh-logo-wrap {
   width: 100%;
   background: var(--bloghub-white);
}
.bh-header-wrapper.bh-header-style9 .bh-main-nav-wrapper {
   background: var(--bloghub-secondary-bg);
}
.bh-header-wrapper.bh-header-style9 .bh-main-navigation {
   justify-content: center;
}
/* Masonry Grid Blogs */
.masonry-grid-blog {
   -moz-column-count: 3;
   -moz-column-gap: 30px;
   -webkit-column-count: 3;
   -webkit-column-gap: 30px;
   column-count: 3;
   column-gap: 30px;
}
.blg-grid-masonry-col {
   padding: 0;
   margin: 0;
   position: relative;
   display: inline-block;
   width: 100%;
}
.blg-grid-masonry-img {
   position: relative;
}
.blg-grid-masonry-section {
   display: flex;
   flex-wrap: wrap;
   margin-bottom: 30px;
   padding: 0;
   position: relative;
   background: var(--bloghub-secondary-bg);
   border-radius: 10px;
   overflow: hidden;
}
.blg-reading-time {
   position: absolute;
   display: inline-flex;
   padding: 5px 15px;
   background: var(--bloghub-primary-color);
   left: 0;
   right: 0;
   margin: auto;
   width: fit-content;
   color: var(--bloghub-white);
   font-size: 14px;
   font-weight: 500;
   letter-spacing: 1px;
   border-radius: 3px;
   bottom: 20px;
   min-width: 130px;
   text-align: center;
   justify-content: center;
   box-shadow: 0 0 30px 0 rgb(0 0 0 / 8%);
}
.blg-reading-time:hover,.blg-reading-time:focus, .blg-reading-time, .blg-reading-time:hover, .blg-reading-time:focus {
   color: var(--bloghub-white) !important;
}

.blg-grid-masonry-img-inner {
   position: relative;
   display: inline-block;
   overflow: hidden;
   width: 100%;
   margin: 0 0 24px;
}
.blg-grid-masonry-details {
   padding: 0 20px 17px;
   display: inline-block;
   width: 100%;
}
.blg-grid-masonry-section .bh-blog-category {
   text-transform: capitalize;
   letter-spacing: 1px;
   font-size: 14px;
}
.bh-header-wrapper.bh-header-style9 .bh-logo-wrap {
   background-position: center;
}
/* Title 9*/
.blg-title-section.titl-style9 h2 {
   font-size: 32px;
   margin: 0 0 0px;
}
.blg-fashion-banner .bhh-banner-slider-style1, .blg-fashion-banner .bhh-banner-slider-style1:hover, .blg-fashion-banner .bhh-banner-slider-style1 img, .blg-fashion-banner .bhh-banner-slider-style1:hover img {
   -webkit-transition: var(--bloghub-transition);
   -moz-transition: var(--bloghub-transition);
   -ms-transition: var(--bloghub-transition);
   -o-transition: var(--bloghub-transition);
   transition: var(--bloghub-transition);   
}
.blg-fashion-banner .bhh-banner-slider-style1:hover img {
   transform: scale(1.2);
}
@media screen and (min-width: 1200px) {
   .bh-header-wrapper.bh-header-style9 .bh-main-navigation .menu>li>a {
       color: var(--bloghub-white);
       padding: 10px 0;
   }
   .blg-fashion-banner .bhh-banner-slider-style1 img {
       height: 700px;
   }
}

@media screen and (min-width: 1800px) {
 
}

@media screen and (max-width: 1199px) {
   .masonry-grid-blog {
       -moz-column-count: 2;
       -webkit-column-count: 2;
       column-count: 2;
   }
   .bh-header-wrapper.bh-header-style9 .bh-logo-wrap > * {
       display: flex;
       flex-wrap: wrap;
       justify-content: space-between;
       padding: 0 15px;
   }
}
@media screen and (max-width: 991.98px) {
   
}
@media screen and (max-width: 767.98px) {
   
}
@media screen and (max-width: 575.98px) {
   .masonry-grid-blog {
       -moz-column-count: 1;
       -webkit-column-count: 1;
       column-count: 1;
   }
}

/*******************  Fashion CSS END  ********************/
/*******************  Kids Care CSS Start  ********************/
/* Banner SLider */

.blg-kid-care-slider .bhh-banner-slider-content {
   left: 30px;
   right: 30px;
   width: auto;
   text-align: center;
   background: var(--bloghub-secondary-bg);
   bottom: -30px;
   padding: 20px 20px 20px;
   border-radius: 10px;
   box-shadow: 0 0 20px rgb(0 0 0 / 16%);
   visibility: hidden;
   opacity: 0;
}
.bhh-banner-slider-style2-wrapper.blg-kid-care-slider .swiper {
   padding: 0 0 50px;
}
.bhh-banner-slider-style2-wrapper.blg-kid-care-slider .swiper .swiper-slide-active .bhh-banner-slider-content {
   visibility: visible;
   opacity: 1;
}
.blg-kid-care-slider .bhh-banner-slider-style1 .blg-slider-blog-content h4 a {
   color: var(--bloghub-title-color);
   font-size: 24px;
   font-weight: 700;
}
.blg-kids-blog-wrapper .bh-video-svg {
   content: "";
   position: absolute;
   top: 0;
   right: 0;
   bottom: 0;
   left: 0;
   z-index: 0;
   border-radius: 50%;
   transition: all 0.3s;
   animation: animation_ripple 2s infinite;
}
.blg-kid-care-slider .bhh-banner-slider-img {
    overflow: hidden;
    border-radius: 10px;
}
/* Blog*/
.blg-kids-blog-wrapper .blg-grid-section {}
.blg-kids-blog-wrapper .blg-grid-section .blg-blogger-img {
   position: absolute;
   bottom: -20px;
   right: 30px;
}
.blg-kids-blog-wrapper .blg-grid-section .blg-blogger-img img {
   border: 2px solid var(--bloghub-border-color);
   box-shadow: 0 0 20px rgb(0 0 0 / 18%);
}
.blg-categories {
   background: var(--bloghub-primary-color);
   padding: 2px 20px;
   text-align: center;
   min-width: 100px;
   border-radius: 3px;
   color: var(--bloghub-white);
   margin: 0 0 15px;
   display: inline-block;
}
.blg-categories:hover, .blg-categories:focus, .blg-categories {
   color: var(--bloghub-white) !important;
}
.blg-kids-blog-wrapper .blg-grid-img .blg-grid-img-inner img {
   border-radius: 10px;
}
.blg-kids-blog-wrapper .bh-video-svg {
   background: var(--bloghub-primary-color);
   border: 4px solid var(--bloghub-white);
}
.blg-kids-blog-wrapper .blg-grid-img-inner:before {
   display: none;
}
.blg-kids-blog-wrapper .blg-grid-section.blg-horizontal-grid .bh-video-svg {
   height: 50px;
   width: 50px;
   border-width: 2px;
}
.blg-kids-blog-wrapper .blg-grid-section:hover .blg-grid-img-inner img , 
.blg-kids-blog-wrapper .blg-grid-section .blg-grid-img-inner img ,
.blg-kids-blog-wrapper .blg-grid-section:hover .blg-grid-img-inner ,
.blg-kids-blog-wrapper .blg-grid-section .blg-grid-img-inner,
.blg-kids-blog-wrapper .blg-grid-section {
    -webkit-transition: var(--bloghub-transition);
   -moz-transition: var(--bloghub-transition);
   -ms-transition: var(--bloghub-transition);
   -o-transition: var(--bloghub-transition);
   transition: var(--bloghub-transition);  
}
.blg-kids-blog-wrapper .blg-grid-section:hover .blg-grid-img-inner img {
   -webkit-transform: scale(1.2);
   transform: scale(1.2);
}
.blg-kids-blog-wrapper .blg-grid-section .blg-grid-img-inner {
    border-radius: 10px;
}
@media screen and (max-width: 1199px) {
   .blg-kid-care-slider .bhh-banner-slider-style1 .blg-slider-blog-content h4 a {
       font-size: 20px;
   }
}
/*******************  Kids Care CSS END  ********************/

body:not(.dark-demo) .bh-header-wrapper.bh-header-style9 .bh-main-nav-wrapper {
    background: var(--bloghub-title-color);
}
.bh-main-header.bh-header-sticky.fixed-header, .blg-header-style8.bh-header-sticky.fixed-header.animated.fadeInDown {
    position: fixed;
    top: 0;
    background: #fff;
    z-index: 99;
    right:0;
    left: 0;
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 8%);
}
.box-layout .bh-breadcrumb-wrapper {
    max-width: 1400px;
    margin: auto;
}
.box-layout .bh-shop-wrapper {
    margin: auto;
    background: var(--bloghub-main-color);
    background: var(--boxed-bg);
    max-width: 1400px;
}
.bh-product-hover ul .bh-product-icon:hover {
    background: var(--bloghub-hover-btn-bg);
}


.blg-video-lg-blog-section .blg-video-img-inner {
   position: relative;
   overflow: hidden;
}
.blg-video-lg-blog-section .blg-video-img-inner:after {
   content: "";
   display: block;
   width: 100%;
   height: 100%;
   background-color: var(--bloghub-primary-color);
   position: absolute;
   top: 0px;
   left: 0px;
   transform: skew(60deg);
   transition: all 0.6s ease 0s;
   opacity: 0;
   visibility: hidden;
   z-index: 1;
}
.blg-video-lg-blog-section:hover .blg-video-img-inner:after {
   transform: skew(45deg) scale(3);
   opacity: .6;
   visibility: visible;
}
.blg-video-lg-blog-section .blg-video-img-inner .bh-video-play-icon {
    z-index: 999;
}
.bh-header-wrapper.bh-header-style2.bh-header-style3 .bh-top-header-wrapper .bh-date-controls ul .bh-today-date span svg {
    vertical-align: middle;
}
.bh-header-wrapper.bh-header-style2.bh-header-style3 .bh-search-fields input {
    font-size: 14px;
}
.bh-header-wrapper.bh-header-style2.bh-header-style3 .bh-top-header-wrapper .bh-date-controls ul .bh-today-date span svg {
    vertical-align: text-top;
}
.bh-instagram-wrapper.instagram-style-two .bh-insta-icon:hover svg, .bh-instagram-wrapper.instagram-style-two .bh-insta-icon:hover svg path {
    fill: var(--bloghub-white) !important;
}
.bh-footer-widget.menu-arrow .menu li span {
    background: transparent;
    top: -2px;
}
.bh-footer-widget.menu-arrow .menu li {
    padding-left: 20px;
}
.bh-footer-widget:not(.menu-arrow) ul li span svg {
    display: none;
}
.bh-footer-widget:not(.menu-arrow) ul li span {
    top: 10px;
}
.sticky-sidebar > div {
    align-items: flex-start;
    position: relative;
}
body .elementor-widget-google_maps iframe {
    height: 600px;
}
.bh-header-style10 .bh-user-login .login-btn-header {
    background: #25346c !important;
    min-width: 113px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
  .bh-header-style10 .bh-user-login .login-btn-header .login-icon{
  display:none;

  }
   .bh-header-style10 .bh-cart-wrapper {
    position: relative;
    margin-right: 26px;
}
  .bh-header-style10 .bh-date-controls ul li.bh-user-login {
	  margin-top:0 !important ;
  }
   .bh-header-style10 .bh-comman-icon {
    height: 45px;
    width: 45px;
    display: inline-block;
    line-height: 41px;
    border: 1px solid var(--bloghub-border-color);
    border-radius: 5px;
    text-align: center;
}
.bh-header-style10 .bh-comman-icon svg{
    height: 18px;
}
.bh-header-style10 .bh-user-login  .login-btn-header:hover{
    background-color: var(--bloghub-primary-color) !important;
    box-shadow: unset !important;
}
.vc_row.wpb_row.vc_inner.vc_row-fluid.sticky-sidebar-col {
    max-width: 1730px;
    width: 100%;
    margin: 0 auto;
}
.vc_row[data-vc-full-width] {
    overflow: unset !important;
    transition: opacity .5s ease;
}
body .bh-header-style10 .bh-main-nav-wrapper .menu>li>a:before{
    display: none;
}
.bh-header-style10.bh-header-wrapper .menu {
    gap: 30px;
    margin-right: 30px;
}

.bh-footer-wrapper .container{
    max-width: 1450px;
}
.bh-footer-wrapper .bh-footer-widget ul li {
    margin-bottom: 15px;
    position: relative;
    transition: all .3s;
    padding-left: 0;
}
.bh-footer-wrapper .bh-footer-widget ul li::before {
    content: '';
    width: 12px;
    height: 3px;
    background-color: var(--bloghub-primary-color);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    transition: all .3s;
    opacity: 0;
    visibility: hidden;
} 
.bh-footer-wrapper .bh-footer-widget ul li:hover::before {
    opacity: 1;
    visibility: visible;
}
.bh-footer-wrapper .bh-footer-widget ul li:hover {
    padding-left: 20px;
}
.bh-footer-wrapper .bh-footer-widget ul li a span{
    display: none;
}

.bh-share-box ul li a {
    width: 46px;
    height: 46px;
    background-color: var(--bloghub-primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .3s;
}
.bh-share-box  ul.bh-socibh-icons li::before{
    display: none;
}
.bh-share-box  ul.bh-socibh-icons li:hover{
    padding-left: 0;
}
.bh-share-box  ul.bh-socibh-icons li:hover a{
    transform: translateY(-5px);
}
.bh-share-box ul li.tempFB a {
    background: #3d6ad6;
    border: 1px solid #628aea;
}
.bh-share-box  ul li.tempInsta a {
    background: #e4405f;
    border: 1px solid #ff6e8a;
}
.bh-share-box  ul li.tempLnkd a {
    background: #0a66c2;
    border: 1px solid #358ade;
}
.bh-share-box ul li.tempTwtr a {
    background: #000;
    border: 1px solid #505050;
}
.bh-share-box ul li.tempPntrst a {
    background: #bd081c;
    border: 1px solid #ed3045;
}
.bh-footer-widget  .widget-title::before{
    display: none;
}
.bh-footer-widget .widget-title{
    margin-top: 0;
}
.bh-copyright-wrapper {
    padding: 20px 0 ;
    position: relative;
    margin-top: 40px;
    color: var(--bloghub-font-color);
    background: var(--bloghub-copyright-bg);
    border-top: 1px solid  #e5eff4;
    max-width: 1450px;
    margin: 0 auto;
    width: 100%;
}
@media(max-width:1199px){
	.bloghub-demo .bh-header-style10{
		padding:10px 0;
	}
   .bh-header-style10 .bh-menu-toggle {
        display: inline-block;
        vertical-align: middle;
        height: 45px;
        width: 45px;
        padding: 8px 0;
        position: relative;
        background: var(--bloghub-primary-color);
        border-radius: var(--bloghub-circle-radius);
        border-radius: 3px;
        margin-top: -5px;
    }   
    .bh-menu-toggle span {
        width: 20px;
        height: 2px;
        background: var(--bloghub-white);
        display: block;
        position: relative;
        margin: auto;
        margin-top: 6px;
    }
}
@media(max-width:767px){
	.bh-header-style10 .blog-ul-class{
		display:none;
	}
}
@media(max-width:480px){
	.bh-header-style10 .bh-main-header .bh-main-header-inner {
		justify-content: center;
        gap: 15px;
	}
    .bh-header-style10 .bh-cart-wrapper {
        position: relative;
       margin-right: 10px;
}
}