/**
 * BVD shop brand foundation.
 *
 * Base visual identity extracted/adapted from the main BVD site belongs here.
 */

@font-face {
    font-family: "Heebo";
    src: url(../fonts/Heebo-VariableFont_wght.ttf) format("truetype");
    font-weight: 300 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Open Sans Hebrew";
    src: url(../fonts/OpenSansHebrew-Bold.eot);
    src: url(../fonts/OpenSansHebrew-Bold.eot?#iefix) format("embedded-opentype"), 
		 url(../fonts/OpenSansHebrew-Bold.woff) format("woff"), 
		 url(../fonts/OpenSansHebrew-Bold.ttf) format("truetype"),
         url(../fonts/OpenSansHebrew-Bold.svg#OpenSansHebrew-Bold) format("svg");
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: "Open Sans Hebrew";
    src: url(../fonts/OpenSansHebrew-Light.eot);
    src: url(../fonts/OpenSansHebrew-Light.eot?#iefix) format("embedded-opentype"), 
		 url(../fonts/OpenSansHebrew-Light.woff) format("woff"), 
		 url(../fonts/OpenSansHebrew-Light.ttf) format("truetype"),
         url(../fonts/OpenSansHebrew-Light.svg#OpenSansHebrew-Light) format("svg");
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: "Open Sans Hebrew";
    src: url(../fonts/OpenSansHebrew-Regular.eot);
    src: url(../fonts/OpenSansHebrew-Regular.eot?#iefix) format("embedded-opentype"), 
		 url(../fonts/OpenSansHebrew-Regular.woff) format("woff"), 
		 url(../fonts/OpenSansHebrew-Regular.ttf) format("truetype"),
         url(../fonts/OpenSansHebrew-Regular.svg#OpenSansHebrew-Regular) format("svg");
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: Alef;
    src: url(../fonts/Alef-Regular.eot);
    src: url(../fonts/Alef-Regular.eot?#iefix) format("embedded-opentype"), 
		 url(../fonts/Alef-Regular.woff2) format("woff2"), 
		 url(../fonts/Alef-Regular.woff) format("woff"), 
		 url(../fonts/Alef-Regular.ttf) format("truetype"),
         url(../fonts/Alef-Regular.svg#fonts/Alef-Regular) format("svg");
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: Alef;
    src: url(../fonts/Alef-Bold.eot);
    src: url(../fonts/Alef-Bold.eot?#iefix) format("embedded-opentype"), 
		 url(../fonts/Alef-Bold.woff2) format("woff2"), 
		 url(../fonts/Alef-Bold.woff) format("woff"), 
		 url(../fonts/Alef-Bold.ttf) format("truetype"),
		 url(../fonts/Alef-Bold.svg#fonts/Alef-Bold) format("svg");
    font-weight: 700;
    font-style: normal;
}

:root {
	--bvd-black: #000000;
	--bvd-white: #ffffff;
	--bvd-off-white: #f1f1f1;
	--bvd-gray: #c5c5c5;
	--bvd-dark-gray: #808080;
	--bvd-light-gray: #dedede;
	--bvd-super-light-gray: #f3f3f3;
	--bvd-green-gray: #a3bda8;
	--bvd-torquise: #1dbdc6;
	--bvd-mega-menu-width: 1170px;
	--bvd-color-text: #111111;
	--bvd-color-muted: #808080;
	--bvd-color-accent: #a3bda8;
	--bvd-color-border: #e6e6e6;
	--bvd-color-surface: #ffffff;
	--bvd-font-base: "Heebo", "Open Sans Hebrew", Arial, sans-serif;
	--bvd-layout-width: 1600px;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	background: var(--bvd-color-surface);
	color: var(--bvd-color-text);
	font-family: var(--bvd-font-base);
	line-height: 1.5;
}
body:not(.home) {
    padding-top: 100px;
}
a {
	color: inherit;
}

img {
	height: auto;
	max-width: 100%;
}

button {
    cursor: pointer;
}

.d-flex {
    display: flex;
}
.container {
	margin-inline: auto;
	max-width: var(--bvd-layout-width);
	padding-inline: 15px;
	width: 100%;
}

.row {
	display: flex;
	flex-wrap: wrap;
	margin-inline: -15px;
}

.col-12,
.col-3,
.col-6,
.col-md-3,
.col-md-4,
.col-md-8,
.col-xs-4 {
	min-height: 1px;
	padding-inline: 15px;
	position: relative;
	width: 100%;
}

.col-12 {
	flex: 0 0 100%;
	max-width: 100%;
}

.col-6 {
	flex: 0 0 50%;
	max-width: 50%;
}

.col-3 {
	flex: 0 0 25%;
	max-width: 25%;
}

.col-xs-4 {
	flex: 0 0 33.333333%;
	max-width: 33.333333%;
}

@media screen and (min-width: 768px) {
	.col-md-2 {
		flex: 0 0 16.66666%;
		max-width: 16.66666%;
	}
	.col-md-3 {
		flex: 0 0 25%;
		max-width: 25%;
	}
	.col-md-4 {
		flex: 0 0 33.333333%;
		max-width: 33.333333%;
	}

	.col-md-8 {
		flex: 0 0 66.666667%;
		max-width: 66.666667%;
	}
}

.collapse:not(.show) {
	display: none;
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal;
}

.site-header,
.site-footer {
	border-color: var(--bvd-color-border);
}

#site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
}
body.admin-bar #site-header {
    top: 32px
}

.site-header__inner,
.site-footer__inner,
body:not(.home) .site-main {
	margin-inline: auto;
	max-width: var(--bvd-layout-width);
}

.site-header__inner {
	align-items: center;
	display: flex;
	gap: 32px;
	justify-content: space-between;
	min-height: 88px;
}

.site-header__logo,
.site-header__logo-link {
	font-size: 28px;
	font-weight: 700;
	text-decoration: none;
}

.site-header__logo img {
	display: block;
	height: auto;
	max-height: 84px;
	width: auto;
}

.site-header__logo svg {
    width: 170px;
    height: 47px;
}

.site-footer {
	border-top: 1px solid var(--bvd-color-border);
	margin-top: 64px;
	padding-block: 32px;
}

/* --------------------------------------------------------------------------
 * Header/footer CSS copied from main BVD theme for cleanup.
 * Source: /WebDev/bvd.co.il/web/wp-content/themes/bvd/css/main.css
 * -------------------------------------------------------------------------- */
.search-bar {
    opacity: 0;
    transform: translateY(-40px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    position: fixed;
    z-index: 1;
    top: 100px;
    left: 0;
    right: 0;    
}
.admin-bar .search-bar {
    top: 132px;
}
body.scrolled .search-bar {
    background: #fff;
}
.search-bar.active {
    transition: opacity 0.4s ease, transform 0.4s ease;
    opacity: 1;
    transform: translateY(0);
    background: #fff;
    border-top: 1px solid var(--bvd-color-border);
    border-bottom: 1px solid var(--bvd-color-border);
}
body.home:not(.scrolled) .search-bar.active {
    border-top: 1px solid #ffffff3d;
    border-bottom: 1px solid #ffffff3d;
    background: #0000002b;
}
#site-header #search-form {
    position: relative;
    display: flex;
    align-items: stretch;
}

.search-bar #search-form {
    display: flex;
    width: 100%;
    height: 100%;
    border-bottom: 1px solid transparent;
}
.search-bar #search-input {
    outline: none;
    box-shadow: unset;
    line-height: 44px;
    padding: 0 5px;
    border-radius: 0;
    border: 0;
    min-width: 0;
    width: calc(100% - 40px);
    background: transparent;
}
body.home:not(.scrolled) .search-bar #search-input {
    color: #fff;
}
body.home:not(.scrolled) .search-bar #search-input::placeholder {
    color: #fff;
}
.search-bar .search-submit {
    background: unset;
    border: 0;
    height: 100%;
    padding: 0;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.2s;
}
.search-bar .search-submit svg {
    width: 16px;
    height: 16px;
}
.search-bar .search-submit:hover {
    background: #f1f1f1;
    transition: all 0.2s;
}
.search-bar .search-submit:hover svg path {
    fill: var(--bvd-green-gray);
}
@media screen and (min-width: 768px) {
    #searchform {        
        width: 100%;
        border: 0;        
        transition: all 0.2s;
    }
    #searchform.active {
        border-bottom: 1px solid transparent;
        border-radius: 4px 4px 0 0;
    }
    .bvd-scrolled #searchform {
        border-top: 0;
        border-radius: 0;
        border-color: #c5c5c5;
        transition: all 0.1s;
        border: 0;
        border-bottom: 1px solid #808080;
    }
    .bvd-scrolled #searchform.active {
        background: #f1f1f1;
        border-left: 1px solid #c5c5c5;
        border-right: 1px solid #c5c5c5;
        transition: all 0.2s;
    }
    .bvd-scrolled #search-input {
        width: 100%;
        background: transparent;
        transition: all 0.2s;
    }
    .search-suggestions {
        top: 44px;
        left: -1px;
        right: -1px;
    }
}
/* Search Page */
.search-page #searchform {    
}
.search-page #search-input {
    width: calc(100% - 50px);
    height: 40px;
    line-height: 40px;
    padding: 0 10px;
    background: var(--bvd-light-gray);
    border: 0;
}
.search-page .search-submit {
    width: 50px;
    height: 40px;
    background: var(--bvd-green-gray);
    border: 0;
    cursor: pointer;
    transition: opacity 0.2s;
}
.search-page .search-submit:hover {
    opacity: 0.8;
    transition: opacity 0.2s;
}
.search-page .search-submit svg {
    width: 18px;
}
.search-page .search-submit svg path {
    fill: #fff;
}
.search-page #search-form {
    width: 100%;
    margin: 40px 0;
}
.search-page #search-results {
    padding-block: 35px 20px;
}
.search-page .posts-container {
    row-gap: 30px;
}
.search-result-item {
    height: 100%;
}
.search-result-item__image {
    align-items: center;
    aspect-ratio: 1 / 1;
    background: var(--bvd-super-light-gray);
    display: flex;
    justify-content: center;
    overflow: hidden;
    text-decoration: none;
    width: 100%;
}
.search-result-item__image img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}
.search-result-item__body {
    padding-top: 14px;
    text-align: center;
}
.search-result-item__title {
    color: var(--bvd-black);
    display: block;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.35;
    text-decoration: none;
}
.search-result-item__title:hover {
    color: var(--bvd-green-gray);
}
.search-result-item__price {
    color: var(--bvd-black);
    font-size: 15px;
    margin-top: 7px;
}
.search-result-item__excerpt {
    color: var(--bvd-dark-gray);
    font-size: 14px;
    line-height: 1.55;
    margin-top: 8px;
}
.search-result-item__button {
    margin: 12px auto 0;
}
.search-page .pagination {
    justify-content: center;
    padding-block: 20px;
}
.search-page .pagination .page-numbers {
    align-items: center;
    border: 1px solid var(--bvd-color-border);
    display: inline-flex;
    height: 36px;
    justify-content: center;
    margin-inline: 3px;
    min-width: 36px;
    padding-inline: 10px;
    text-decoration: none;
}
.search-page .pagination .page-numbers.current,
.search-page .pagination .page-numbers:hover {
    background: var(--bvd-black);
    border-color: var(--bvd-black);
    color: var(--bvd-white);
}

