body {
    --primary-gradient-first: #CFA872;
    --primary-gradient-second: #E1C698; 
    --primary: #CBA46C;
    --white: #ffffff;
    --secondary: #B28A4F;
    --grey: #F5F4F2;
    --dark-grey: #828793;
    --dark-grey2: #898F9B;
    --black: #051028;
    --dark-blue: #132038;
    --blue: #172137;
    --grey-blue: #A0A9B9;
    --grey-input: #D6D5D4;
    --grey-input2: #FAF9F7;
    --grey-border: #F0EFED;
    --grey-faq: #FAF9F8;
    --red: #EB5757;
    overflow-x: hidden; 
}

html {
    margin-top: 0 !important;
    overflow-x: hidden; 
}

html.noscroll {
    overflow: hidden;
}

.mobile-view {
    display: none;
}

.wrapper,
.woocommerce-notices-wrapper {
    max-width: 1146px;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
}

h1 {
    font-family: 'Brandon Grotesque';
    font-weight: 300;
    font-size: 48px;
    line-height: 140%;
    text-align: center;
    color: var(--primary);
}

h2 {
    font-family: 'Brandon Grotesque';
    font-size: 30px;
    font-weight: 300;
    line-height: 140%;
    text-align: center;
    color: var(--black);
}

h3 {
    font-family: 'Brandon Grotesque';
    font-weight: 300;
    font-size: 24px;
    line-height: 140%;
    text-align: center;
    color: var(--black);
}

h4 {
    font-family: 'Roboto';
    font-weight: 300;
    font-size: 18px;
    line-height: 180%;
    text-align: center;
    color: var(--black);
}

h5 {
    font-family: 'Roboto';
    font-weight: 300;
    font-size: 16px;
    line-height: 180%;
    text-align: center;
    color: var(--black);
}

p {
    font-family: 'Roboto';
    font-weight: 300;
    font-size: 16px;
    line-height: 180%;
    color: var(--black);
}

p a {
    color: var(--primary);
    transition: .3s;
}

p a:hover {
    color: var(--secondary);
}

.underline {
    padding-bottom: 24px;
    position: relative;
    margin-bottom: 20px;
}

.underline::after {
    content: '';
    width: 100px;
    height: 4px;
    position: absolute;
    bottom: 0;
    left: calc(50% - 50px);
    border-radius: 2px;
    background: linear-gradient(90deg, var(--primary-gradient-first) 0%, var(--primary-gradient-second) 100%);
}

.underline.small {
    padding-bottom: 17px;
}

.underline.small::after {
    width: 80px;
    left: calc(50% - 40px);
}

.borderline-top, .borderline-bottom {
    position: relative;
}

.borderline-top {
    padding-top: 20px;
}

.borderline-bottom {
    padding-bottom: 20px;
}

.borderline-bottom::after,
.borderline-top::before {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary) 0%, rgba(203, 163, 107, 0) 100%);
    border-radius: 1px;
}

.borderline-top::before {
    top: 0;
}

.borderline-bottom::after {
    bottom: 0;
}

.button, #fpd-start-customizing-button {
    background: linear-gradient(90deg, var(--primary-gradient-first), var(--primary-gradient-second) 50%, var(--primary) 50%, var(--primary)) var(--x, 0)/200% !important;
    border-radius: 4px !important;
    padding: 13.5px 50px !important;
    font-family: 'Brandon Grotesque' !important;
    font-weight: 400 !important;
    font-size: 16px !important;
    line-height: 23px !important;
    text-transform: uppercase !important;
    color: var(--white) !important;
    transition: .5s !important;
    height: auto !important;
    cursor: pointer !important;
    text-align: center;
    border: unset;
}

.button:hover, #fpd-start-customizing-button:hover {
    --x: 100% !important;
}

.button-white-wrap {
    display: flex;
    width: fit-content;
    border-radius: 4px;
    padding: 1px;
    background: linear-gradient(90deg, var(--primary-gradient-first) 0%, var(--primary-gradient-second) 100%);
}

.button-white {
    background: linear-gradient(90deg, var(--white), var(--white) 50%, var(--primary-gradient-first) 50%, var(--primary-gradient-second)) var(--x, 0)/200%;
    transition: .5s;
    padding: 13.5px 50px;
    font-family: 'Brandon Grotesque';
    font-weight: 500;
    font-size: 16px;
    line-height: 23px;
    text-transform: uppercase;
    color: var(--black);
    border-radius: 4px;
}

.button-white-wrap:hover .button-white {
    color: var(--white);
    --x: 100%;
}



/* BANNER  */

.banner {
    height: calc(100vh - 188px);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 100px;
}

.banner .content {
    background: rgba(255, 255, 255, .9);
    opacity: 0;
    border-radius: 4px;
    padding: 68px;
    animation: 1s ease-in .5s 1 fadeIn forwards;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 754px;
}

.banner .content .title {
    margin-bottom: 20px;
}

.banner .content .subtitle {
    margin-bottom: 30px;
}

.subbaner {
    margin: 30px 0;
}

.subbaner h2 {
    font-size: 24px;
}

.subbaner .wrapper {
    display: flex;
    flex-direction: column;
}

