:root {
    --primary_font: "Lato", sans-serif;
    --heading_font: "Lora", sans-serif;
    --primary-color: #000000;
    --secondary-colors: #000000;
    --gold-color: #E6BC4C;
    --purple: #5D09EF;
    --white: #ffffff;
    --black: #000000;
    --gray: #F2F2F5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    -ms-overflow-style: scrollbar;
    box-sizing: border-box;
    font-size: 100%;
}

*,
:after,
:before {
    box-sizing: inherit
}

body {
    font-family: var(--primary_font);
    color: var(--black);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 26px;
    letter-spacing: 0.5px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
    overflow: hidden;
}

a {
    font-family: var(--primary_font);
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    text-decoration: none;
    transition: .3s;
}

p {
    margin-bottom: 15px;
}

p:last-child {
    margin-bottom: 0;
}

p b {
    font-weight: 700;
}

p a {
    text-decoration: underline;
    color: var(--black);
}

p a:hover {
    color: var(--secondary-colors);
    text-decoration: underline;
}

a:hover {
    text-decoration: none;
}

a:focus {
    outline: none;
    text-decoration: none;
}

img {
    display: block;
}

input:focus,
textarea:focus {
    outline: none;
    box-shadow: none !important;
}

img {
    max-width: 100%;
    display: block;
    width: 100%;
    height: auto;
}

ul,
li,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

label {
    font-weight: inherit;
}

input:focus,
textarea:focus {
    outline: none;
    box-shadow: none;
}

video,
iframe {
    width: 100%;
    display: block;
}

::selection {
    background-color: var(--secondary-colors);
    color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: var(--heading_font);
    color: var(--black);
    font-weight: 400;
  font-style: normal;
    text-transform: capitalize;
    margin-top: 0;
}

h1,
.h1 {
    font-size: 52px;
    line-height: 110%;
    margin: 0 0 20px;
}

h2,
.h2 {
    font-size: 42px;
    line-height: 110%;
    margin-bottom: 20px;
}

h3,
.h3 {
    font-size: 32px;
    line-height: 46px;
    margin-bottom: 20px;
}

h4,
.h4 {
    font-size: 22px;
    line-height: 24px;
    margin-bottom: 20px;
}

h5,
.h5 {
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: 0em;

}

h6,
.h6 {
    font-family: var(--primary_font);
    color: var(--gold-color);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    line-height: 20px;
    margin: 0 0 10px;
    text-transform: uppercase;
}

p {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
}

p:empty {
    display: none;
}

#page {
    overflow-x: hidden;
}

body .gform_wrapper input,
body select,
body textarea,
input {
    font-family: var(--primary_font);
    background-color: #fff;
    color: var(--black);
    border: none;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 0.5px;
    text-align: left;
    padding: 8px 15px;
    min-height: 45px;
    width: 100%;
    border: 1px solid #e5e5e5;
    border-radius: 0px;
}

textarea {
    height: 93px;
    resize: none;
}

input::placeholder {
    color: #64748B;
}

body .gform_wrapper .gform_footer input[type=submit] {
    font-family: var(--secondary_font);
    -webkit-appearance: none;
    background-color: #C79D62;
    color: #fff;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 24px !important;
    font-weight: 400;
    line-height: 100%;
    text-align: center;
    margin: 0;
    outline: none;
    padding: 12px 26px !important;
    position: relative;
    transition: all .3s;
    width: auto;
    z-index: 1;
    min-height: 48px;
}

.newsletter_form .gform_wrapper.gravity-theme .gform_footer,
.newsletter_form .gform_wrapper.gravity-theme .gform_page_footer {
    margin: 0;
    padding: 0;
}

.site-content ol li,
.site-content ul li {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0;
    margin: 0 0 20px;
    position: relative;
    padding-left: 18px;
}

.site-content ul {
    margin-bottom: 20px;
}

.site-content ol li:last-child,
.site-content ul li:last-child {
    margin: 0;
}

.site-content ul li:before {
    position: absolute;
    content: "";
    top: 10px;
    left: 0;
    right: auto;
    height: 6px;
    width: 6px;
    background-color: #000;
    border-radius: 100%;
}

.site-content ul.checklist li {
    padding-left: 35px;
}

.site-content ul.checklist li:before {
    position: absolute;
    content: "";
    background-color: transparent;
    background-image: url(images/icons/icon-checklist-mid-blue.svg;);
    background-repeat: no-repeat;
    background-position: left center;
    left: 0px;
    top: 3px;
    height: 25px;
    width: 25px;
}

.site-content ol {
    margin: 0 0 20px 25px;
}

.site-content ol li {
    list-style: decimal;
    padding-left: 5px;
}

.container {
    max-width: 1230px;
}

.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

section {
    margin-bottom: 60px;
}

.pt-0 {
    padding-top: 0px;
}

.white * {
    color: #fff;
}

.white p {
    color: rgba(255, 255, 255, 0.8);
}

a.btn {
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-align: center;
    text-transform: uppercase;
    background-color: var(--black);
    padding: 12px 30px;
    min-height: 50px;
    position: relative;
    display: inline-block;
    font-family: var(--primary_font);
    border: 1px solid transparent;
    letter-spacing: 1px;
}

a.btn:hover {
    border: 1px solid var(--black);
    background-color: var(--white);
    color: var(--black);
}

.cta-link {
    /* color: var(--dark-green); */
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 30.8px;
    position: relative;
    display: inline-flex;
    align-items: center;
    flex-direction: row-reverse;
    text-transform: uppercase;
    transition: .3s all;
    text-decoration: underline;
    text-underline-offset: 3px;
    color: #000;
}

.switch-column {
    flex-direction: row-reverse;
}

.body-hidden {
    overflow: hidden;
}

.site-header{
    background: #fff;
    transition: 0.5s ease all;
    z-index: 99;
}
header.site-header .container{
    max-width: 95%;
}
.site-header.sticky {
    position: fixed;
    width: 100%;
    transform: translateY(-42px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, .15);
    border-bottom: 1px solid #e5e5e5;

}

.top-bar {
    background: #000000;
    padding: 9px 0;
}

.top-bar a {
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
}

.top-bar a svg {
    width: 18px;
    height: 18px;
    margin-right: 6px;
}

.top-bar a svg,
.top-bar a svg path stroke {
    fill: #ffffff;
}

.top-bar .d-flex+.d-flex {
    padding-left: 25px;
}

.top-bar p {
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
}

.top-bar .text-body p{
    text-transform: uppercase;
}
.top-bar .text-body a {
    line-height: 24px;
    margin-left: 8px;
    padding-left: 8px;
    position: relative;
}

.top-bar .text-body a:before {
    position: absolute;
    content: "";
    top: 50%;
    transform: translateY(-50%);
    height: calc(100% - 10px);
    width: 1px;
    background-color: #ffffff;
    left: 0;
    right: auto;
}

.social_icon {
    display: flex;
    align-items: center;
}

.social_icon a {
    display: flex;
    line-height: normal;
    margin-right: 6px;
}

.social_icon a:last-child {
    margin-right: 0;
}

.main_menu ul>li {
    display: inline-block;
    vertical-align: middle;
    margin-right: 40px;
    position: relative;
}
.main_menu ul>li.menu-item-has-children > a:after {
    font: normal normal normal 18px / 1 FontAwesome !important;
    content: "\f107";
    margin-left: 8px;
    position: relative;
    top: 1px;
}

#mega-menu-wrap-menu-1 #mega-menu-menu-1>li.mega-menu-item {
    margin-right: 40px;
}

.main_menu ul>li:last-child,
#mega-menu-wrap-menu-1 #mega-menu-menu-1>li.mega-menu-item:last-child {
    margin-right: 0;
}