/* Menu */
header ul.menu > li {
    display: inline-block;
    margin-left: 30px;
}
header ul.menu > li > a {
    color: var(--bvd-black);
    font-size: 18px;
    position: relative;
}
body.home:not(.scrolled) header ul.menu > li > a {
    color: #fff;
}
body.home.scrolled header ul.menu > li > a {
    color: var(--bvd-black);
}
header ul.menu > li.current-menu-parent > a {
    font-weight: 500;
}
@media screen and (min-width: 768px) {
    .navbar-collapse {
        display: block !important;
    }
    header ul.menu > li > a {
        text-decoration: none;
        display: block;
    }
    header ul.menu > li > a:after {
        display: block;
        content: "";
        border-bottom: 1px solid;
        transform: scaleX(0);
        transition: transform .25s ease-in-out 5ms;
    }
    header ul.menu > li:hover > a:after {
        transform: scaleX(1);
        text-decoration: none;
    }
}
header ul.menu > li.current-menu-item > a {
    font-weight: 500;
}
header ul.menu ul.sub-menu > li.current-menu-item > a {
    font-weight: 500;
}
@media screen and (min-width: 768px) {
    header ul.menu > li:hover > a {
        color: var(--bvd-green-gray);
    }
    .sub-menu {
        display: none;
        position: absolute;
        z-index: 11;
        list-style: none;
        box-shadow: 0 10px 10px rgb(0 0 0 / 5%);
        padding-left: 10px;
        padding-right: 10px;
        border-top: 0;
        background: #f7f7f7;
    }
    .sub-menu > li {
        border-bottom: 1px solid var(--bvd-light-gray);
    }
    .sub-menu > li:last-child {
        border-bottom: none;
    }
    .bvd-mega-menu .sub-menu {
        position: absolute;
        left: calc(50% - (var(--bvd-mega-menu-width) / 2) + 3px);
        right: calc(50% - (var(--bvd-mega-menu-width) / 2) + 3px);
        max-height: 320px;
        overflow: hidden;
        flex-flow: wrap;
        align-items: center;
        background: linear-gradient(0deg, #ffffff, #f7f7f7);
        display: flex;
        max-height: 0;
        transition: all 0.3s;
        padding-left: calc(var(--bvd-mega-menu-width) / 5 * 0) !important;
        
    }
    .bvd-mega-menu.cols-1 .sub-menu {
        padding-left: calc(var(--bvd-mega-menu-width) / 5 * 4) !important;
        background: linear-gradient(90deg, #ffffff, #f7f7f7);
    }
    .bvd-mega-menu.cols-1 .sub-menu > li {
        flex: 0 1 calc((100% / 1) - 0px);
    }
    .bvd-mega-menu.cols-2 .sub-menu {
        padding-left: calc(var(--bvd-mega-menu-width) / 5 * 3) !important;
        background: linear-gradient(90deg, #ffffff, #f7f7f7);
    }
    .bvd-mega-menu.cols-2 .sub-menu > li {
        flex: 0 1 calc((100% / 2) - 0px);
    }
    .bvd-mega-menu.cols-3 .sub-menu {
        padding-left: calc(var(--bvd-mega-menu-width) / 5 * 2) !important;
        background: linear-gradient(90deg, #ffffff, #f7f7f7);
    }
    .bvd-mega-menu.cols-3 .sub-menu > li {
        flex: 0 1 calc((100% / 3) - 0px);
    }
    .bvd-mega-menu.cols-4 .sub-menu {
        padding-left: calc(var(--bvd-mega-menu-width) / 5 * 1) !important;
        background: linear-gradient(90deg, #ffffff, #f7f7f7);
    }
    .bvd-mega-menu.cols-4 .sub-menu > li {
        flex: 0 1 calc((100% / 4) - 0px);
    }
    .bvd-mega-menu.cols-5 .sub-menu {
        padding-left: calc(var(--bvd-mega-menu-width) / 5 * 0) !important;
        background: linear-gradient(90deg, #ffffff, #f7f7f7);
    }
    .bvd-mega-menu.cols-5 .sub-menu > li {
        flex: 0 1 calc((100% / 5) - 0px);
    }
    .bvd-mega-menu > a:before {
        content: "";
        position: absolute;
        border-color: rgba(194, 225, 245, 0);
        border: solid transparent;
        border-bottom-color: transparent;
        border-width: 10px;
        bottom: 0;
        right: calc(50% - 11px);
        z-index: 11;
    } 
    .bvd-mega-menu > a:after {
          content: "";
          position: absolute;
          right: calc(50% - 10px);
          bottom: 0;
          width: 0;
          height: 0;
          border: solid transparent;
          border-width: 9px;
          border-bottom-color: transparent;
          z-index: 11;
    }
    .bvd-mega-menu.active > a:before {
        border-bottom-color: #000000;
        transition: border 0.2s;
    } 
    .bvd-mega-menu.active > a:after {
        border-bottom-color: #f7f7f7;
    }
    li.bvd-mega-menu.active .sub-menu {
        transition: all 0.5s;
        max-height: 320px;
        height: auto;
    }
    .bvd-mega-menu .sub-menu {
        padding: 0;
    }
    .bvd-mega-menu .sub-menu > li {
        border: 0;
        flex: 0 1 calc(20% - 0px);
        margin: 0;
        padding: 0 10px;
        border-bottom: 1px solid #f1f1f1;
    }
    .bvd-mega-menu .sub-menu > li > a {
        display: inline-block;
        line-height: initial;
        padding: 15px 5px;
        transition: all 0.2s;
        border-bottom: 1px solid transparent;
    }
    .bvd-mega-menu .sub-menu > li > a:hover {
        /*border-color: var(--bvd-green-gray);*/
        transition: all 0.2s;
    }
	.hamburger {
		display: none;
    }
}
.hamburger {
    background: transparent;
    border: 0;
    cursor: pointer;
    height: 40px;
    padding: 8px;
    width: 44px;
}
.hamburger-box {
    display: inline-block;
    height: 24px;
    position: relative;
    width: 28px;
}
.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    background: var(--bvd-black);
    display: block;
    height: 2px;
    position: absolute;
    transition: all 0.2s;
    width: 28px;
}
.hamburger-inner {
    top: 11px;
}
.hamburger-inner::before,
.hamburger-inner::after {
    content: "";
}
.hamburger-inner::before {
    top: -8px;
}
.hamburger-inner::after {
    bottom: -8px;
}
.hamburger.is-active .hamburger-inner {
    background: transparent;
}
.hamburger.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(45deg);
}
.hamburger.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-45deg);
}
.sub-menu > li a {
    color: var(--bvd-black);
    font-size: 14px;
    line-height: 40px;
    padding: 0 5px;
    display: block;
    position: relative;
}
.sub-menu > li a:hover {
    color: var(--bvd-green-gray);
}
header .bottom ul.menu > li:hover .fas.fa-caret-up,
header .bottom ul.menu > li:hover .sub-menu {
    display: block;
}
@media screen and (min-width: 1200px) {
	header .bottom ul.menu > li .sub-menu {
		width: 350px;
		padding: 20px 30px;
		position: absolute;
		right: 0;
		top: 44px;
		background: #d6d6db;
		flex-wrap: wrap;
		z-index: 3;
		display: none;
        transition: all 0.2s;
	}
	.mobile-menu-newsletter {
		display: none;
	}
	header .bottom ul.menu > li .sub-menu li.menu-item,
	header .bottom ul.menu > li .sub-menu li.item {
		padding: 5px 0;
		border-bottom: 1px solid #b2b2bc;
	}
	.mobile-menu-ul {
		display: none;
	}
}
header ul.menu > li.liked:after {
	content: "\f004";
	font-family: "Font Awesome 5 Free";
	font-weight: 600;
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
    margin-right: 5px;
    color: var(--bvd-torquise);
}
header .bottom ul.menu > li .sub-menu li {
    flex: 0 0 100%;
}
header .bottom ul.menu > li .sub-menu li.top-image {
    margin-bottom: 10px;
    position: relative;
}
header .bottom ul.menu > li .sub-menu li.top-image hr {
    margin: 0;
    position: absolute;
    border-top: 3px solid #f59d00;
    z-index: 1;
    width: 40%;
    bottom: 0;
}
header .bottom ul.menu > li .sub-menu li.menu-item a,
header .bottom ul.menu > li .sub-menu li.item a {
    color: var(--bvd-black);
}
header .bottom ul.menu > li .sub-menu li.menu-item a:hover,
header .bottom ul.menu > li .sub-menu li.item a:hover {
    color: var(--bvd-green-gray);
}
header .sub-menu > .menu-item > a:before {
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    position: absolute;
    right: 5px;
    height: 100%;
    width: 20px;
}

#site-header .top-bar {
    height: 30px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    transition: all 0.2s;
}
#site-header .top-bar .top-bar-row {
    height: 100%;
    align-items: center;
    justify-content: end;
}
.qlb {
    font-size: 14px;
    color: var(--bvd-black);
}
.qlb a {
    text-decoration: none;
}
body.home:not(.scrolled) .qlb {
    color: #fff;
}
body.scrolled #site-header .top-bar {
    background: #f1f1f1;
}
#site-header .top-bar > .container {
    height: 100%;
}
#site-header .nav-bar .nav-bar-row {
    display: flex;
    flex-flow: row;
    align-items: center;
}
@media screen and (min-width: 768px) {
    #site-header .nav-bar {
        height: 70px;
    }
    #site-header .nav-bar {
        height: 70px;
    }
    body.home.scrolled #site-header .nav-bar {
        transition: all 0.2s;
    }
    body:not(.home) #site-header .nav-bar,
    body.scrolled #site-header .nav-bar{
        background: #fff;
        transition: all 0.2s;
    }
    body:not(.home) #site-header .top-bar,
    body.scrolled #site-header .top-bar {
        background: #f1f1f1;
        transition: all 0.2s;
    }

    #site-header .nav-bar > .container {
        height: 100%;
    }
}
@media screen and (min-width: 768px)
{
	#site-nav-ad {
        margin-top: 20px;
        margin-bottom: 20px;
	}
}
#site-nav-bar {
    height: 70px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    transition: all 0.2s;
}