.subbaner .button {
    width: fit-content;
    margin: 10px auto 0 auto;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@media(max-width: 769px) {
    .mobile-view {
        display: block;
    }
    .desktop-view {
        display: none;
    }
    .banner {
        height: auto;
        padding: 85px 0;
        margin-bottom: 30px;
        min-height: 462px;
    }
    .banner .content {
        padding: 30px 20px;
        margin: 0 20px;
        max-width: unset;
        width: 100%;
    }
    .banner .content .title {
        font-size: 30px;
    }
    .banner .content .subtitle {
        margin-bottom: 20px;
    }
    .wrapper,
    .woocommerce-notices-wrapper {
        width: auto;
    }
}

/* .banner-product {
    height: 304px;
    padding-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    background: url('../img/svg/product-banner-bg.svg');
    background-repeat: no-repeat;
    background-position: center -14px;
} */

.banner-product {
    margin-bottom: 0;
    height: 320px;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--white);
  }

  .banner-product .wrapper {
    padding: 0;
    background-repeat: no-repeat;
    background-size: 500px;
    background-position: 50% 15%;
    background-image: url("/wp-content/uploads/2021/11/biehle-bg.svg");
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 40px;
  }

/* .page-template-template-personalise-cards .banner-product,
.page-template-template-personalise-envelope .banner-product {
    padding-bottom: 80px;
} */

.banner-slides {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
}


.banner-slides .slick-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.banner-slides .slick-dots li {
    background: var(--grey-blue);
    height: 6px;
    width: 6px;
    border-radius: 100%;
    transition: .3s;
    cursor: pointer; 
}

.banner-slides .slick-dots li.slick-active {
    background: var(--primary);
}

.banner-slides .slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: none;
}

/* HEADER  */

header {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
    z-index: 9999999;
}
.admin-bar header{
    top: 32px;
    z-index: 99;
}

header .custom-logo, 
header .main-header,
header .icon-list__item {
    transition: .3s;
}

header.header-scroll .custom-logo {
    height: 60px;
    width: 60px;
    object-position: center;
}

header.header-scroll .main-header {
    padding: 10px 0;
}

header.header-scroll .icon-list__item {
    width: 40px;
    height: 40px;
    max-width: 40px;
    flex: 0 0 40px
}

main {
    margin-top: 147px;
}
body.logged-in.development main{
    margin-top: 179px;
}

header .supheader {
    background: linear-gradient(90deg, var(--primary-gradient-first) 0%, var(--primary-gradient-second) 100%);
    padding: 8px 0 9px;
    height: 40px;
}

header .supheader .wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

header .supheader .wrapper div {
    position: absolute;
    top: 8px;
    opacity: 0;
    transition: .3s;
    z-index: -1;
}

header .supheader .wrapper div p,
header .supheader .wrapper div a {
    font-family: 'Brandon Grotesque';
    font-weight: 400;
    font-size: 16px;
    line-height: 23px;
    color: var(--white);
    text-transform: capitalize;
}

header .supheader .wrapper div.active {
    opacity: 1;
    z-index: 99;
}



header .main-header {
    padding: 14px 0;
    border-bottom: 1px solid var(--grey);
}

header .main-header .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .main-header .wrapper .menu-wrap {
    display: flex;
    justify-content: space-between;
    gap: 70px;
}

header .main-header #menu-main {
    display: flex;
    gap: 30px;
    align-items: center;
}

header .main-header #menu-main .submenu-wrap {
    opacity: 0;
    z-index: -1;
    transition: .3s;
    visibility: hidden;
    position: absolute;
    top: 100%;
    padding-top: 44px;
    left: 40px;
    width: max-content;
    cursor: default;
}

header.header-scroll .main-header #menu-main .submenu-wrap {
    padding-top: 18px;
}

header .main-header #menu-main .submenu-wrap .sub-menu {
    padding: 30px;
    background: var(--white);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

header .main-header #menu-main a {
    font-family: 'Brandon Grotesque';
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    text-transform: uppercase;
    color: var(--black);
    transition: .3s;
} 

header .main-header #menu-main a:hover {
    color: var(--primary) !important;
}

header .main-header #menu-main li.menu-item-has-children {
    padding-right: 15px;
    position: relative;
    cursor: pointer;
    height: auto;
}

header .main-header #menu-main li.menu-item-has-children::after {
    content: '';
    width: 11px;
    height: 6px;
    position: absolute;
    right: 0;
    top: calc(50% - 3px);
    background: url('../img/svg/arrow-down.svg');
    background-repeat: no-repeat;
    transition: .3s;
    transform-origin: center;
}

header .main-header #menu-main li.menu-item-has-children:hover>a {
    color: var(--primary);
}

header .main-header #menu-main li.menu-item-has-children:hover:after {
    filter: brightness(0) saturate(100%) invert(68%) sepia(28%) saturate(527%) hue-rotate(356deg) brightness(93%) contrast(93%);
    transform: rotateX(180deg);
}

header .main-header #menu-main li.menu-item-has-children:hover .submenu-wrap {
    opacity: 1;
    z-index: 9999;
    visibility: visible;
}

header .menu-button {
    display: none;
    width: 40px;
    height: 40px;
    border: 1px solid var(--primary);
    border-radius: 4px;
    background-color: transparent;
    background-image: url('../img/svg/toggler_btn.svg');
    cursor: pointer;
    background-repeat: no-repeat;
    background-position: center;
}