#mega-menu-wrap-menu-1 #mega-menu-menu-1>li.mega-menu-item>a.mega-menu-link,
#mega-menu-wrap-menu-1 #mega-menu-menu-1>li.mega-menu-item>a.mega-menu-link:hover,
#mega-menu-wrap-menu-1 #mega-menu-menu-1>li.mega-menu-item>a.mega-menu-link:focus,
.main_menu ul>li>a ,
#wp-megamenu-menu-1>.wpmm-nav-wrap ul.wp-megamenu>li>a{
    font-family: var(--primary_font);
    font-size: 14px;
    font-weight: 400;
    line-height: 16.94px;
    text-transform: uppercase;
    color: #042436;
    padding: 0;
    height: auto;
}
nav#wp-megamenu-menu-1 {
    background-color: transparent;
    border: none;
    text-align: unset;
    padding: 0;
}
#wp-megamenu-menu-1>.wpmm-nav-wrap ul.wp-megamenu>li>a{
    padding: 0;
    background-color: transparent;
}
#wp-megamenu-menu-1>.wpmm-nav-wrap ul.wp-megamenu>li:hover>a, 
#wp-megamenu-menu-1>.wpmm-nav-wrap ul.wp-megamenu>li.current-menu-ancestor>a, 
#wp-megamenu-menu-1>.wpmm-nav-wrap ul.wp-megamenu>li.active>a{
    background-color:transparent;
    color: var(--black);
}
#wp-megamenu-menu-1>.wpmm-nav-wrap ul.wp-megamenu>li.wpmm_mega_menu>ul.wp-megamenu-sub-menu {
    background-color: #fff;
    box-shadow: 0 0 3px rgba(0,0,0,.15);
    left: 0;
    position: absolute;
    top: 100%;
    opacity: 0;
    visibility: hidden;
    z-index: 98;
    pointer-events: none;
    transition: opacity .3s ease,visibility .3s ease,transform .3s ease;
    transform: translateY(15px);
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
    padding: 30px 10px 10px;
}
ul.wp-megamenu>li.wpmm_mega_menu>ul.wp-megamenu-sub-menu:before {
    content: "";
    position: absolute;
    height: 65px;
    width: 100%;
    top: -32px;
    z-index: -1;
    display: block !important;
}
#wp-megamenu-menu-1>.wpmm-nav-wrap ul.wp-megamenu>li.wpmm_mega_menu:hover>ul.wp-megamenu-sub-menu{
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: visible;
    pointer-events: unset;
}
.wp-megamenu-sub-menu > li{
    display: block;
    margin: 0;
}

.header_bottom_inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 25px 0;
    position: relative;
}

.header_bottom_inner>div {
    width: 33.33%;
}

.header_bottom_inner .hb_right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header_bottom_inner .hb_right>a {
    height: 20px;
    width: 20px;
    position: relative;
}

.header_bottom_inner .hb_right>a+* {
    margin-left: 22px;
}

.user-initial {
    display: none;
}

.cart-count {
    height: 20px;
    width: 20px;
    min-width: 20px;
    font-size: 12px;
    font-weight: 400;
    line-height: 22px;
    color: var(--white);
    background-color: var(--black);
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -10px;
    right: -10px;
    border: 1px solid #FFFFFF;
}

.site-branding a.custom-logo-link {
    display: block;
    max-width: 280px;
    margin: 0 auto;
}

.head_sec {
    margin-bottom: 25px;
}

.head_sec h2 {
    
}

.categories_sec {
    background-color: #F8f8f8;
    padding: 60px 0;
}
.categories_sec .head_sec {
    text-align: center;
    margin-bottom: 30px;
}
.row.collection_list>div {
    width: 25%;
    margin-bottom: 30px;
}
.collection_box {
    background-color: #FFFFFF;
    border: 1px solid rgb(0 0 0 / 10%);
    border-radius: 10px;
    padding: 15px;
}
.collection_img {
    position: relative;
    padding-bottom: 100%;
    border: 0px;
    border-radius: 10px;
    overflow: hidden;
}

.collection_img img {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    object-fit: cover;
    object-position: top;
}

.collection_box h5 {
    font-weight: 400;
    text-transform: uppercase;
    text-align: center;
    margin-top: 15px;
}

.popular-categories {
    margin-bottom: 20px;
}

.popular-categories h2 {
    margin-bottom: 25px;
}

.categories {
    display: flex;
    flex-wrap: wrap;
}

.categories>div {
    width: 25%;
    margin-bottom: 30px;
}

.category-list {
    list-style-type: disc;
    padding-left: 15px;
    font-weight: normal;
}

.category-list li {
    list-style: disc;
    font-size: 16px;
    font-weight: 400;
}

.category {
    font-family: var(--heading_font);
    font-size: 24px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.parallax-banner-new {

}

.parallax-banner-new .prow {
    display: flex;
}

.parallax-banner-new .prow .parallax-banner-new-img {
    width: 50%;
    flex: 0 0 auto;
}

.parallax-banner-new .prow .parallax-banner-new-meta {
    background: #f8f8f8;
    padding: 40px;
    display: flex;
    align-items: center;
}

.parallax-banner-new .prow .parallax-banner-new-img img.img-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    vertical-align: top;
}

.parallax-banner-new-meta h3 {
    line-height: 1.4;
    margin-bottom: 15px;
}
.parallax-banner-new-meta .txt-body {
    margin-bottom: 15px;
}
.parallax-banner-new-meta a.btn {
    background: transparent;
    border: 1px solid var(--black);
        color: var(--black);
}
.parallax-banner-new-meta a.btn:hover {
    background: var(--black);
    color: var(--white);
    border: 1px solid var(--black);
}

.parallax-banner {
    min-height: 550px;
    padding-top: 4rem;
    padding-bottom: 4rem;
    position: relative;
    margin: 0;
}

.parallax-banner {
    overflow: hidden;
}

.parallax-banner .img-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.parallax-banner__meta {
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    z-index: 10;
    max-width: 42rem;
    padding: 40px;
}

.parallax-banner__meta:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    content: "";
    z-index: -1;
}

.quotes-section {
    display: none;
    padding: 60px 0px;
    background: #f8f8f8;
}
 .instagram-feed{
    margin-top: 60px;
    margin-bottom: 0;
}
#sb_instagram{
    padding: 0 !important;
}
#sb_instagram #sbi_images{
    padding: 0 !important;
}
.quotes-section .head_sec h2,
.quotes-section .head_sec p {
    
}

.testimonial-slider .slick-list {
    margin: 0 -15px;
}

.testimonial-slider .slick-slide {
    padding: 0 15px;
}

.quote-wrap {
    padding: 2rem;
    border: 1px solid #000;
    background-color: #ffffff;
}

.quote_slide .media {
    position: relative;
}

.media {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
}