#main-menu-nav ul.menu{
    margin: 0;
    padding: 0;
}

#site-header .site-logo {
    padding: 0;
    text-align: right;
    display: flex;
    align-items: center;
    flex: 0 0 210px;
    max-width: 210px;
}
#site-header .site-logo svg,
#site-header .site-logo img {
    max-width: 170px;
    height: 46px;
}
body.home:not(.scrolled) #site-header .site-logo svg path:not(#logo-letter) {
    fill: white;
}

#site-header .header-btns {
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: end;
}
@media screen and (min-width: 768px) {
    #site-header .header-btns {
        padding: 0;
    }
}
.newsletter-btn {
    font-size: 18px;
    display: flex;
    align-items: center;
    color: var(--bvd-dark-gray);
    border: 1px solid transparent;
    line-height: 30px;
    padding: 0 10px;
    border-radius: 4px;
}
.newsletter-btn:hover {
    border-color: var(--bvd-green-gray);
    box-shadow: 0 0 10px rgb(0 0 0 / 5%);
}
.newsletter-btn svg {
    width: 17px;
    margin-left: 5px;
    margin-top: 2px;
}
svg line,
svg path {
    transition: all 0.2s;
}
.newsletter-btn:hover svg path {
    fill: var(--bvd-green-gray);
    transition: all 0.2s;
}
.button,
.top-bar .bvd-advertise {
    font-size: 18px;
    line-height: 30px;
    height: 30px;
    padding: 0 10px;
    color: #fff;
    display: flex;
    align-items: center;
    margin-right: 20px;
    border-radius: 4px;
    color: var(--bvd-white);
    background-color: var(--bvd-green-gray);
}
.button:hover,
.top-bar .bvd-advertise:hover {
    color: #fff;
}
.bg-default {
    background: var(--bvd-green-gray);
}
#site-header .menu-wrap {
    width: 100%;
    padding: 0;
}
.bvd-s-h #site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 100;
    font-family: var(--bvd-font-base);
}
.bvd-s-h.admin-bar #site-header {
    top: 32px;
}
@media screen and (min-width: 768px) {
    .bvd-s-h.bvd-scrolled #site-header .top-bar {
        height: 60px;
        transition: all 0.2s;
    }
}
.bvd-s-h.bvd-scrolled #site-header .nav-bar {
    height: 45px;
}
.bvd-s-h.bvd-scrolled header ul.menu > li > a {
    line-height: 45px;
}
@media screen and (min-width: 768px) {
    #site-header .menu-wrap {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
}
/* footer */
#site-footer {
    margin-top: 30px;
    font-family: var(--bvd-font-base);
}
@media screen and (min-width: 768px) {
    #site-footer {
        padding-bottom: 90px;
    }
}