header .toggle-close {
    position: absolute;
    top: 50px;
    right: 50px;
    width: 30px;
    height: 30px;
    border: none;
    outline: none !important;
    background-image: url('../img/svg/closeButtonMenu.svg');
    background-size: cover;
    display: none;
    background-repeat: no-repeat;
    background-color: transparent;
    background-position: center;
    cursor: pointer;
}

header .mob-logo {
    display: flex;
    align-items: center;
    gap: 20px;
}

.icon-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0 -4px;
    padding: 0;
    position: relative;
}

.icon-list__item {
    display: inline-block;
    flex: 0 0 60px;
    height: 60px;
    width: 60px;
    max-width: 60px;
    margin: 0 4px;
}

.icon-list__link {
    display: inline-block;
    position: relative;
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
}
.icon-list__link_search {
    background-image: url('../img/svg/search-icon.svg');
}
.icon-list__link_user {
    background-image: url('../img/svg/user-icon.svg');
}
.icon-list__link_basket {
    background-image: url('../img/svg/basket-icon.svg');
}

.icon-list__count {
    position: absolute;
    left: 50%;
    top: 55%;
    transform: translate(-50%, -50%);
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 14px;
    color: var(--black);
}

.form-wrap input[type="submit"] {
	position: absolute;
	right: 0;
	height: 55px;
	top: 0;
}
.form-wrap {
	position: absolute;
	top:70px;
    z-index: 99;
	width: 250px;
    right:15%;
	background: #fff;
    display: none;
    padding: 1rem;
    box-shadow: 1px 2px 4px 1px #ccc;
    border-radius: 4px;
}
.form-wrap.show_form {
	display: block;
}
.form-wrap input[type="text"] {
	padding-right: 5px; color:#132038; background:transparent;
}

.srch_box_mob {
    margin: 0px auto 0px;
    padding: 0 0px;
    max-width: 400px;
    position: relative;
}

.srch_box_mob img {
    width: 17px;
    position: absolute;
    display: block;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    left: 14px;
}

.srch_box_mob input[type="text"] {
    color: var(--black);
    font-size: 18px;
    padding-left: 40px;
    border: 1px solid var(--primary);
    height: 50px;
}

/* FOOTER  */

footer {
    margin-top: 100px;
}


footer.cmn_gap {
    background-color: var(--black);
    padding-top: 30px;
    margin-bottom: 0;
}
.footer__text {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 25px;
    color: #828793;
    margin-bottom: 0;

}
.ftr_logo img {
    width: 82px;
    margin-bottom: 20px;
}

.sslicn ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 20px;

}

.sslicn ul li:last-child a {
    margin-right: 0 !important;
}

.sslicn ul li a {
    display: flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    border-radius: 4px;
    background: var(--blue);
    color: var(--primary);
    margin-right: 15px;
    transition: .3s;
}

.sslicn ul li a:hover {
    background: var(--dark-grey2);
}

.ftr_link ul li a {
    font-family: 'Brandon Grotesque';
    font-size: 18px;
    font-weight: 300;
    line-height: 25px;
    color: #ffffff;
}

.ftr_link ul li {
    display: block;
    margin-bottom: 13px;
}

.ftr_link ul li:last-child {
    margin-bottom: 0;
}

.ftr_tp h4 {
    font-family: 'Brandon Grotesque';
    font-weight: 700;
    font-size: 24px;
    line-height: 34px;
    font-weight: normal;
    color: #828793;
    margin-bottom: 20px;
    text-align: left;
}

.ftr_up {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 40px;
}

.ftr_up > *:nth-child(3),
.ftr_up > *:nth-child(4),
.ftr_up > *:last-child {
    display: flex;
    justify-content: flex-end;
}

.ftr_up .frst_clm {
    padding-right: 0;
}

.ftr_up .clm_3 {
    /*padding-left: 4%;*/
}

.ftr_link ul li a:hover {
    color: #c7b56f;
}

.ftr_up > *:nth-child(3), .ftr_up > *:nth-child(4), .ftr_up > *:last-child {
    display: flex;
    justify-content: flex-end;
}

.sltt_hdr .ftr_tp {
    width: min-content;
}

footer .row {
    display: flex;
    gap: 30px;
}

footer .row .col-lg-3 {
    width: 25%;
}

footer .row .col-lg-2 {
    width: 16%;
}

.ftr_tp h4 {
    font-family: 'Brandon Grotesque';
    font-weight: 700;
    font-size: 24px;
    line-height: 34px;
    color: #828793;
    margin-bottom: 20px;
}

.currency-btn-group .btn:not(:last-child) {
    margin-bottom: 12px;
}

.btn_currency.btn_active, .btn_currency:hover {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn_currency {
    width: 89px;
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 12px;
    border: 1px solid var(--primary);
    background: transparent;
    color: #ffffff;
    padding: 10px;
    margin: 0;
    transition: all 0.5s;
    outline: none !important;
    cursor: pointer;
}

.btn_currency.btn_active .currency-symbol, .btn_currency:hover .currency-symbol {
    background: none;
    background-clip: text;
    -webkit-text-fill-color: #fff;
    color: #fff;
}

.currency-symbol {
    display: inline;
    font-size: 14px;
} 

#alg_currency_selector {
    display: none;
}

.footer-allwidth {
    background: var(--blue);
}

.news_ltr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

footer .news_ltr-left {
    white-space: nowrap;
}

.mobile_frm {
    display: none;
}