.author-avatar {
    display: inline-block;
    width: 80px;
    min-width: 80px;
    height: 80px;
    overflow: hidden;
    border-radius: 50%;
    margin-top: 20px;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.rating {
    padding-left: 0;
    list-style: none;
}

.rating li {
    width: 16px;
    display: inline-block;
}

.rating li svg {
    display: block;
    fill: #ffce00;
    height: 16px;
    width: 16px;
}
footer.site-footer {
    background: var(--black);
    margin-top: 20px;
    clear: both;
}
.site-footer--head {
    padding: 60px 0;
    clear: both;
}

.payment-icons {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.site-footer .payment-icons .f-icon {
    width: 40px;
    height: auto;
}

/*-- .site-footer .site-footer__section-title {
    font-family: var(--primary_font);
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
} --*/

.site-footer-section1 .shop-info{}
.site-footer-section1 .shop-info a {
    color: var(--white);
}
.site-footer-section1 .shop-info a:hover {
    color: var(--white);
}
.footer_social_icon {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.footer_social_icon a svg {
    color: #fff;
    width: 25px;
    height: 25px;
}

.footer_social_icon a svg path {
    fill: #fff;
    width: 100%;
    height: 100%;
}
.rte-setting p {
    line-height: 1.8;
}
.site-footer__section p {
    color: #fff;
}
.site-footer__section ul li {
    margin-bottom: 10px;
}

.site-footer__section ul li a {
    color: var(--white);
}

.site-footer .social-icons .icon {
    margin-right: 10px;
}

.list-inline-item {
    display: inline-block;
}

.section-footer-email .social-icons svg {
    height: 18px;
    width: 18px;
}

.section-footer-email .social-icons li span {
    display: none;
}

.collections-ul ul {
   
}

.site-footer .site-footer__section-title {
    color: var(--white);
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.copyright_innr {
    border-top: 1px solid #CCCCCC;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}
.payment_img {
    display: flex;
    align-items: center;
}
.payment_img img {
    width: auto;
    margin-left: auto;
    max-width: 45px;
}
.payment_img img + * {
    margin-left: 12px;
}
.footer_copyright p {
    color: var(--white);
    margin: 0;
}





.new-hero {
    margin: 0 0 80px;
    position: relative;
}
.new-hero .new-hero-image:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.7;
}
.new-hero .new-hero-image,
.hero-slider-slide{
  width: 100%;
  position: relative;
}
.new-hero .new-hero-image img,
.hero-slider-slide img{
    width: 100%;
}
.new-hero .container {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.new-hero-content h1 {
    color: #fff;
}
.new-hero-content p {
    color: #fff;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.new-hero-content a.btn{
    border: 2px solid var(--white);
    color: #FFF;
    background-color: transparent;
}
.new-hero-content a.btn:hover{
    background-color: var(--white);
    color: var(--black);
    border-color: transparent;
}

.hero_slider .slide_item {
    display: flex;
    align-items: center;
    background-color: #F1F1F1;
}

.hero_slider .slide_item>div {
    width: 50%;
}

.home_bannr {
    display: block;
    width: 100;
    object-fit: cover;
}

.hb_txt {
    position: relative;
    padding-left: calc((100% - 1155px) / 2);
}

.hfkd-popular-picks-title {
    text-align: center;
}

.hfkd_img_pro img {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
        border-radius: 10px;
}

.hfkd_img_pro {
    position: relative;
    padding-bottom: 120%;
}
.hfkd-popular-picks-grid .slick-slide .hfkd_img_wrapper {
    border: 1px solid rgb(0 0 0 / 10%);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
    padding: 15px;
}
.hfkd-product-category {
    font-size: 14px;
    font-weight: 500;
    color: #999999;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hfkd-product-title {
    color: var(--black);
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    text-transform: capitalize;
}

.hfkd-product-price {
    color: var(--black);
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
}

.add_to_cart_button,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button {
    background-color: var(--black);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
    text-align: center;
    text-transform: uppercase;
    padding: 5px 15px;
    min-height: unset;
    position: relative;
    display: inline-block;
    font-family: var(--primary_font);
    border: 0;
    border-radius: 0px;
    position: absolute;
    opacity: 0;
    visibility: hidden;
    letter-spacing: 0.5px;
}

.hfkd-popular-pick-item .hfkd-product-price{
    transition: 0.6s ease all;
}

.add_to_cart_button:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button:hover {
    background-color: var(--black);
    color: var(--white);
}

.woocommerce-page li.product:hover a.button {
    opacity: 1;
    visibility: visible;
    transform: translateY(-25px);
}

.woocommerce ul.products li.product:hover .price ,
.hfkd-popular-pick-item:hover .hfkd-product-price{
    opacity: 0;
    transform: translateY(-100%);
}

.woocommerce-page .hfkd_you-may-also-like li.product:hover a.button,
.woocommerce-page .related.products li.product:hover a.button ,
.hfkd-popular-pick-item:hover a.button{
    opacity: 1;
    visibility: visible;
    transform: translateY(-25px);
    bottom: -25px;
}
.hfkd-popular-pick-item:hover a.button{
    bottom: -10px;
}
.hfkd_pop_sections {

}

.hfkd-popular-picks-grid .slick-list {
    margin: 0 -15px;
}

.hfkd-popular-picks-grid .slick-slide {
    padding: 0 15px;
    position: relative;
    overflow: hidden;
}

.slick-dots {
    display: flex;
    align-items: center;
}

.slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
}

.slick-dots li {
    margin: 0 0.25rem;
}

.slick-dots button {
    display: block;
    width: 15px;
    height: 15px;
    padding: 0;
    border: none;
    border-radius: 100%;
    background-color: var(--black);
    text-indent: -9999px;
    opacity: .5;
    cursor: pointer;
}

.slick-dots li:hover button,
.slick-dots li.slick-active button {
    opacity: 1;
    background-color: var(--black);
}

.woocommerce nav.woocommerce-pagination {
    text-align: center;
    margin-top: 50px;
}

.woocommerce div nav.woocommerce-pagination ul,
.woocommerce div nav.woocommerce-pagination ul li {
    border: none;
}

.woocommerce div nav.woocommerce-pagination ul li a,
.woocommerce div nav.woocommerce-pagination ul li span {
    border: 2px solid #000;
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    width: 37px;
    height: 37px;
    color: #000000;
}

.woocommerce div nav.woocommerce-pagination ul li a:focus,
.woocommerce div nav.woocommerce-pagination ul li a:hover,
.woocommerce div nav.woocommerce-pagination ul li span.current {
    border-color: #000;
    background-color: var(--black);
    color: #FFF;
}

.woocommerce div nav.woocommerce-pagination ul li a.next {
    font-size: 0;
    text-indent: -99999px;
    background-image: url(../images/chevron-right_icon.svg);
    background-repeat: no-repeat;
    background-position: center;
}

.hb_txt h1 span {
    color: var(--black);
}

.ib_banner {
    position: relative;
    margin: 0;
}

.ib_txt {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.ib_txt * {
    color: var(--white);
}

.about-txt-sec h2 {
    text-align: center;
}

.about_sub_txt {
    text-align: center;
}

.about_sub_txt p {
    line-height: 1.8;
}

.about-txt-sec {
    background: linear-gradient(180deg, rgba(237, 233, 160, 0.9), rgba(244, 242, 239, 0) 100%);
    padding: 80px 0 0;
}

.single-product .product {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 25px;
}
.main-single-product{
    width: 100%;
        margin-bottom: 0;
}

.woocommerce div.product div.summary.entry-summary {
    padding-left: 40px;
}

.woocommerce-product-gallery__wrapper .slick-arrow {
    display: none !important;
}

.thumbnails-carousel .slick-list {
    padding: 0 !important;
}

.product-category a{
    font-size: 16px;
    font-weight: 500;
    color: #999999;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: unset;
    pointer-events: none;
}

div.summary.entry-summary h1.product_title.entry-title {
    font-family: var(--heading_font);
    font-size: 32px;
    font-weight: 400;
    text-transform: capitalize;
    margin-bottom: 20px;
    text-align: left;
}
.woocommerce .hfkd_highfive_wrap span.onsale{
    display: none;
}
body.woocommerce div.product div.summary p.price,
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product span.price  {
    color: #000000;
    font-family: var(--primary_font);
    font-size: 24px;
    font-weight: 400;
    line-height: 22px;
    position: relative;
}
body.woocommerce div.product div.summary p.price {
        border-bottom: 1px solid rgb(0 0 0 / 9%);
    padding-bottom: 30px;
    margin-bottom: 30px;
}
.woocommerce-variation-price {
    margin-bottom: 18px;
}

.woocommerce div.product form.cart{
    display: flex;
    gap: 20px;
}
.woocommerce div.product form.cart:before, .woocommerce div.product form.cart:after {
    display: none;
}
.woocommerce div.product form.cart div.quantity{
    width: auto;
    height: 50px;
    display: flex;
    align-items: center;
    padding: 0 15px;
}
.woocommerce div.product form.cart .variations ul.variable-items-wrapper.button-variable-items-wrapper {
    gap: 10px;
}
.woocommerce div.product form.cart .variations ul.variable-items-wrapper.color-variable-items-wrapper, 
.woocommerce div.product form.cart .variations ul.variable-items-wrapper.image-variable-items-wrapper {
    gap: 5px;
}

.woocommerce div.product form.cart .variations ul.variable-items-wrapper.color-variable-items-wrapper li.variable-item.color-variable-item, 
.woocommerce div.product form.cart .variations ul.variable-items-wrapper.image-variable-items-wrapper li.variable-item.image-variable-item{
    border: 0;
    border-radius: 0;
    margin: 0;
    box-shadow: none;
    width: 40px;
    height: 40px;
}

.woocommerce div.product form.cart .variations ul.variable-items-wrapper.color-variable-items-wrapper li.variable-item.variable-item.color-variable-item .variable-item-contents , 
.woocommerce div.product form.cart .variations ul.variable-items-wrapper.image-variable-items-wrapper li.variable-item.image-variable-item .variable-item-contents {
    border: 1px solid transparent;
    border-radius: 100%;
    padding: 3px;
}

.woocommerce div.product form.cart .variations ul.variable-items-wrapper.color-variable-items-wrapper li.variable-item.variable-item.color-variable-item.selected .variable-item-contents , 
.woocommerce div.product form.cart .variations ul.variable-items-wrapper.image-variable-items-wrapper li.variable-item.image-variable-item.selected .variable-item-contents {
    border-color: #000000;
}

.woocommerce div.product form.cart .variations ul.variable-items-wrapper.color-variable-items-wrapper li.variable-item.variable-item.color-variable-item .variable-item-contents .variable-item-span-color, 
.woocommerce div.product form.cart .variations ul.variable-items-wrapper.image-variable-items-wrapper li.variable-item.image-variable-item .variable-item-contents .variable-item-image{
    border-radius: 100%;
}

.woo-variation-swatches .variable-items-wrapper .variable-item:not(.radio-variable-item).color-variable-item.selected:not(.no-stock) .variable-item-contents:before, 
.woo-variation-swatches .variable-items-wrapper .variable-item:not(.radio-variable-item).image-variable-item.selected:not(.no-stock) .variable-item-contents:before{
    background-size: 40%;
}
.woocommerce div.product form.cart .variations ul.variable-items-wrapper.button-variable-items-wrapper.wvs-style-squared li.variable-item {
    margin: 0;
    border-radius: 6px;
    border: 1px solid rgb(0 0 0 / 10%);
    color: #aaa;
    box-shadow: none;
    padding: 20px 15px;
}
 
.woocommerce div.product form.cart .variations ul.variable-items-wrapper.button-variable-items-wrapper.wvs-style-squared li.variable-item span.variable-item-span {
    padding: 0px;
    line-height: 1;
}
.woocommerce div.product form.cart .variations ul.variable-items-wrapper.button-variable-items-wrapper.wvs-style-squared li.variable-item.selected {
    border-color: #000;
    background: #000;
    color: #fff;
}
.woocommerce div.product form.cart .variations .reset_variations {
    color: #000;
    text-transform: uppercase;
}
/*div.product div.summary ins span.woocommerce-Price-amount.amount {
    font-size: 40px;
    color: var(--black);
}
*/
.single-product .related ul.products li .product-action-wrap a:first-child,
.single-product.woocommerce div.product form.cart .button,
.archive main.site-main ul.products li .product-action-wrap a:first-child {
        font-family: var(--primary_font);
    background-color: transparent;
    color: var(--black);
    border: 1px solid var(--black);
    font-size: 16px;
    font-weight: 500;
    padding: 12px 15px;
    transition: all .4s ease;
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: 1px;
}

.single-product.woocommerce div.product form.cart .button {
    min-width: 200px;
    border-radius: 0;
    height: 50px;
}
.single-product.woocommerce div.product form.cart .button:hover{
    background-color: var(--black);
    color: var(--white);
}
.woocommerce-cart .woocommerce table.cart .coupon .button:not(:hover),
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button {
    border: 1px solid transparent;
    background: var(--black);
    color: #fff;
    padding: 13px 15px;
    min-height: 45px;
}

.woocommerce-cart table.cart td.actions .coupon .input-text {
    color: var(--global-palette1);
    width: calc(100% - 150px);
    padding: 11px 15px !important;
}

.woocommerce .woocommerce-cart-form {
    float: left;
    width: 70%;
    padding-right: 2.5em;
}

.woocommerce .cart-collaterals {
    float: left;
    width: 30%;
}

.woocommerce .cart-collaterals .cart_totals,
.woocommerce-page .cart-collaterals .cart_totals {
    float: right;
    width: 100%;
    border: none;
}

.woocommerce-page .cart-collaterals .cart_totals {
   border: 1px solid rgba(0, 0, 0, .1);
}

.hfkd_main_content {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 80px;
}

.sidebar-filter {
    width: 250px;
}
.hfkd_highfive_filter{
    border-bottom: 1px solid #E5E5E5;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}
.hfkd_shop_data_bollean {
    padding-left: 50px;
    width: calc(100% - 250px);
}

.sidebar-filter .bapf_body ul li {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.sidebar-filter .bapf_body>ul>li {
    margin-bottom: 15px !important;
}

.sidebar-filter .bapf_body ul li input {
    height: 18px;
    width: 18px;
    min-width: 18px;
    min-height: unset;
    border: 1px solid var(--black);
    margin-right: 4px;
    display: none;
}

.sidebar-filter .bapf_body ul li label {
    line-height: normal;
}
.bapf_hideckbox li label:hover{
    color: var(--primary-color);
}
.woocommerce .woocommerce-ordering select {
    vertical-align: top;
    padding: 0 !important;
    border: none;
    min-height: unset;
    box-shadow: unset;
    outline: none;
    font-size: 14px;
    border: 1px solid rgb(0 0 0 / 10%);
    padding: 8px 10px !important;
}

.bapf_sfilter .bapf_body ul li ul {
    width: 100%;
    padding: 0;
    margin: 15px 0px 0px 15px !important;
}
.bapf_sfilter .bapf_body ul li ul li:not(:last-child) {
    margin-bottom: 15px !important;
}
.bapf_sfilter .bapf_body ul li ul li input[type=checkbox] {
    display: inline-block !important;
    margin-right: 10px;
}
.woocommerce ul.products li.product a img{
    border: 1px solid rgb(0 0 0 / 10%);
    padding: 15px;
    border-radius: 10px;
    overflow: hidden;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    padding: 0;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.woocommerce ul.products li.product .price {
    font-size: 14px !important;
    font-weight: 400;
    line-height: 22px;
    color: #000 !important;
    margin-bottom: 2px;
    transition: .3s all;
}

.woocommerce .hfkd_main_content ul.products li.product .button {
    margin: 0;
}

.woocommerce ul.products li.product a.woocommerce-loop-product__link {
    overflow: hidden;
}

.woocommerce .hfkd_main_content ul.products {
    display: flex;
    flex-wrap: wrap;
    margin-top: 50px;
    /* width: 100%; */
    margin: 0 -15px 0;
}

.woocommerce .hfkd_main_content ul.products li.product,
.woocommerce-page .hfkd_main_content ul.products li.product {
    float: left;
    margin: 0 0 30px;
    padding: 0;
    position: relative;
    width: 33.33%;
    margin-left: 0;
    padding: 0 10px;
}

.woocommerce ul.products li.product .onsale {
    top: 15px;
    right: 30px;
    left: auto;
    margin: 0;
    height: auto;
    width: auto;
    min-width: unset;
    min-height: unset;
    line-height: normal;
    border-radius: 4px;
    padding: 3px 15px;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
    height: 30px;
    width: 30px;
}

.hfkd_delta_pro_wrapper {
    flex: 0 0 50%;
    max-width: 50%;
}

.woocommerce-product-gallery {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: .5em;
    position: relative;
    flex: 0 0 50%;
    max-width: 50%;
}

.woocommerce-product-gallery .thumbnails-carousel,
.wcgs-woocommerce-product-gallery .gallery-navigation-carousel-wrapper {
    flex: 0 0 13%;
    max-width: 13%;
    margin-right: 1rem;
}

.gallery-navigation-carousel-wrapper .swiper-wrapper {
    flex-direction: column;
}


.main-single-product #wpgs-gallery .wcgs-thumb.spswiper-slide img{
    border-radius: 6px;
        border: 2px solid rgb(0 0 0 / 10%);
}
.main-single-product #wpgs-gallery .wcgs-thumb.spswiper-slide:hover img, 
.main-single-product #wpgs-gallery .wcgs-thumb.spswiper-slide-thumb-active.wcgs-thumb:hover img, 
.main-single-product #wpgs-gallery .wcgs-thumb.spswiper-slide-thumb-active.wcgs-thumb img{
    border-color: rgb(0 0 0 / 100%);
}
#wpgs-gallery .wcgs-thumb.swiper-slide img {
    border: 1px solid transparent;
}

#wpgs-gallery .wcgs-thumb.swiper-slide-thumb-active.wcgs-thumb img,
#wpgs-gallery .wcgs-thumb.swiper-slide:hover img,
#wpgs-gallery .wcgs-thumb.swiper-slide-thumb-active.wcgs-thumb:hover img {
    border: 1px solid var(--primary-color);
}

.woocommerce-product-gallery .thumbnails-carousel img {
    margin-bottom: 10px;
}

.woocommerce-product-gallery .woocommerce-product-gallery__wrapper,
.wcgs-woocommerce-product-gallery .wcgs-carousel.horizontal {
    flex: 0 0 84% !important;
    max-width: 84% !important;
}

.woocommerce #content div.product div.summary,
.woocommerce div.product div.summary,
.woocommerce-page #content div.product div.summary,
.woocommerce-page div.product div.summary {
    float: right;
    width: 100%;
    clear: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
    padding: 0;
    margin: 0;
    border-bottom: 1px solid #CCCCCC;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
    background-color: transparent;
    margin: 0;
    border: none;
    padding: 0;
    margin-right: 30px;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active{
        background: transparent;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li:last-child {
    margin-right: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    font-family: var(--primary_font);
    color: var(--black);
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    padding: 0 0 15px;
    letter-spacing: 0px;
    text-transform: uppercase;
    position: relative;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a:before {
    position: absolute;
    content: "";
    background-color: var(--black);
    height: 2px;
    bottom: 0;
    width: 100%;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li::after,
.woocommerce div.product .woocommerce-tabs ul.tabs li::before {
    display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before {
    display: none;
}

.hfkd_woocommerce_tabs {
    background: #f6f6f6;
    padding: 50px 0;
    margin-top: 50px;
}

.woocommerce div.product .woocommerce-tabs .panel {
    padding-top: 20px;
    margin-bottom: 0;
}

.woocommerce div.product .woocommerce-tabs .panel table{
        margin-bottom: 0;
    border: 0;
    border-spacing: 0;
}

.woocommerce div.product .woocommerce-tabs .panel table tr th, 
.woocommerce div.product .woocommerce-tabs .panel table tr td {
    padding: 10px;
    margin: 0;
    border: 0;
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
}
.woocommerce div.product .woocommerce-tabs .panel table tr th {
    text-align: left;
    font-weight: bold;
}

.woocommerce div.product .woocommerce-tabs .panel table tr td {
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
    color: #000;
}

.woocommerce div.product .woocommerce-tabs .panel h2 {
    font-size: 28px;
}

.slick-arrow {
    position: absolute;
    top: 50%;
    z-index: 10;
    font-size: 0;
    width: 30px;
    height: 30px;
    border: none;
    cursor: pointer;
}

.slick-arrow.slick-prev {
    left: 0;
    background-image: url(../images/chevron-left_icon.svg);
    background-repeat: no-repeat;
    background-position: center;
}

.slick-arrow.slick-next {
    right: 0;
    background-image: url(../images/chevron-right_icon.svg);
    background-repeat: no-repeat;
    background-position: center;
}

.mobile_menu {
    display: none;
}

.hb_left .close_btn {
    display: none;
}

.hfkd_woocommerce_tabs {
    clear: both;
    width: 100%;
}

.hfkd_trust_bdg {
    margin-top: 20px;
    border: 1px solid #aaa;
    padding: 15px;
}

.hfkd_trust_imgs {
    width: 100%;
    display: flex;
    align-items: center;
}

.hfkd_trust_imgs:not(:last-child) {
    border-bottom: 1px solid #aaa;
    margin-bottom: 12px;
    padding-bottom: 12px;
}

.hfkd__delta img {
    width: 100%;
    max-width: 30px;
}

.hfkd_trust_imgs span {
    font-size: 14px;
    font-weight: 500;
    line-height: 32px;
    margin-left: 10px;
    text-transform: uppercase;
}

.quantity {
    border: 1px solid #aaa;
    padding: 11px 15px;
    width: 130px;
    text-align: center;
}

.quantity input {
    min-height: unset;
    padding: 0 !important;
    border: none;
    box-shadow: none;
    color: #000;
}

.quantity button {
    padding: 0;
    border: none;
    background: transparent;
    color: #aaa;
    font-size: 20px;
    cursor: pointer;
}
.quantity button:hover{
    color: var(--black);
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}

div.wpforms-container-full input[type=date],
div.wpforms-container-full input[type=datetime],
div.wpforms-container-full input[type=datetime-local],
div.wpforms-container-full input[type=email],
div.wpforms-container-full input[type=month],
div.wpforms-container-full input[type=number],
div.wpforms-container-full input[type=password],
div.wpforms-container-full input[type=range],
div.wpforms-container-full input[type=search],
div.wpforms-container-full input[type=tel],
div.wpforms-container-full input[type=text],
div.wpforms-container-full input[type=time],
div.wpforms-container-full input[type=url],
div.wpforms-container-full input[type=week],
div.wpforms-container-full select,
div.wpforms-container-full textarea,
.wp-core-ui div.wpforms-container-full input[type=date],
.wp-core-ui div.wpforms-container-full input[type=datetime],
.wp-core-ui div.wpforms-container-full input[type=datetime-local],
.wp-core-ui div.wpforms-container-full input[type=email],
.wp-core-ui div.wpforms-container-full input[type=month],
.wp-core-ui div.wpforms-container-full input[type=number],
.wp-core-ui div.wpforms-container-full input[type=password],
.wp-core-ui div.wpforms-container-full input[type=range],
.wp-core-ui div.wpforms-container-full input[type=search],
.wp-core-ui div.wpforms-container-full input[type=tel],
.wp-core-ui div.wpforms-container-full input[type=text],
.wp-core-ui div.wpforms-container-full input[type=time],
.wp-core-ui div.wpforms-container-full input[type=url],
.wp-core-ui div.wpforms-container-full input[type=week],
.wp-core-ui div.wpforms-container-full select,
.wp-core-ui div.wpforms-container-full textarea {
    max-width: 100%;
}

.site-footer__newsletter-label div.wpforms-container-full:not(:empty){
    margin-bottom: 0px;
}
.site-footer__newsletter-label .wpforms-container .wpforms-field{
    padding-top: 0px;
}
.site-footer__newsletter-label div.wpforms-container-full input[type=email]{
    border: 1px solid #ffffff;
    border-radius: 0px;
        font-size: 16px !important;
    letter-spacing: 0.5px;
}
div.wpforms-container-full .wpforms-form .wpforms-submit-container{
    margin-top: 0;
}
div div.wpforms-container-full button[type=submit]:not(:hover):not(:active),
div div.wpforms-container-full button[type=submit]:hover {
    font-family: var(--primary_font);
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    background-color: transparent;
    color: var(--white);
    border-radius: unset;
    text-transform: uppercase;
    padding: 15px 20px;
    min-height: unset;
    height: unset;
    letter-spacing: 1px;
    outline: none;
    border: 1px solid var(--white);
}
div div.wpforms-container-full button[type=submit]:hover{
    background: var(--white);
    color: var(--black);
}
.sale-countdown-timer {
    border: 1px solid var(--primary-color);
    font-family: var(--primary_font);
    font-size: 20px;
    font-weight: 400;
    line-height: 22px;
    color: var(--black);
    text-align: center;
    max-width: 485px;
    width: 100%;
    padding: 18px 0;
    margin-bottom: 30px;
}

.sidebar-filter .bapf_body>ul>li i {
    margin-left: auto;
    padding: 0;
    margin-right: -4px;
}

.sidebar-filter .bapf_body>ul>li i:before {
    background-image: url(../images/arrow_down_icon.svg);
    content: "";
    height: 25px;
    width: 25px;
    display: block;
    background-size: 100%;
    transition: 0.5s ease all;
}

.sidebar-filter .bapf_body>ul>li i.fa-minus:before {
    transform: rotate(180deg);
}

.hfkd_shop_cstm {
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    text-align: center;
    background-color: #f5f5f5;
    padding: 50px 0;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    position: relative;
    margin-bottom: 2.5rem;
}

.woocommerce-products-header h1 {
    font-size: 45px;
    line-height: 120%;
    margin-bottom: 5px;
}

.woocommerce .hfkd_shop_cstm .woocommerce-breadcrumb {
    margin-bottom: 0;
}

.woocommerce:where(body:not(.woocommerce-uses-block-theme)) .woocommerce-breadcrumb {
    font-size: 14px;
    color: #000000;
}
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) .woocommerce-breadcrumb a{
    font-size: 14px;
}
.woo-variation-swatches .variable-items-wrapper .variable-item:not(.radio-variable-item) {
    padding: 0;
    box-shadow: none;
    border: 1px solid #000000;
}

.woocommerce div.product form.cart .variations label {
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0px;
    margin: 0;
}
.woo-variation-swatches.wvs-show-label .variations td .woo-selected-variation-item-name, 
.woo-variation-swatches.wvs-show-label .variations th .woo-selected-variation-item-name{
    font-weight: 600;
    color: #00563B;
}
.scfw-size-chart-main .button-wrapper {
    margin-bottom: 5px;
}
.button-wrapper #chart-button,
.button-wrapper .md-size-chart-btn {
    color: #000000;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    text-decoration-line: none;
    text-transform: uppercase;
}
.button-wrapper .md-size-chart-btn{
    display: flex;
    align-items: center;
}
.button-wrapper .md-size-chart-btn:before {
    content: "";
    background-image: url(../images/chart-icon.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    height: 20px;
    width: 20px;
    display: block;
    margin-right: 5px;
}
.button-wrapper .md-size-chart-btn > span{
    display: none;
}
.product_meta {
    display: none;
}
.woocommerce .chart-content-image img {
    width: auto;
}

.hb-search-form {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 99;
    background-color: rgba(0,0,0,.7);
    transition: all ease-in-out .3s;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.hb-search-form .search-form-container {
    background-color: #FFFFFF;
    display: flex;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 80px;
    transform: translateY(-100%);
    transition: all ease-in-out .3s;
    z-index: 10;
    display: block !important;
    width: 100%;
}
.hb-search-form .search-form-container .search-form{
    max-width: 720px;
    margin: 0 auto;
}
.hb-search-form.opened {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.hb-search-form.opened .search-form-container {
    transform: translateY(0);
}
.search-form-container .search-form{
    position: relative;
}
.search-form-container .search-submit {
    padding: 0;
    background-color: transparent;
    border: none;
    outline: none;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}
.search-form-container .search-submit svg{
    display: block;
    max-width: 20px;
}
.hb-search-form .close-search {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 30px;
    top: 30px;
    width: 30px;
    height: 30px;
    z-index: 12;
    cursor: pointer;
}

.wpmm_mobile_menu_btn{
    display: none;
}


.irs--flat .irs-bar {
    top: 25px;
    height: 4px;
    background-color: #000;
}
.irs--flat .irs-line{
    height: 4px;
}
.irs--flat .irs-from, .irs--flat .irs-single, .irs--flat .irs-to{
    background-color: var(--black);
}
.irs--flat .irs-handle{
    background-color: #FFFFFF;
    border:1px solid #e5e5e5;
    box-shadow: 0 0 10px rgb(0 0 0 / 15%);
    width: 15px;
    height: 15px;
    top: 20px;
}
.bapf_hideckbox li label, .bapf_hideckbox li label a{
    color: var(--black);
}
.irs--flat .irs-handle>i:first-child{
    display: none;
}
.irs--flat .irs-from:before, .irs--flat .irs-single:before, .irs--flat .irs-to:before{
    border-top-color: var(--black);
}
.bapf_sfilter .bapf_clr_span.w2em, .bapf_sfilter .bapf_img_span.w2em{
    width: 35px;
    height: 35px;
    border-radius: 100%;
    border-color: transparent;
}
.bapf_head h3{
    font-size: 20px;
    margin-bottom: 1.2rem;
    position: relative;
    line-height: normal;
}

.berocket_aapf_widget_selected_filter {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.bapf_sfa_taxonomy {
    display: flex;
    flex-wrap: wrap;
}
.bapf_sfa_taxonomy ul {
    display: flex;
    flex-wrap: wrap;
}
.bapf_sfa_taxonomy > span{
    display: block;
    margin: 0 10px 0 0;
}
.bapf_sfilter 
 .bapf_sfa_taxonomy ul li {
    margin-right: 10px !important;
}
.bapf_sfa_taxonomy ul li a, .braapf_unselect_all {
    color: var(--black);
    background-color: #f5f5f5;
    padding: 4px 6px;
        padding: 5px 10px;
    border: 1px solid #999;
}
.bapf_sfa_taxonomy ul li a:hover, .braapf_unselect_all:hover {
    color: #ffffff;
    background-color: #000;
    border-color: #000;
}
.woocommerce-account h1.entry-title,
.woocommerce-page h1.entry-title{
    font-size: 46px;
    line-height: 1.2;
    margin: 0;
    margin-top: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}
.woocommerce-account .woocommerce {
    padding: 2.5rem 3rem;
    background-color: #FFFFFF;
    border: 2px solid #e5e5e5;
    margin: 0 auto;
    margin-top: 1em;
}
.product-name a{
    color: var(--black);
}
#add_payment_method table.cart img, .woocommerce-cart table.cart img, .woocommerce-checkout table.cart img {
    width: 80px;
}
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt{
    border: 1px solid transparent;
    background: var(--black);
    color: #fff;
    padding: 16px 15px;
    transition: 0.5s all ease;
}
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt:hover{
   background: var(--white); 
   border: 1px solid var(--black);
   color: var(--black);
}
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button:disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button:disabled[disabled]{
    color: var(--white);
}
.hfkd_woocomemrce_cart .cart_totals {
    border: 1px solid var(--black);
    padding: 1.5rem;
}
.cart-collaterals .cart_totals h2 {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 600;
}
.select2-container--default .select2-selection--multiple, 
.select2-container--default .select2-selection--single {
    border: 1px solid #e5e5e5;
    padding: 4px 12px;
    min-height: 45px;
    line-height: 40px;
    border-radius: 0;
    margin: 0;
    outline: 0;
    box-shadow: none !important;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.select2-container--default .select2-selection--single {
    border-radius: var(--pls-border-radius);
}
.select2-container--default .select2-selection--single, 
.select2-container--default .select2-selection--single .select2-selection__arrow {
    padding: 2px 4px;
    height: 18px;
}
.select2-selection--single .select2-selection__rendered {
    display: block;
    padding-left: 8px;
    padding-right: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.select2-container--default .select2-selection--single .select2-selection__rendered{
    line-height:normal;
    padding: 12px 15px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b{
    margin-top: 2px;
    margin-left: -8px;
    top: 70%;
}
.woocommerce-info,
.woocommerce-error, 
.woocommerce-info,
.woocommerce-message{
    border-top-color:var(--primary-color);
}

.header_bottom {
    position: relative;
}

#wp-megamenu-menu-1>.wpmm-nav-wrap ul.wp-megamenu>li.wpmm_mega_menu>ul.wp-megamenu-sub-menu > li {
    width: 33.33%;
    margin: 0;
    padding: 0 15px;
}

#wp-megamenu-menu-1>.wpmm-nav-wrap ul.wp-megamenu>li.wpmm_mega_menu>ul.wp-megamenu-sub-menu > li  ul {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}
#wp-megamenu-menu-1>.wpmm-nav-wrap ul.wp-megamenu>li.wpmm_mega_menu>ul.wp-megamenu-sub-menu > li > ul > li > ul > li > a {
    color: var(--black);
    font-weight: 600 !important;
    text-transform: uppercase;
    margin-bottom: 2px;
    display: block;
}
#wp-megamenu-menu-1>.wpmm-nav-wrap ul.wp-megamenu>li.wpmm_mega_menu>ul.wp-megamenu-sub-menu > li  ul li a {
    font-size: 15px;
    position: relative;
    color: var(--black);
    background: transparent;
    padding: 0;
    margin: 0;
    font-weight: 400 !important;
}
#wp-megamenu-menu-1>.wpmm-nav-wrap ul.wp-megamenu>li.wpmm_mega_menu>ul.wp-megamenu-sub-menu > li ul li {
    margin: 0;
    display: block;
}
#wp-megamenu-menu-1>.wpmm-nav-wrap ul.wp-megamenu>li.wpmm_mega_menu>ul.wp-megamenu-sub-menu li.wpmm-col{
    border: none;
}
#wp-megamenu-menu-1>.wpmm-nav-wrap ul.wp-megamenu>li.wpmm_mega_menu>ul.wp-megamenu-sub-menu > li > ul > li > ul > li > a > b {
    display: none;
}
#wp-megamenu-menu-1>.wpmm-nav-wrap .wp-megamenu>li>ul.wp-megamenu-sub-menu li.wpmm-type-widget:hover>a{
    color: var(--black) !important;
}
#wp-megamenu-menu-1>.wpmm-nav-wrap .wp-megamenu>li>ul.wp-megamenu-sub-menu li.wpmm-type-widget>a:hover{
    color: var(--primary-color);
}
#wp-megamenu-menu-1>.wpmm-nav-wrap ul.wp-megamenu>li ul.wp-megamenu-sub-menu li:hover>a{
    color: var(--black) !important;
}
#wp-megamenu-menu-1>.wpmm-nav-wrap ul.wp-megamenu>li.wpmm_mega_menu>ul.wp-megamenu-sub-menu > li ul li a:hover {
    color: var(--primary-color) !important;
}
.woocommerce-MyAccount-navigation li a{
    color: var(--black);
}
fieldset{
    border: none;
}
.woocommerce-Address .title h2{
    font-size: 24px;
    line-height: 120%;
}

.woocommerce form .form-row-first, 
.woocommerce form .form-row-last, 
.woocommerce-page form .form-row-first, 
.woocommerce-page form .form-row-last {
    width: 49%;
    overflow: visible;
}
.wp-megamenu-wrap {
    position: static;
}
body .wp-megamenu-wrap .wpmm-nav-wrap > ul{
    position: static;
}
body.wp-megamenu  .site-header .site-branding {
    display: block !important;
}
#wp-megamenu-menu-1>.wpmm-nav-wrap ul.wp-megamenu>li.wpmm_mega_menu>ul.wp-megamenu-sub-menu li.wpmm-col {
    padding: 0;
    border: none;
}
.woocommerce-product-details__short-description {
    margin-bottom: 30px;
}

.store-open {
    margin: 0;
    padding: 60px 0;
    background: #faf8f6;
}
.store-open .txt-content {
    max-width: 500px;
    width: 100%;
    margin-left: auto;
}
.business-hours .day {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
}

.business-hours .day-name {
    font-size: 14px;
    font-weight: bold;
    color: #333;
}

.business-hours .time {
    font-size: 14px;
    color: #666;
}

.separator {
    border-bottom: 1px solid #eee;
    margin: 5px 0;
}

.contact-info .title{
    margin-bottom: 30px;
}
.contact-item {
    text-align: center;
    display: flex;
    flex-flow: column;
    gap: 10px;
}
.contact-item .icon img {
    max-width: 50px;
    margin: 0 auto;
}
.contact-item h6{
    margin-bottom: 0px;
}

.fkcart-shortcode-container .fkcart-shortcode-price {
    display: none;
}
body #fkcart-floating-toggler {
    bottom: 15px;
    right: 15px;
}
body #fkcart-modal .fkcart-checkout-wrap #fkcart-checkout-button{
    text-transform: uppercase;
    margin-bottom: 10px;
}
body #fkcart-modal .fkcart-quantity-selector .fkcart-quantity__input{
    width: 45px;
    min-width: 45px;
}
a.added_to_cart.wc-forward {
    display: none;
}
.related.products{
    width: 100%;
    clear: both;
}
body #fkcart-floating-toggler{
    display: none;
}
.woocommerce-page .hfkd_you-may-also-like ul.products li.first {
    clear: unset;
}
.woocommerce-page .hfkd_you-may-also-like ul.products li.last {
    margin-right: 3.8%;
}
.error-404.not-found .error-img img {
    max-width: 500px;
    margin: 0 auto;
}
.error-404.not-found .content-box {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
}
.error-404.not-found .content-box h2{
    margin-bottom: 15px;
}