.footer-block ul.menu {
    padding: 0;
}
.footer-block {
    /*
    width: 16.66666667%;
    max-width: 16.66666667%;
    flex: 0 0 16.66666667%;
    */
}
.footer-block.d {
    width: 30%;
    max-width: 30%;
    flex: auto;
}
.footer-block.d ul {
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
}
.footer-block.r {
    padding-right: 0;
}
.footer-block.l {
    padding-left: 0;
}
.footer-block.nls {
    padding: 0;
    width: 20%;
    max-width: 20%;
    flex: 0 0 20%;
}
.site-contact-info {
    font-size: 14px;
}
.footer-block li {
    list-style-type: none;
    font-size: 14px;
    margin-bottom: 15px;
}
.footer-block li a {
    color: var(--bvd-black);
}
.footer-block li a:hover {
    color: var(--bvd-green-gray);
}
.footer-block .links,
.footer-block .contact_info {
    padding: 0;
    font-size: 14px;
}
.footer-block .contact_info a {
    color: var(--bvd-black);
}
.footer-block .contact_info a:hover {
    color: var(--bvd-green-gray);
}
.footer-block .footer-menu-title {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    border-bottom: 1px solid var(--bvd-dark-gray);
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.footer-subtitle {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 20px;
}
.footer-main {
    padding: 25px 0;
}
.site-terms {
    margin: 0;
}

.bvd-signup-wrap {
    text-align: center;
    padding: 30px 0;
}
.bvd-signup-wrap img {
    margin-bottom: 10px;
}
.bvd-signup-wrap .text-large-black {
    font-weight: 700;
    font-size: 26px;
    line-height: 32px;
    margin-bottom: 10px;
}
.bvd-signup-wrap .text-medium-black {
    font-weight: 400;
    font-size: 18px;
    line-height: 20px;
    margin-bottom: 10px;
}
.bvd-signup-wrap #open-newsletter-reg {
    width: 100%;
    max-width: 265px;
    justify-content: center;
    margin: 20px auto;
    cursor: pointer;
    transition: all 0.2s;
}
.bvd-signup-wrap #open-newsletter-reg:hover {
    transition: all 0.2s;
}
#site-footer .theBottomLine {
    font-size: 14px;
    text-align: center;
    border-top: 1px solid var(--bvd-dark-gray);
}
#site-footer .copyrights {
    padding: 10px 0;
    text-align: center;
}
#site-footer .credits {
    padding-top: 10px;
}