footer .subscribe {
    display: inline-block;
    height: 50px;
    font-family: 'Brandon Grotesque';
    font-size: 16px;
    font-weight: 300;
    line-height: 23px;
    border: 1px solid var(--primary) !important;
    border-radius: 0 4px 4px 0;
    background: var(--black);
    color: var(--primary) !important;
    padding: 12.5px 30px;
    outline: none;
    text-transform: uppercase;
    cursor: pointer;
    transition: .3s;
    margin-left: 20px;
    white-space: nowrap;
}

footer .subscribe:hover {
    background: var(--primary) !important;
    color: var(--white) !important;
    border-color: var(--white) !important;
}

.news_ltr h3 {
    font-family: 'Brandon Grotesque';
    font-size: 30px;
    font-weight: 300;
    line-height: 42px;
    text-align: left;
    color: #fff;
    margin-bottom: 7px;
}

.ftr_btm {
    padding: 14px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.defalt_link ul li a, .ftr_btm p, .ftr_btm p a {
    font-family: 'Brandon Grotesque';
    font-size: 16px;
    font-weight: 300;
    line-height: 22px;
    color: #fff;
}

.defalt_link ul {
    display: flex;
    align-items: center;
}

.defalt_link ul li {
    line-height: 1;
    padding: 0px 8px;
    border-right: 1px solid #fff;
}
.defalt_link ul li:last-child {
    border: none;
}

.defalt_link ul li a:hover, .ftr_btm p a:hover {
    color: var(--primary);
}

.mob-view {
    display: none;
}

.row-block .wrapper .rows {
    display: flex;
    flex-direction: column;
    gap: 70px;
}

.row-block .row {
    display: flex;
    align-items: center;
    gap: 40px;
}

.row-block .col {
    width: calc(50% - 20px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: fit-content;
}

.row-block .row:nth-child(2n) {
    flex-direction: row-reverse;
}

.row-block .col:not(.borderline-top) img {
    object-fit: contain;
    height: auto;
    width: 100%;
}

.row-block .title  {
    text-align: left;
    margin-bottom: 10px;
    color: var(--primary);
}

.row-block .text {
    font-family: 'Roboto';
    font-weight: 300;
    font-size: 18px;
    line-height: 170%;
    margin-bottom: 20px;
    text-align: left;
}

.custom-logo-link {
    display: flex;
}

.shop-slider-section .slides {
    max-height: 356px;
    transition: .5s;
}

.tax-designers .shop-slider-section .slides {
    max-height: 392px;
}

.page-template-template-shop-collection .shop-slider-section .slides {
    max-height: 430px;
}

.shop-slider-section .wrapper {
    padding: 0 80px;
}

.shop-slider-section:not(:last-child) {
    margin-bottom: 30px;
}

.shop-slider-section .title {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    margin-bottom: 16px;
    gap: 15px;
}

.shop-slider-section .title .scarf-size {
    width: 100%;
    margin-top: -10px;
    font-size: 14px;
    color: var(--grey-blue);
    display: block;
}

.shop-slider-section .title .title-text {
    font-family: 'Brandon Grotesque';
    font-weight: 400;
    font-size: 30px;
    line-height: 1.4;
    text-decoration-line: underline;
    color: var(--primary);
}

.shop-slider-section .unslick {
    max-height: unset;
}

div.slick-arrow {
    position: absolute;
    top: 154px;
    min-width: 40px;
    height: 40px;
    padding: 1px;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--primary-gradient-first) 0%, var(--primary-gradient-second) 100%);
    cursor: pointer;
    z-index: 9999;
}


div.slick-arrow.slick-prev {
    left: -70px;
}

div.slick-arrow.slick-next {
    right: -70px;
}

div.slick-arrow .arrow-wrap {
    border-radius: 4px; 
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    transition: .3s;
}

div.slick-arrow .arrow-wrap:hover {
    background: transparent;
}

.shop-slider-section .product img {
    width: 100%;
    height: 100%;
}

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

.shop-slider-section .slides .product {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 15px;
}

.shop-slider-section .product .thumbnail {
    margin-bottom: 10px;
    width: 100%;
    position: relative;
}

.shop-slider-section .product .thumbnail:hover .inner-hover, 
.shop-slider-section .product .thumbnail:hover .hover-image  {
    opacity: 1;
}

.page-template-template-shop-collection .shop-slider-section .product .thumbnail:hover .hover-desc {
    display: none;
}

.shop-slider-section .product .thumbnail:hover .hover-desc {
    height: 70px;
}

.shop-slider-section .product .thumbnail .inner-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: .3s ease-in-out;
    border: 2px solid var(--primary);
}

.shop-slider-section .product .thumbnail .hover-image {
    opacity: 0;
    transition: .4s ease-in;
}

.shop-slider-section .product .thumbnail .hover-desc {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 0px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .5s ease;
    background: linear-gradient(180deg, var(--primary-gradient-first) 0%, var(--primary-gradient-second) 100%);
}

.shop-slider-section .product .thumbnail .hover-desc h6 {
    font-family: 'Brandon Grotesque';
    font-size: 16px;
    font-weight: 300;
    line-height: 33px;
    text-transform: uppercase;
    color: var(--white);
}

.shop-slider-section .slick-track {
    margin-left: 0;
}

.shop-slider-section .product a {
    font-family: 'Brandon Grotesque';
    font-weight: 400;
    font-size: 24px;
    line-height: 140%;
    text-align: center;
    color: var(--black);
    margin-bottom: 3px;
}