.md-size-chart-modal-body.medium, .md-size-chart-modal-body{
    border-radius: 0;
}
.md-size-chart-close {
    border: 0;
    height: auto;
    padding: 15px 20px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.md-size-chart-close .md-modal-title {
    color: #fff;
    font-size: 16px;
    line-height: 1;
    text-transform: uppercase;
    padding: 0;
}
div#md-size-chart-modal .remodal-close {
    font-weight: 400;
    width: auto;
    height: auto;
    position: relative;
}
div#md-size-chart-modal .remodal-close:hover{
    background: transparent;
    color: #ffffff;
}
div#md-size-chart-modal .remodal-close::before {
    width: auto;
    line-height: normal;
    position: relative;
}
.bapf_head.bapf_colaps_togl{
    pointer-events: none;
}
.bapf_head.bapf_colaps_togl > h3 {
}
.bapf_head.bapf_colaps_togl h3 > i{
    display: none;
}
#wc-stripe-express-checkout-element {
    display: none !important;
}
.woocommerce-checkout #payment ul.payment_methods li input {
    width: auto;
    min-height: unset;
    margin: 0 5px 0 0;
    position: relative;
    top: 2px;
}
.woocommerce-checkout #payment .payment_methods li img.stripe-icon {
    height: auto;
    width: 70px;
}