#user-memu-nav ul {
    display: flex;
    list-style-type: none;
    direction: ltr;
    padding: 0;
}
#user-memu-nav li:not(:last-child) {
    margin-right: 10px;
}
#user-memu-nav li .icon {
    width: 40px;
    height: 40px;
    border-radius: 0;
    justify-content: center;
    align-items: center;
    display: flex;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s;
}
#user-memu-nav li .icon:hover {
    background: #f1f1f1;
    transition: all 0.2s;
}
body.home:not(.scrolled) #user-memu-nav li .icon {
    background: transparent;
    /*border: 1px solid #ffffff3d;*/
}
body.home:not(.scrolled) #user-memu-nav li .icon.cart svg path {
    fill: white;
}
body.home:not(.scrolled) #user-memu-nav li .icon.search svg path {
    fill: white;
}
body.home:not(.scrolled) #user-memu-nav li .icon.user svg path {
    stroke: white;
}
body.home:not(.scrolled) #user-memu-nav li .icon.user svg circle {
    stroke: white;
}

body.home:not(.scrolled) #user-memu-nav li .icon:hover {
    background: #fff;
}
body.home:not(.scrolled) #user-memu-nav li .icon.cart:hover svg path {
    fill: var(--bvd-black);;
}
body.home:not(.scrolled) #user-memu-nav li .icon.search:hover svg path {
    fill: var(--bvd-black);;
}
body.home:not(.scrolled) #user-memu-nav li .icon.user:hover svg path {
    stroke: var(--bvd-black);;
}
body.home:not(.scrolled) #user-memu-nav li .icon.user:hover svg circle {
    stroke: var(--bvd-black);
}

/* Homepage */
.main-banner .wrapper {
    height: calc(100vh * 0.75);
    overflow: hidden;
    position: relative;
    background-position: 50% 50%;
    background-size: cover;
    background-repeat: no-repeat;
}
.main-banner .wrapper .overlay {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #00000029;
}
.main-banner .wrapper .text-float {
    text-align: center;
    color: #fff;
    font-size: 20px;
    line-height: 60px;
}
.main-banner .wrapper .text-float .brand-word {
    text-transform: uppercase;
    font-weight: 700;
    font-family: serif;
    font-size: 80px;
    color: var(--bvd-color-accent);
}