.shop-slider-section .product .size {
    font-family: 'Roboto';
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: var(--grey-blue);
    margin-bottom: 3px;
    text-align: center;
}

.shop-slider-section .product .price {
    font-family: 'Brandon Grotesque';
    font-weight: 500;
    font-size: 24px;
    line-height: 140%;
    color: var(--primary);
}

.shop-slider-section .open-category {
    margin: 30px auto 0 auto;
    cursor: pointer;
}
/* https://jira.kalyna.dev/projects/PB/issues/PB-90 */
.shop-slider-section .open-category.hidden {
   display: none;
}

.shop-slider-section .unslick {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-height: unset !important;
}

.shop-slider-section .unslick .product {
    margin: 0;
}

.faq .filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.faq .filters input {
    display: none;
}

.faq .filters label {
    height: 50px;
    padding: 0 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Brandon Grotesque';
    font-size: 16px !important;
    line-height: 120% !important;
    border: 1px solid var(--grey);
    transition: .2s;
    margin: 0 !important;
    cursor: pointer;
}
.faq .filters label span.filter{
    color: inherit !important;
}

.faq .response {
    position: relative;
}

.faq .response .loader {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    background: rgba(255, 242, 1, .4);
}

.faq .response .loader.active {
    display: flex;
}

.faq .response .loader img {
    width: 60px;
}

.cta-faq {
    margin-top: 50px;
    position: relative;
    z-index: 9999;
}

.cta-faq a {
    color: var(--primary);
    text-decoration: underline;
}

.faq .filters label:has(input:checked) {
    border-radius: 4px;
    background: var(--primary);
    color: var(--white) !important;
}

.faq-wrap {
    display: flex; 
    flex-direction: column;
    gap: 15px;
}

.faq-wrap .faq-title {
    font-family: 'Brandon Grotesque';
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: var(--black);
    padding: 15px 45px 15px 24px;
    background: var(--grey-faq);
    border-radius: 4px;
    position: relative;
    cursor: pointer;
    transition: .3s;
    user-select: none;
}

.faq-wrap .faq-title.active,
.faq-wrap .faq-title:hover {
    background: var(--grey-blue);
}

.faq-wrap .faq-title::before {
    content: '';
    width: 2px;
    height: calc(100% - 30px);
    position: absolute;
    left: 0;
    top: 15px;
    background: var(--black);
    border-radius: 0px 2px 2px 0px;
}

.faq-wrap .faq-title::after {
    content: '';
    display: inline-block;
    width: 34px;
    height: 34px;
    background: var(--white);
    background-position: center;
    background-repeat: no-repeat;
    background-image: url('../img/svg/arrow-down.svg');
    border-radius: 4px;
    position: absolute;
    right: 9px;
    top: calc(50% - 17px);
}

.faq-wrap .faq-content {
    font-family: "Roboto";
    font-size: 16px;
    font-weight: 300;
    line-height: 20px;
    color: var(--black);
    padding: 0 15px;
    transition: .3s;
    max-height: 0;
    opacity: 0;
    transition: .3s;
    user-select: none;
    white-space: pre-line;
}

.faq-wrap .faq-content.active {
    max-height: 600px;
    padding: 15px;
    opacity: 1;
}

.faq-cta {
    position: relative;
    z-index: 9;
}

.how_it_works .title {
    color: var(--primary);
}

.how_it_works .cards {
    margin: 86px 20px 0 20px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 34px;
}

.how_it_works .card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.how_it_works .card .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 150px;
    border: 2px solid var(--primary);
    margin-bottom: 37px;
}

.how_it_works .card .icon img {
    transition: .3s;
}

.how_it_works .card .icon:hover img {
    transform: scale(1.2);
}

.how_it_works .card .step {
    margin-bottom: 15px;
    color: var(--black);
}

.how_it_works .card .title {
    color: var(--black);
}

.sliders-title {
    /* max-width: 334px; */
    text-align: center;
    margin: 70px auto;
}

label {
    font-family: 'Roboto';
    font-weight: 500 !important;
    font-size: 12px !important;
    line-height: 140% !important;
    color: var(--black) !important;
    margin: 0 0 12px 30px !important;
}

label span {
    color: var(--red) !important;
}

input:not([type="radio"]):not([type="checkbox"]), textarea, select {
    background: var(--grey-input2);
    border: 1px solid var(--grey-border);
    border-radius: 4px;
    height: 40px;
    font-family: 'Roboto' !important;
    font-weight: 400;
    font-size: 14px !important;
    line-height: 140%;
    color: var(--black);
    margin: 0 !important;
    padding: 10px 30px !important;
}

legend {
    font-family: 'Roboto';
    font-weight: 500;
    font-size: 14px;
    line-height: 140%;
    color: var(--black);
    margin-bottom: 12px; 
}

body .gform_legacy_markup_wrapper .top_label div.ginput_container {
    margin: 0 !important;
}

.git {
    margin-top: 70px;
}

.git h2.title {
    margin-bottom: 20px;
}

.git .cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 40px;
}