.woocommerce a.remove {
    background-image: url(../images/trash.svg);
    background-size: 100%;
    background-repeat: no-repeat;
    width: 25px;
    height: 32px;
    opacity: .4;
    text-indent: -9999px;
    font-size: 0;
    border-radius: 0;
}
.woocommerce a.remove:hover {
  background: url(../images/trash.svg) no-repeat;
    opacity: 1;
}
a.fkcart-select-options {
    color: #000000;
}
body #fkcart-modal .fkcart-checkout-wrap #fkcart-checkout-button .fkcart-checkout--icon{
    display: none;
}
.fkcart-checkout--icon svg{
    height: 30px;
    width: 30px;
    display: block;
}
input[type='radio'],
input[type='checkbox']  {
    accent-color: #000000;
}

.woocommerce ul#shipping_method li input,
.woocommerce-form__label-for-checkbox .input-checkbox {
    width: auto;
    min-height: unset;
    accent-color: #000;
}

/*-- Cart Page --*/
body.page-id-30 .woocommerce {
    display: inline-block;
    width: 100%;
}

body.woocommerce-checkout main#primary, 
body.page-id-30 main#primary {
    background-color: #f8f8f8;
    padding-top: 50px;
    padding-bottom: 50px;
}

body.page-id-30 header.entry-header h1, 
body.woocommerce-checkout header.entry-header h1 {
    display: none;
}
.woocommerce .woocommerce-cart-form .shop_table_wrap h1.cart-title, 
.woocommerce-page .cart-collaterals .cart_totals h2{
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 400;
    border-bottom: 1px solid #e8e8e8;
    padding-bottom: 15px;
    margin-bottom: 0;
}
body.page-id-30 .woocommerce .woocommerce-cart-form .shop_table_wrap {
    border: 1px solid #e8e8e8;
    border-radius: 0;
    background: #fff;
    padding: 15px;
}
body.page-id-30 .woocommerce .woocommerce-cart-form table.shop_table {
    border: 0;
    border-radius: 0;
    background: #fff;
    padding: 0px;
}
.woocommerce-cart-form table.shop_table thead tr th {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px;
}
.woocommerce-page .cart-collaterals .cart_totals{
    border: 1px solid #e8e8e8;
    border-radius: 0;
    background: #fff;
}
.woocommerce-cart table.cart td.product-quantity {
    display: flex;
    align-items: center;
    gap: 15px;
}

.woocommerce-cart table.cart td.product-quantity .product-remove a.remove {
    width: 15px;
    height: 18px;
}
.woocommerce-page .cart-collaterals .cart_totals table.shop_table {
    border: 0;
    border-radius: 0;
    margin-top: 0px;
}

.woocommerce .woocommerce-cart-form .shop_table_wrap button.update_cart, 
.woocommerce-page .cart-collaterals .cart_totals a.checkout-button {
    border-radius: 0;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
}
body.woocommerce-checkout .wc-block-components-sidebar {
    padding: 0;
    top: 0;
    margin: 0;
}

body.woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-block {
    border: 1px solid #e8e8e8;
    border-radius: 0;
    background: #fff;
}
body.woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-checkout-order-summary__title-text {
    font-family: var(--heading_font);
    font-size: 1.25em;
}
body.woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-order-summary-item:not(:last-child) {
    border-bottom: 1px solid #e8e8e8;
}
body.woocommerce-checkout .wc-block-components-main form.wc-block-components-form .wc-block-checkout__actions_row button {
    border-radius: 0px;
    border: 1px solid #000000;
    background: #ffffff;
    color: #000000;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    outline: none;
}
body.woocommerce-checkout .wc-block-components-main form.wc-block-components-form .wc-block-checkout__actions_row button:hover {
    background: #000000;
    color: #fff;
}
body.woocommerce-checkout .wc-block-components-main form.wc-block-components-form {
    border: 1px solid #e8e8e8;
    border-radius: 0;
    background: #fff;
    padding: 20px;
}
body.woocommerce-checkout .wc-block-components-main form.wc-block-components-form fieldset.wc-block-checkout__contact-fields {
    margin-bottom: 25px;
}
.wc-block-components-express-payment.wc-block-components-express-payment--checkout, 
body.woocommerce-checkout .wc-block-components-express-payment-continue-rule {
    display: none;
}