.git .cards .card {
    background: var(--grey);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.git .cards .card .icon {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin: -55px auto 20px;
}

.git .cards .card .title {
    margin-bottom: 20px;
}

.git .cards .card .button {
    margin: 0 20px 40px 20px;
}

.git .cards .card ul {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin: 0 20px 40px 20px;
}

.git .cards .card ul li a {
    display: flex;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    border-radius: 4px;
    background: var(--grey-faq);
    color: var(--primary);
    margin-right: 15px;
    transition: .3s;
}

.git .cards .card ul li a:hover {
    background: var(--grey-input);
}

.table-wrap {
    width: 100%;
    overflow-x: auto;
}

table {
    border-radius: 4px;
    border: 1px solid var(--grey-input2);
    border-collapse: separate;
    border-spacing: 2px;
    width: 100%;
}

table tr:first-child th:first-child {
    border-radius: 4px 0 0 0;
}

table tr th,
table tr td {
    border: 1px solid var(--grey-input2);
    padding: 13px 20px;
    color: black;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 120%;
    font-weight: 400;
    text-align: center;
}

table tr th,
table tr td:first-child {
    background: #E5E2DA;
}

table tr th strong,
table tr td:first-child strong {
    font-weight: 700;
}

.gallery .wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.gallery .gallery_img {
    position: relative;
}

.gallery .gallery_img:first-child {
    grid-column: 1 / span 2;
}

.gallery .gallery_img:after {
    content: '';
    position: absolute;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    top: 20px;
    left: 20px;
    border: 3px solid #FFFFFF;
    box-sizing: border-box;
    border-radius: 4px;
    transition: .3s;
}

.gallery .gallery_img:hover:after {
    transform: scale(1.2);
}

.gallery .gallery_img img {
    width: 100%;
    object-fit: cover;
}

.slick-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.slick-dots li {
    height: 12px;
    width: 12px;
    border-radius: 100%;
    background: var(--grey-input);
    transition: .3s;
    cursor: pointer;
}

.slick-dots li button {
    display: none;
}

.slick-dots li.slick-active {
    background: var(--blue);
}

.gform_legacy_markup_wrapper .ginput_container span:not(.ginput_price) {
    display: inline !important;
}

.overlay {
    padding: 20px;
}

.overlay .wrapper {
    padding: 30px 20px;
    border-radius: 4px;
    background: var(--white, #FFF);
}

.overlay .wrapper h2 {
    margin-bottom: 20px;
    color: var(--black, #051028);
    font-weight: 400;
}

@media(max-width: 1024px) {
    .mob-view {
        display: block;
    }
    header .menu-button {
        display: inline-block;
    }
    header .main-header .wrapper .menu-wrap {
        position: absolute;
        top: 0;
        left: -100vw;
        width: 100vw;
        height: 100vh;
        background: #fff;
        z-index: 9999;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: .3s;
        gap: 30px;
    }
    header .main-header #menu-main a {
        font-size: 20px;
    }
    header .main-header .wrapper .menu-wrap.active {
        left: 0;
    }
    header .main-header #menu-main {
        align-items: center;
        flex-direction: column;
        width: fit-content;
    }
    header .toggle-close {
        display: block;
    } 
    header .main-header #menu-main .submenu-wrap {
        position: static;
        visibility: visible;
        padding-top: 0;
        width: auto;
        padding-top: 30px;
        opacity: 1;
    }
    header .main-header #menu-main li.menu-item-has-children {
        display: flex;
        align-items: center;
        flex-direction: column;
        padding: 0;
    }
    header .main-header #menu-main .submenu-wrap .sub-menu {
        padding: 0;
        gap: 30px;
        align-items: center;
    }
    header .main-header #menu-main li.menu-item-has-children::after {
        display: none;
    }
    header .main-header #menu-main li.menu-item-has-children:hover>a {
        color: var(--black);
    }
    .icon-list {
        justify-content: center;
        gap: 8px;
    }
    .icon-list__item {
        margin: 0;
        height: 40px;
        max-width: 40px;
        width: 40px;
        transition: .3s;
    }
    main {
        margin-top: 107px;
    }
    body.logged-in.development main{
        margin-top: 139px;
    }
    header .main-header {
        padding: 10px 0;
    }
    .mob-logo .custom-logo-link img {
        width: 46px;
        height: 46px;
    }
    header .currency-btn-group {
        margin-bottom: 18px;
    }
    header .btn_currency:not(.btn_active), header .btn_currency:not(.btn_active) span {
        color: var(--black);
        transition: .3s;
    }
    header .btn_currency:hover, header .btn_currency:hover span {
        color: var(--white);
    }
    
    .header-socials {
        display: flex;
        justify-content: center;
    }
    .header-socials li a {
        font-size: 20px;
        margin: 0 10px;
        display: flex;
        width: 40px;
        height: 40px;
        align-items: center;
        justify-content: center;
        border-radius: 4px;
        background: var(--blue);
        color: var(--primary);
    }
    .header-socials li a:hover {
        color: #fff;
    }
    footer .row {
        display: flex;
        flex-wrap: wrap;
    }
    footer .row>div {
        width: 30% !important;
        justify-content: flex-start !important;
    }
    footer .row>div:nth-child(4) {
        width: 60% !important;
    }
    .wrapper {
        max-width: 720px;
    }
    .ftr_tp p, .ftr_link ul li a, .news_ltr p {
        font-size: 13px;
    }
    .ftr_tp h4 {
        font-size: 17px;
        margin-bottom: 20px;
        text-align: left;
    }
    .news_ltr h3 {
        font-size: 20px;
        text-align: center;
        margin-bottom: 7px;
    }
    .defalt_link ul li {
        padding: 0px 5px;
    }
    .defalt_link ul li a, .ftr_btm p, .ftr_btm p a {
        font-size: 13px;
    }
    .how_it_works .cards {
        grid-template-columns: repeat(3, 1fr);
    }
    div.slick-arrow {
        top: 100px;
    }
    .git .cards .card .image img {
        height: 140px;
        object-fit: cover;
    }
    .git .cards .card .button {
        padding: 13.5px 0;
        width: calc(100% - 40px);
        text-align: center;
    }
    .git .cards .card .icon {
        height: 80px;
        width: 80px;
        margin-top: -40px;
    }
    .git .cards .card .icon img {
        width: 40px;
        height: 40px;
    }
}