article header.entry-header {
    display: none;
}
.cms-content-wrap{
    max-width: 980px;
    margin: 50px auto 0;
}
.cms-content-wrap h1 + p {
    font-size: 18px;
    margin-bottom: 30px;
}

.cms-content-wrap h2 {
    margin-bottom: 16px;
}

.cms-content-wrap p{
    font-size: 16px;
}

.cms-content-wrap ul{
    list-style: disc;
    list-style-position: inside;
    margin-bottom: 30px;
}
.cms-content-wrap ul li,.cms-content-wrap ol li {
    list-style: disc;
    list-style-position: inside;
    font-size: 16px;
    margin-bottom: 10px;
}
.cms-content-wrap ol li {
    list-style: decimal;
     list-style-position: inside;
}
.cms-content-wrap ul li:last-child{
    margin-bottom: 0;
}
.cms-content-wrap ul ul{
    margin-top: 10px;
    padding-left: 25px;
    margin-bottom: 0;
}
.cms-content-wrap ul ul li {
    list-style: circle;
    list-style-position: inside;
}
div .wc-block-components-radio-control .wc-block-components-radio-control__input {
    height: 24px;
    width: 24px;
    padding: 0;
    line-height: normal;
}
div .wc-block-components-checkbox .wc-block-components-checkbox__input[type=checkbox]{
    padding: 0;
}