@media(max-width: 769px) {
    .banner-product{
        padding: 47px 20px;
    }
    .banner-product .wrapper{
        background-size: contain;
        background-position: center center;
    }
    .shop-slider-section .product .price {
        font-size: 14px;
    }
    h1 {
        font-size: 36px;
    }
    
    h2 {
        font-size: 24px;
    }
    
    h3 {
        font-size: 20px;
    }
    
    h4 {
        font-size: 14px;
        line-height: 140%;
    }
    
    h5 {
        font-size: 14px;
        line-height: 140%;
    }
    
    p {
        font-size: 14px;
        line-height: 140%;
    }
    .underline {
        padding-bottom: 10px;
        margin-bottom: 10px;
    }
    .git {
        margin-top: 30px;
    }
    .faq .wrapper {
        padding: 0;
    }
    .faq .wrapper .filters {
        padding: 0 20px;
    }
    .faq-wrap {
        gap: 10px;
    }
    .faq-wrap .faq-title {
        padding: 12px 50px 12px 20px;
        font-size: 14px;
    }
    .faq-wrap .faq-title::after {
        width: 30px;
        height: 30px;
        top: calc(50% - 15px);
    }
    .faq-wrap .faq-content {
        font-size: 14px;
        padding: 0px 20px;
        white-space: normal;
    }
    .faq-wrap .faq-content.active {
        padding: 10px 20px;
    }
    .wrapper,
    .woocommerce-notices-wrapper {
        max-width: 540px;
    }
    .ftr_up > *:first-child {
        order: 1;
        width: 100% !important;
    }
    footer .row>div {
        width: calc(50% - 10px) !important;
    }
    footer .row>div:nth-child(4) {
        width: calc(50% - 10px) !important;
    }
    .ftr_tp h4 {
        line-height: 1;
    }
    .ftr_tp h4 {
        font-size: 19px;
    }
    .ftr_tp h4 {
        text-align: left;
        margin-bottom: 10px;
    }
    .ftr_tp p, .ftr_link ul li a, .news_ltr p {
        font-size: 14px;
        text-align: center;
    }
    .btn_currency {
        font-size: 16px;
        line-height: 20px;
    }
    .ftr_logo {
        text-align: center;
    }
    .sslicn ul {
        justify-content: center;
    }
    .news_ltr {
        display: flex;
        flex-direction: column;
        margin: 10px auto 25px auto;
    }
    .news_ltr-left {
        margin-bottom: 15px;
    }
    .news_ltr h3 {
        font-size: 20px;
        text-align: center;
        margin-bottom: 7px;
        white-space: break-spaces;
    }
    .ftr_btm {
        display: flex;
        flex-direction: column;
    }
    .ftr_select {
        order: 2;
    }
    .defalt_link {
        order: 1;
    }
    .defalt_link ul li a, .ftr_btm p, .ftr_btm p a {
        font-size: 13px;
    }
    footer .row {
        gap: 20px;
    }
    .row-block .row img {
        height: auto;
    }
    .row-block .row {
        gap: 20px
    }
    .row-block .row,
    .row-block .row:nth-child(2n) {
        display: flex;
        flex-direction: column;
    }
    .row-block .text {
        font-size: 16px;
        margin-bottom: 0;
    }
    .row-block .col { 
        width: 100%;
        align-items: center;
    }
    .row-block .wrapper {
        gap: 20px;
    }
    .row-block .text {
        text-align: center;
    }
    .row-block .title {
        text-align: center;
        font-size: 20px;
    }
    .borderline-bottom {
        padding-bottom: 0;
    }
    .borderline-bottom::after {
        display: none;
    }
    .custom-logo-link img {
        width: 48px;
        height: 46px;
    }
    .shop-slider-section .open-category {
        margin: 10px auto 0 auto;
    }
    div.slick-arrow.slick-next {
        right: -50px;
    }
    div.slick-arrow.slick-prev {
        left: -50px;
    }
    .shop-slider-section .wrapper {
        padding: 0 20px;
    }
    .shop-slider-section .slides {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-height: unset !important;
    }
    .examples.shop-slider-section .slides {
        display: block;
    }
    .shop-slider-section .slides .product {
        margin: 0;
        justify-content: flex-start;
    }
    .shop-slider-section .slides .product:nth-child(n+5) {
        display: none;
    }
    .shop-slider-section .slides.unslick .product {
        display: flex !important;
    }
    .shop-slider-section .product .thumbnail .hover-desc h6 {
        line-height: 1.2;
    }
    div.slick-arrow {
        top: 230px;
    }
    footer {
        margin-top: 30px;
    }
    .row-block .button {
        margin-top: 15px;
    }
    .borderline-top {
        padding-top: 15px;
    }
    .how_it_works .cards {
        margin: 30px 0 0 0;
        gap: 20px;
        grid-template-columns: repeat(2, 1fr);
    }
    .how_it_works .card .icon {
        margin-bottom: 15px;
    }
    .how_it_works .card .step {
        font-size: 20px;
    }
    .how_it_works .card .title {
        line-height: 140%;
        font-size: 14px;
    }
    .git .cards {
        grid-template-columns: repeat(1, 1fr) !important;
        gap: 20px;
    }
    .git .cards .card .image {
        width: 100%;
    }
    .git .cards .card .image img {
        width: 100%;
    }
    .git .cards .card .button {
        margin-bottom: 20px;
    }
    .gallery .wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
    .gallery .gallery_img:first-child {
        grid-column: auto;
    }
    .gallery .gallery_img:nth-child(n+2) {
        display: none;
    }
    .gallery .gallery_img:after {
        width: calc(100% - 20px);
        height: calc(100% - 20px);
        top: 10px;
        left: 10px;
    }
    .row-block .wrapper .rows {
        gap: 30px;
    }
    header .main-header #menu-main li.menu-item-has-children>a {
        display: none;
    }
    .faq .filters {
        margin-bottom: 20px;
    }
    .faq .filters label {
        padding: 0 20px;
        height: 40px;
        font-size: 14px !important;
    }
    .cta-faq {
        margin-top: 20px;
    }
    
    /* .tax-designers .shop-slider-section .slides {
        max-height: 503px;
    } */
    .sliders-title {
        color: var(--primary);
    }
    .faq-cta  {
        font-size: 24px;
    }
}