.main-navigation ul.sub-menu {
    position: absolute;
}
.main-navigation ul.sub-menu {
    position: absolute;
    top: 100%;
    background: #fff;
    z-index: 2;
    padding: 15px;
    left: 0;
    right: auto;
    opacity: 0;
    visibility: hidden;
}

.main-navigation ul li:hover > ul{
    left: 0;
    right: auto;
    opacity: 1;
    visibility: visible;
}

.search-result-header{
    margin-top: 30px;
}
.search-result-header h1{
    text-align: center;
    margin: 0 0 45px;
}

.search-result-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin: 0 - 10px;
}
.search-result-wrapper > article {
    width: 25%;
    padding: 0 10px;
    margin-bottom: 30px;
}
.search-result-wrapper > article .post-thumbnail {
    position: relative;
    padding-bottom: 90%;
    display: block;
    width: 100%;
    margin-bottom: 20px;
    border: 1px solid #000;
}
.search-result-wrapper > article .post-thumbnail img{
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    object-fit: cover;
    display: block;
}
.innerpage-hero {
    padding: 80px 0;
    background: #faf8f6;
}

.innerpage-hero .content {
    text-align: center;
    width: 900px;
    max-width: 100%;
    margin: 0 auto;
}

.innerpage-hero .content h1 {}

.innerpage-hero .content p {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 0;
}