@media(max-width: 480px) {
    .shop-slider-section .title .title-text {
        font-size: 24px;
    }
    .git .cards .card .icon {
        width: 50px;
        height: 50px;
        margin-top: -25px;
        margin-bottom: 10px;
    }
    .git .cards .card ul {
        margin: 0 20px 20px 20px;
        gap: 20px;
    }
    .git .cards .card .icon img {
        width: 25px;
        height: 25px;
    }
    .git .cards .card .title {
        margin-bottom: 10px;
    }
    .git .cards .card ul li a {
        margin: 0;
        width: 40px;
        height: 40px;
    }
    .shop-slider-section .title .scarf-size  {
        margin-top: unset;
    }
    .shop-slider-section .slides {
        max-height: unset;
    }
    
    .tax-designers .shop-slider-section .slides {
        max-height: unset;
    }
    .examples.shop-slider-section .slides {
        margin: 0 10px;
    }
    .examples.shop-slider-section .slides .slick-list {
        margin-right: 60px;
        overflow: visible;
    }
    .examples.shop-slider-section .slides .slick-list .product {
        margin-right: 20px;
    }
    .examples.shop-slider-section .slides .product:nth-child(n+5) {
        display: flex;
    }
    header .main-header #menu-main a {
        font-size: 16px;
    }
    header .main-header .wrapper .menu-wrap {
        gap: 20px;
    }
    header .currency-btn-group {
        margin-bottom: 2px;
    }
    header .main-header #menu-main {
        gap: 20px;
    }
    header .main-header #menu-main .submenu-wrap {
        padding-top: 20px;
    }
    header .supheader .wrapper div p, header .supheader .wrapper div a {
        font-size: 14px;
    }
    header .main-header #menu-main .submenu-wrap .sub-menu {
        gap: 20px;
    }
    .news_ltr h3 {
        font-size: 24px;
        line-height: 140%;
    }
    .news_ltr {
        margin: 20px auto 0 auto;
    }
    .defalt_link ul {
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin-bottom: 15px;
    }
    .defalt_link ul li {
        border-bottom: 2px solid var(--blue);
        border-right: none;
        width: 200px;
        text-align: center;
        padding: 15px;
    }
    .ftr_btm {
        padding: 5px 0 20px 0;
    }
    .shop-slider-section .title a {
        font-size: 22px;
        line-height: 22px;
    }
    div.slick-arrow {
        top: 130px;
    }
    .shop-slider-section:not(:last-child) {
        margin-bottom: 20px;
    }
    .shop-slider-section .title {
        display: block;
        margin-bottom: 10px;
    }
    .shop-slider-section .title p {
        display: inline;
    }
    .shop-slider-section .product a {
        font-size: 18px;
    }
    .button-white {
        padding: 12px 30px;
    }
    .how_it_works .cards {
        display: block;
        margin-top: 30px;
    }
    .how_it_works .slick-list {
        margin-right: 30px;
        overflow: visible;
    }
    .how_it_works .slick-list .card {
        margin-right: 15px;
    }
    .how_it_works .slick-list .card .icon {
        display: none;
    }
    .how_it_works .card .step {
        color: var(--primary);
        padding-bottom: 7px;
        margin-bottom: 5px;
    }
    table tr th, table tr td {
        padding: 10px;
    }
    .button, #fpd-start-customizing-button {
        padding: 13.5px 30px !important;
    }
    .sliders-title {
        margin-top: 30px;
    }
}

@media(max-width: 380px) {
    div.slick-arrow {
        top: 90px;
    }
}
.breadcrumbs{
    background: var(--grey);
    text-align: center;
    padding: 14px;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: var(--black);

}
.breadcrumbs a, .breadcrumbs a:visited {
    color: var(--black);

}
.breadcrumbs span:nth-last-child(-n + 2){
    color: var(--primary);
}
