:root {
    --black: #2B2B2D;
    --white: #fff;
    --grey: #D9D9D9;
    --green: #027B39;
    --green-dark: #015726;
    --green-light: #00a14b;
    --red: #bb0f0f;
}

/* Reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1.5;
	font-family: 'Switzer', sans-serif;
    background: var(--black);
}
ol, ul { 
	list-style: none;
}
blockquote, q { 
	quotes: none; 
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
.layouts-title {
	font-size: 26px;
	margin:15px 0;
}
.layouts ul li {
	margin-bottom:5px;
}
.layouts ul li a {
	font-size: 17px;
	display: inline-block;
	padding:3px 10px;
}
.layouts ul li a:hover {
	background:#000;
	color:#fff;
}
/* -- END RESET -- */

.column:last-child:not(:first-child), .columns:last-child:not(:first-child) {
    float: left;
}
.nopad {
	padding:0;
}
.nopadleft {
	padding-left:0;
}
.nopadright {
	padding-right:0;
}
strong, b {
	font-weight: bold;
}
i {
	font-style: italic;
}
em {
	font-style: italic;
}
.clear {
	clear:both;
}
.left {
	float:left;
	margin-right:15px;
	margin-bottom:15px;
}
.right {
	float:right;
	margin-left:15px;
	margin-bottom:15px;
}
.alignleft {
	float:left;
	margin-right:15px;
	margin-bottom:15px;
}
.alignright {
	float:right;
	margin-left:15px;
	margin-bottom:15px;
}
.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}
a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto
}
.wp-caption {
	max-width: 100%;
    margin-bottom: 15px;
}
.invi {
	visibility: hidden;
	opacity: 0;
}
.object-fit {
	position: relative;
}
.object-fit > img {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
   object-fit: cover;
}
.object-fit.object-contain > img {
    -o-object-fit: contain;
    object-fit: contain;
}
.object-fit > video {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    object-fit: cover;
}

.fancybox__content :focus:not(.carousel__button.is-close) {
    outline: none;
}

/* preloader */
.preloader {
    display: inline-block;
	width: 25px;
	height: 25px;
	border: 3px solid hsla(0,0%,100%,.3);
    border-top-color: rgba(255, 255, 255, 0.3);
    border-right-color: rgba(255, 255, 255, 0.3);
    border-bottom-color: rgba(255, 255, 255, 0.3);
    border-left-color: rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	border-top-color: #ccc !important;
	-webkit-animation: a 1s ease-in-out infinite;
	animation: a 1s ease-in-out infinite;
	z-index: 50;
}
@-webkit-keyframes a {
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}
@keyframes a {
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

/*   hamburger   */
.hamburger {
    font: inherit;
    display: inline-block;
    overflow: visible;
	margin: 0;
	padding: 0;
    cursor: pointer;
    transition-timing-function: linear;
    transition-duration: .15s;
    transition-property: opacity, filter;
    text-transform: none;
    color: inherit;
    border: 0;
    background-color: transparent;
	float: right;

	display: none;
}
.hamburger:hover {
    opacity: 1;
}
.hamburger-box {
    position: relative;
    display: inline-block;
    width: 12px;
    height: 20px;
    float: right;
}
.hamburger-inner {
    top: 50%;
    display: block;
    margin-top: -2px;
}
.hamburger-inner,
.hamburger-inner:after,
.hamburger-inner:before {
	border-radius: 2px;
    position: absolute;
    width: 12px;
    height: 2px;
    transition-timing-function: ease;
    transition-duration: .15s;
    transition-property: transform;
    background-color: var(--white);
}
.hamburger-inner:after,
.hamburger-inner:before {
    display: block;
    content: "";
}
.hamburger-inner:before {
    top: -4px;
}
.hamburger-inner:after {
    bottom: -4px;
}
.hamburger--squeeze .hamburger-inner {
    transition-timing-function: cubic-bezier(.55, .055, .675, .19);
    transition-duration: 75ms;
}
.hamburger--squeeze .hamburger-inner:before {
    transition: top 75ms ease .12s, opacity 75ms ease;
}
.hamburger--squeeze .hamburger-inner:after {
    transition: bottom 75ms ease .12s, transform 75ms cubic-bezier(.55, .055, .675, .19);
}
.hamburger--squeeze.is-active .hamburger-inner {
    transition-delay: .12s;
    transition-timing-function: cubic-bezier(.215, .61, .355, 1);
    transform: rotate(45deg);
}
.hamburger--squeeze.is-active .hamburger-inner:before {
    top: 0;
    transition: top 75ms ease, opacity 75ms ease .12s;
    opacity: 0;
}
.hamburger--squeeze.is-active .hamburger-inner:after {
    bottom: 0;
    transition: bottom 75ms ease, transform 75ms cubic-bezier(.215, .61, .355, 1) .12s;
    transform: rotate(-90deg);
}

.tabs {
    margin: 0;
    border: none;
    background: transparent;
}
.tabs-content {
    border: none;
    background: transparent;
    color: inherit;
}
.tabs-panel {
    padding: 0;
}

.accordion {
    background: none;
}
.accordion-title {
    border: none;
}
.accordion-title:hover {
    background: none;
}
.accordion-content {
    padding: 0;
    border: none;
    background: none;
    color: inherit;
}
:last-child > .accordion-content:last-child {
    border: none;
}

.prev-scroll {
    overflow: hidden;
    height: 100%;
    position: relative;
}

.grid-container {
    width: 100%;
    max-width: 1140px;
    padding: 0 15px;
}
.grid-container.grid-container-lg {
    max-width: 1440px;
}

.dflex,
.dflex-ul > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.dflex-wrap,
.dflex-ul-wrap > ul {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.dflex-aic,
.dflex-ul-aic > ul {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

main {
    position: relative;
    overflow: hidden;

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    -ms-flex-wrap: wrap;
    flex-wrap: wrap;

    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1; 
}
main section {
    width: 100%;
}
.main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;

    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;

    min-height: 100vh;
}
.main-bg {
    position: fixed;
    top: 0; right: 0; bottom: 0; left: 0;
    background: url(../img/bg.jpg) no-repeat center center / cover;
    z-index: -1;
    pointer-events: none;
}
/* .main-bg::after {
    content: '';
    width: 100%; height: 100%;
    background: url(../img/bg-grad.png) no-repeat top left / cover;
    position: absolute;
    top: 0; left: 0;
} */

.btn-green,
.btn-green:focus,
.btn-green:active {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: 0.2s ease-in-out;
    min-height: 42px;
    border-radius: 23px;
    color: var(--white);
    background: var(--green);
    padding: 5px 20px;
    font-size: 16px;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
    min-width: 120px;
}
.btn-green img {
    max-height: 24px;
}
.btn-green:hover {
    color: var(--white);
    background: var(--green-dark);
}

header {
    padding: 24px 0;
    background: var(--black);
    z-index: 10;
    position: relative;
}
header .grid-container {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;

    gap: 24px;
}
.header-logo a {
    line-height: 0;
}
.header-logo img {
    height: 27px;
}
.header-right {
    gap: 24px;
}
.header-nav > ul {
    gap: 64px;
}
.header-nav > ul > li {
    font-size: 14px;
    line-height: auto;
    text-transform: uppercase;
    position: relative;
}
.header-nav > ul > li > span,
.header-nav > ul > li > a {
    cursor: pointer;
    color: var(--white);
    transition: 0.2s ease-in-out;
}
.header-nav > ul > li > span:hover,
.header-nav > ul > li > a:hover {
    color: var(--white);
    opacity: 0.7;
}
.spec-nav:not(.spec-nav-4) {
    display: none;
}
.spec-nav-4 > span span {
    display: none;
}

.header-subnav {
    position: absolute;
    top: 100%; left: auto; right: 0;
    margin-top: 16px;
    background: var(--white);
    color: var(--black);
    -webkit-box-shadow: 0 12px 40px -12px rgba(0,0,0,.3);
    -moz-box-shadow: 0 12px 40px -12px rgba(0,0,0,.3);
    box-shadow: 0 12px 40px -12px rgba(0,0,0,.3);
    transition: 0.2s ease-in-out;
    opacity: 0;
    visibility: hidden;
}
.has-children-js.is-active .header-subnav {
    opacity: 1;
    visibility: visible;
}
.header-subnav ul {
    margin: 0;
}
.header-subnav ul li {
   position: relative;
}
.header-subnav a,
.header-subnav span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-transform: none;
    font-size: 12px;
    padding: 8px;
    cursor: pointer;
    transition: 0.2s ease-in-out;
    white-space: nowrap;
    position: relative;
    color: var(--black);
}
.header-subnav a:hover {
    color: var(--black);
}
.header-subnav ul li.has-children > span {
    padding-right: 24px;
}
.header-subnav .icon {
    width: 24px;
    text-align: center;
    margin-right: 8px;
}
.header-subnav ul li:hover {
    background: var(--grey);
}
.header-subnav .has-children ul {
    position: absolute;
    top: 0; left: 100%;
    background: var(--white);
    opacity: 0;
    visibility: hidden;
    transition: 0.2s ease-in-out;
    white-space: nowrap;
}
.header-subnav .has-children:hover ul {
    opacity: 1;
    visibility: visible;
}
.header-subnav .has-children .chev {
    position: absolute;
    top: 50%; right: 8px;
    transform: translateY(-50%);
}

.submenus-sidebar {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: 400px;
    -webkit-box-shadow: -10px 0 17px 0 rgba(0,0,0,.2);
    -moz-box-shadow: -10px 0 17px 0 rgba(0,0,0,.2);
    box-shadow: -10px 0 17px 0 rgba(0,0,0,.2);
    background: var(--white);
    padding: 24px 0;
    z-index: 101;
    transform: translateX(110%);
    transition: 0.3s ease-in-out;
}
.submenus-sidebar.is-active {
    transform: translateX(0);
}
.submenus-sidebar-close {
    position: absolute;
    top: 16px; right: 16px;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    color: #7d7d7d;
    padding: 8px;
    transition: 0.2s ease-in-out;
}
.submenus-sidebar-close:hover {
    opacity: 0.7;
}
.submenus-sidebar-box {
    padding: 48px 16px 0;
    overflow: auto;
    height: 100%;
    font-size: 14px;
    line-height: 1.5;
}
.submenus-sidebar-box a {
    color: var(--green-light);
    transition: 0.2s ease-in-out;
}
.submenus-sidebar-box a:hover {
    color: var(--green-dark);
}
.submenus-sidebar-box i {
    color: var(--green-light);
    margin-right: .25rem;
}
.submenus-sidebar-box > div:not(:last-child) {
    margin-bottom: 20px;
}
.submenus-sidebar-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 16px;
    position: relative;
    padding-left: 42px;
}
.submenus-sidebar-title span {
    display: inline-block;
    width: 34px;
    position: absolute;
    top: 50%; left: 0;
    transform: translateY(-50%);
}
.submenus-sidebar-title span img {
    max-height: 22px;
}
.submenus-sidebar-content > :first-child {
    margin-top: 0;
}
.submenus-sidebar-content p {
    margin-top: 16px;
}
.submenus-sidebar-content ul {
    padding-left: 15px;
    list-style: disc;
}
.submenus-sidebar-link {
    margin-top: 16px;
    margin-bottom: 20px;
}
.submenus-sidebar-link a,
.submenus-sidebar-link span {
    font-size: 16px;
    cursor: pointer;
    color: var(--green-light);
    transition: 0.2s ease-in-out;
}
.submenus-sidebar-link a:hover,
.submenus-sidebar-link span:hover {
    color: var(--green-dark);
}
.submenus-sidebar-subtitle {
    font-weight: 600;
    color: var(--green-light);
    margin-bottom: 16px;
}
.submenus-sidebar-production-list {
    margin-bottom: 20px;
}
.submenus-sidebar-production-item:not(:last-child) {
    margin-bottom: 16px;
}
.submenus-sidebar-contact-list {
    margin-bottom: 20px;
}
.submenus-sidebar-contact-item {
    gap: 16px;
}
.submenus-sidebar-contact-item:not(:last-child) {
    margin-bottom: 16px;
}
.submenus-sidebar-contact-item-img {
    width: 77px; height: 77px;
    min-width: 77px; min-height: 77px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #f2f2f2;
}
.submenus-sidebar-contact-item-info a {
    color: var(--green-light);
    transition: 0.2s ease-in-out;
}
.submenus-sidebar-contact-item-info a:hover {
    color: var(--green-dark);
}
.submenus-sidebar-contact-item-name {
    font-weight: 600;
}
.submenus-sidebar-contact-item-textbox {
    line-height: 1.4;
}
.submenus-sidebar-contact-item-textbox > div:not(:last-child) {
    margin-bottom: 10px;
}
.submenus-sidebar-imgs-item:not(:last-child) {
    margin-bottom: 20px;
}
.submenus-sidebar-imgs {
    gap: 16px;
}
.submenus-sidebar-img {
    width: calc(25% - 12px);
    padding-bottom: 21.74%;
}
.submenus-sidebar-imgs-text {
    margin-top: 4px;
}

footer {
    background: var(--black);
    color: var(--white);
    padding: 32px 0;
}
.footer-nav ul {
    gap: 16px;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
.footer-nav ul li a {
    color: var(--white);
    transition: 0.2s ease-in-out;
}
.footer-nav ul li a:hover {
    color: var(--white);
    opacity: 0.7;
}

.main-section {
    padding: 32px 0;

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    -ms-flex-wrap: wrap;
    flex-wrap: wrap;

    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1; 
}
.main-section .grid-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    -ms-flex-wrap: wrap;
    flex-wrap: wrap;

    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1; 

    -ms-flex-line-pack: justify;
    align-content: space-between;

    position: relative;
}
.main-section .grid-container > div {
    width: 100%;
}
.main-section.map-bg .main-section-hold {
    min-height: 636px;
    min-width: 1px;
}
.main-section-hold {
    position: relative;

    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;

    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1; 
}
.main-section-hold > div {
    width: 100%;
}
.section-title {
    margin-bottom: 24px;
    font-size: 40px;
    line-height: 1.2;
    color: var(--white);
}
.map-bg-hold {
    position: absolute;
    width: 100%; height: 100%;
    top: 0; left: 0;
    z-index: -1;
    max-height: 614px;
}
.main-section-btns {
    margin: auto 0 20vh;
}
.main-section-btns ul {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;

    gap: 24px;
}
.main-section-btns ul li {
    width: 100%;
}
.main-section-btns ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;

    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;

    gap: 16px;
    height: 100%;
    background: var(--white);
    color: var(--black);
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    text-transform: uppercase;
    border-radius: 100vmax;
    transition: background-color .5s ease;
}
.main-section-btns ul li a img {
    max-height: 40px;
    max-width: 40px;
}
.main-section-btns ul li a::after {
    content: '';
    width: 10px; height: 16px;
    background: url(../img/chevron-right.png) no-repeat center center / contain;
    display: inline-block;
}
.main-section-btns ul li a:hover {
    background-color: var(--grey);
    color: var(--black);
}
.main-section-items {
    gap: 4px;
    padding: 16px 15px;
}
.main-section-item {
    width: 100%;
    position: relative;
    background-color: rgba(217,217,217,.9);
    padding: 16px 59px 16px 71px;
    font-size: 16px;
    font-weight: 600;
}
.main-section-item::before {
    content: '';
    width: 55px; height: 100%;
    background: var(--white) url(../img/exclamation-mark.svg) no-repeat center center;
    position: absolute;
    top: 0; left: 0;
}
.main-section-item .main-section-item-close {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;

    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;

    width: 43px; height: 100%;
    position: absolute;
    top: 0; right: 0;
    cursor: pointer;
    z-index: 1;
    font-size: 16px;
    font-weight: 400;
    color: var(--red);
}
.main-section-contact {
    margin-top: -42px;
    position: relative;
    z-index: 2;
    display: none !important;
}

body.page-template-tp-wood_in_forest .spec-nav-1 {
    display: block;
}
body.page-template-tp-wood_w_delivery .spec-nav-2 {
    display: block;
}
body.page-template-default:not(.home) .spec-nav-3 {
    display: block;
}

.maps-main-section {
    padding: 32px 0;

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    -ms-flex-wrap: wrap;
    flex-wrap: wrap;

    -ms-flex-line-pack: justify;
    align-content: space-between;
}
.maps-main-section > div {
    width: 100%;
}
.map-svg path:hover {
    fill: #d0f4e0 !important;
}
.map-svg path.is-active {
    fill: var(--green);
}
.map-svg path {
    cursor: pointer;
    fill: #969696;
    opacity: .94;
    transition: 0.2s ease-in-out;
}
.map-svg path.highlighted {
    fill: var(--green);
}

.map-svg {
    min-height: 614px;
}
.map-svg-forest path:not(.highlighted) {
    pointer-events: none;
}
.map-svg-forest.is-active path.highlighted:not(.is-active) {
    fill: #59a677;
}

.map-svg-hover {
    position: fixed;
    -webkit-box-shadow: 0 12px 40px -12px rgba(0,0,0,.3);
    -moz-box-shadow: 0 12px 40px -12px rgba(0,0,0,.3);
    box-shadow: 0 12px 40px -12px rgba(0,0,0,.3);
    background-color: var(--white);
    border-radius: 3px;
    padding: 24px 17px 13px 17px;
    width: 330px;
    z-index: 100;
    font-size: 14px;
    display: none;
}
.map-svg-hover-item {
    display: none;
}
.map-svg-hover-item.is-active {
    display: block;
}
.map-svg-hover-item-title {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 600;
    margin-bottom: 16px;
    position: relative;
    padding-left: 30px;
}
.map-svg-hover-item-title::before {
    content: '';
    width: 22px; height: 24px;
    background: url(../img/location_flag.svg) no-repeat center center / contain;
    position: absolute;
    top: 50%; left: 0;
    transform: translateY(-50%);
}
.map-svg-hover-item-data {
    font-size: 13px;
    padding: 2px 0;
}
.map-svg-hover-item-data-item:not(:last-child) {
    margin-bottom: 4px;
}
.map-svg-hover-item-data .map-svg-hover-item-data-item:nth-child(even) {
    background: #f2f2f2;
}
.map-svg-hover-item-data-item-title {
    font-weight: bolder;
}
.map-svg-hover-item-data-item-price {
    padding: 0 4px;
}
.map-svg-hover-item-data-item.is-new {
    position: relative;
}
.map-svg-hover-item-data-item.is-new::before {
    content: '';
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--green-light);
    position: absolute;
    top: 50%; left: -12px;
    transform: translateY(-50%);
}

.map-svg-sidebars {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: 400px;
    -webkit-box-shadow: -10px 0 17px 0 rgba(0,0,0,.2);
    -moz-box-shadow: -10px 0 17px 0 rgba(0,0,0,.2);
    box-shadow: -10px 0 17px 0 rgba(0,0,0,.2);
    background: var(--white);
    padding: 24px 0;
    z-index: 101;
    transform: translateX(110%);
    transition: 0.3s ease-in-out;
}
.map-svg-sidebars-twoside {
    overflow: auto;
    height: 100%;
}
.map-svg-sidebars-twoside .map-svg-sidebars-item-hold {
    height: auto;
}
.map-svg-sidebars.is-active {
    transform: translateX(0);
}
.map-svg-sidebars .map-svg-sidebars-box-left,
.map-svg-sidebars .map-svg-sidebars-box-right {
    width: 100%;
}
.map-svg-sidebars .map-svg-sidebars-box-right {
    display: none;
    margin-top: 20px;
}
.map-svg-sidebars.form-open .map-svg-sidebars-box-right {
    display: block;
}
.map-svg-sidebars-close {
    position: absolute;
    top: 16px; right: 16px;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    color: #7d7d7d;
    padding: 8px;
    transition: 0.2s ease-in-out;
    z-index: 10;
}
.map-svg-sidebars.form-open .map-svg-sidebars-close  {
    right: 16px;
}
.map-svg-sidebars-close:hover {
    opacity: 0.7;
}
.map-svg-sidebars-box {
    padding: 48px 16px 24px;
    font-size: 14px;
    line-height: 1.5;
}
.map-svg-sidebars .map-svg-hover-item-data-item.is-new::before {
    display: none;
}
.map-svg-sidebars .map-svg-hover-item-data-item.is-new > span {
    display: inline-block;
    position: absolute;
    top: 0; left: 0;
    background: var(--green-light);
    color: var(--white);
    font-size: 8px;
    padding: 0 2px;
    min-width: 52px;
    text-align: center;
}
.map-svg-sidebars .map-svg-hover-item-data-item {
    padding: 15px 4px;
}
.map-svg-sidebars-item-bottom {
    margin-top: 30px;
}

.btn-green-w-arrow.btn-green,
.btn-green-w-arrow.btn-green:focus,
.btn-green-w-arrow.btn-green:active {
    padding-right: 46px;
    position: relative;
}
.btn-green-w-arrow.btn-green:after {
    content: "";
    background: url(../img/icon-arrow-right-white.svg) no-repeat center center / contain;
    height: 16px;
    width: 16px;
    position: absolute;
    top: 50%; right: 20px;
    transform: translateY(-50%);
}
.map-svg-sidebars .map-svg-hover-item-data {
    padding: 0;
}
.map-svg-sidebars-item-hold {
    display: none;
    height: 100%;
}
.map-svg-sidebars-item-hold.is-active {
    display: block;
}
.map-svg-sidebars-form-switch-hold {
    margin: 25px 0 16px;
}
.map-svg-sidebars-form-switch-title {
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 16px;
}
.map-svg-sidebars-form-switch ul {
    gap: 8px;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;

    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.map-svg-sidebars-form-switch ul li {
    border-radius: 100vmax;
    background-color: var(--white);
    color: var(--black);
    border: 1px solid var(--black);
    font-size: 16px;
    cursor: pointer;
    transition: background-color .2s ease;
    padding: 8px 20px;
    min-width: 120px;
    text-align: center;
}
.map-svg-sidebars-form-switch ul li:hover {
    background: var(--grey);
}
.map-svg-sidebars-form-switch ul li.is-active {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
}
.map-svg-sidebars-form,
.map-svg-sidebars-form-jur,
.map-svg-sidebars-form-fiz {
    display: none;
}
.map-svg-sidebars-form.is-active,
.map-svg-sidebars-form-jur.is-active,
.map-svg-sidebars-form-fiz.is-active {
    display: block;
}

.map-svg-sidebars-form .form-element {
    margin-bottom: 10px;
}
.map-svg-sidebars-form .form-alert {
    margin-bottom: 25px;
    position: relative;
    background: #e7f5ff;
    color: #074e8d;
    padding: 16px 16px 16px 54px;
    font-size: 16px;
    line-height: 1.2;
    border-bottom-right-radius: 3px;
    border-top-right-radius: 3px;
}
.map-svg-sidebars-form .form-alert::before {
    content: "\f129";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    width: 38px; height: 100%;
    background: #74c0fc;
    color: #3485c7;
    padding: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;

    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    top: 0; left: 0;
}

.map-svg-hold-mobile {
    display: none;
}
.map-svg-hold-mobile-title {
    font-size: 16px;
    color: var(--white);
}
.map-svg-hold-mobile-prices ul {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;

    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;

    gap: 8px;
    margin: 16px 0;
}
.map-svg-hold-mobile-prices ul li {
    cursor: pointer;
    background: var(--white);
    color: var(--black);
    border-radius: 100vmax;
    font-size: 16px;
    transition: background-color .2s ease;
    padding: 8px 20px;
    border: 1px solid rgba(0,0,0,0);
    min-width: 120px;
    text-align: center;
    text-transform: capitalize;
}
.map-svg-hold-mobile-prices ul li:hover {
    background: var(--green-dark);
    color: var(--white);
}
.map-svg-hold-mobile-prices ul li.is-active {
    background: var(--green);
    color: var(--white);
}

.map-svg-hold-mobile-items {
    width: calc(100% + 30px);
    margin-left: -15px;
    margin-top: 16px;
}
.map-svg-hold-mobile-item {
    padding: 10px;
    font-size: 16px;
    line-height: 1.5;
    color: var(--white);
    cursor: pointer;
}
.map-svg-hold-mobile-item:nth-of-type(odd) {
    background-color: #3c3c3e;
}
.map-svg-hold-mobile-item-title {
    font-weight: 600;
}
.map-svg-hold-mobile-item-type {
    padding: 0 15px;
}
.map-svg-hold-mobile-item-type ul li {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.map-svg-hold-mobile-item-type ul li::before {
    content: '';
    display: inline-block;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--green-light);
    margin-right: 4px;
    margin-bottom: 2px;
}
.map-svg-hold-mobile-item-prices {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.map-svg-hold-mobile-item-price {
    font-size: 80%;
    margin-top: 8px;
}
.map-svg-hold-mobile-items[data-type="30"] .map-svg-hold-mobile-item-prices span:nth-child(2),
.map-svg-hold-mobile-items[data-type="30"] .map-svg-hold-mobile-item-price span:nth-child(2) {
    display: none;
}
.map-svg-hold-mobile-items[data-type="7"] .map-svg-hold-mobile-item-prices span:nth-child(1),
.map-svg-hold-mobile-items[data-type="7"] .map-svg-hold-mobile-item-price span:nth-child(1) {
    display: none;
}

.text-page-section {
    padding: 80px 0 32px;
}
.text-page-section .dflex > div {
    width: 100%;
}
.text-page-section .dflex {
    height: 100%;
    -ms-flex-line-pack: justify;
    align-content: space-between;
}
.text-page-box {
    background: var(--white);
    padding: 25px;
    max-width: 730px;
    margin: 0 auto;
    width: 100%;
}
.text-page-section-contact {
    margin-top: 24px;
}

.entry h1 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}
.entry h2,
.entry h3,
.entry h4,
.entry h5 {
    font-size: 16px;
    line-height: 1.2;
    margin-bottom: 20px;
}
.entry > :last-child {
    margin-bottom: 0;
}
.entry p {
    margin-bottom: 20px;
}
.entry a {
    color: var(--green-light);
    transition: 0.2s ease-in-out;
}
.entry a:hover {
    color: var(--green);
}
.entry p img,
.entry .wp-caption {
    margin: 20px 0;
}
.entry .wp-caption-text {
    font-size: 12px;
    line-height: 1.4;
    margin-top: 8px;
}
.entry ul,
.entry ol {
    margin-left: 0;
}
.entry > ul,
.entry > ol {
    margin-bottom: 20px;
}
.entry ul li {
    list-style: disc inside;
}
.entry ol li  {
    list-style: decimal inside;
}

.no-wood-text {
    color: #6c757d;
}
.map-svg-hover-item-data .no-wood-text {
   font-size: 12px;
}

.form-element {
    margin-bottom: 10px;
}
.form-element label {
    padding-left: 10px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}
.form-element > label span {
    color: #6c757d
}
.form-element input,
.form-element input:focus {
    display: block;
    box-shadow: none;
    outline: none;
    background: transparent;
    width: 100%;
    padding: 6px 12px;
    font-size: 16px;
    line-height: 1.2;
    color: var(--black);
    border: 1px solid var(--grey);
    border-radius: 3px;
    transition: border-color .15s ease-in-out;
    height: 36px;
}
.form-element input:focus {
    border-color: var(--green-light);
}

.form-element input::placeholder {
    color: var(--black);
    opacity: 0.7;
}
.form-element input::-webkit-input-placeholder {
    color: var(--black);
    opacity: 0.7;
}
.form-element input::-moz-placeholder {
    color: var(--black);
    opacity: 0.7;
}
.form-element input:-ms-input-placeholder {
    color: var(--black);
    opacity: 0.7;
}
.form-element input:-moz-placeholder {
    color: var(--black);
    opacity: 0.7;
}

.form-element input[type="number"]::-webkit-outer-spin-button,
.form-element input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.form-element input[type="number"] {
    -moz-appearance: textfield;
}
.form-element input[type="number"] {
    appearance: textfield;
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
}
.form-element input:disabled {
    background: #f2f2f2;
}

.form-element.form-element-radio input {
    display: none;
}
.form-element.form-element-radio .wpcf7-list-item {
    margin: 0;
}
.form-element.form-element-radio .wpcf7-list-item-label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;

    font-size: 14px;
    font-weight: 600;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
}
.form-element.form-element-radio .wpcf7-list-item-label::before {
    content: '';
    width: 20px; height: 20px;
    border: 2px solid var(--green);
    border-radius: 50%;
    position: absolute;
    top: 1px; left: 0;
}
.form-element.form-element-radio .wpcf7-list-item-label::after {
    content: '';
    width: 12px; height: 12px;
    background: var(--green);
    border-radius: 50%;
    position: absolute;
    top: 5px;
    left: 4px;
    transform: scale(0);
    opacity: 0;
    transition: all .2s ease;
}
.form-element.form-element-radio input:checked + .wpcf7-list-item-label::after {
    transform: scale(1);
    opacity: 1;
}
.form-element.form-element-radio.form-element-radio-col .wpcf7-list-item {
    width: 100%;
    margin-bottom: 16px;
    padding-left: 10px;
}

.form-element .small-8 {
    padding-right: 15px;
}
.form-element .small-4 {
    padding-left: 15px;
}

.form-element.form-element-checkbox .wpcf7-list-item {
    margin-left: 0;
}
.form-element.form-element-checkbox input[type="checkbox"] {
    display: none;
}
.form-element.form-element-checkbox .wpcf7-list-item-label,
.form-element.form-element-checkbox .form-check-wood-item label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;

    font-size: 14px;
    font-weight: 600;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    margin: 0;
}
.form-element.form-element-checkbox .wpcf7-list-item-label {
    display: block;
}
.form-element.form-element-checkbox .wpcf7-list-item-label a {
    color: var(--green-light);
    transition: color .5s ease;
}
.form-element.form-element-checkbox .wpcf7-list-item-label a:hover {
    color: var(--green);
}
.form-element.form-element-checkbox .wpcf7-list-item-label::before,
.form-element.form-element-checkbox .form-check-wood-item label::before {
    content: '';
    width: 20px; height: 20px;
    border: 2px solid var(--green);
    position: absolute;
    top: 1px; left: 0;
}
.form-element.form-element-checkbox .wpcf7-list-item-label::after,
.form-element.form-element-checkbox .form-check-wood-item label::after {
    content: '';
    width: 12px; height: 12px;
    background: var(--green);
    position: absolute;
    top: 5px;
    left: 4px;
    transform: scale(0);
    opacity: 0;
    transition: all .2s ease;
}
.form-element.form-element-checkbox input[type="checkbox"]:checked + .wpcf7-list-item-label::after,
.form-element.form-element-checkbox input[type="checkbox"]:checked + label::after {
    transform: scale(1);
    opacity: 1;
}

#wood-quantity-fields {
    padding-left: 10px;
}

div.wpcf7-validation-errors,
div.wpcf7-acceptance-missing,
div.wpcf7-mail-sent-ng {
   border: none !important;
   float: left !important;
   margin: 10px 0 !important;
   padding: 0 !important;
   color: #df0631 !important;
}
div.wpcf7-mail-sent-ok {
   float: left !important;
   border: none !important;
   padding: 0 !important;
   margin: 10px 0 !important;
}
span.wpcf7-not-valid-tip {
    display: none !important;
}
.form-element input.wpcf7-not-valid,
.form-element input.wpcf7-not-valid:focus {
   border-color: #df0631;
}
.wpcf7 form .wpcf7-response-output {
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    display: none !important;
}
.wpcf7-not-valid .wpcf7-list-item-label::before {
    border-color: #df0631;
}

.map-svg-sidebars-box-right-form-success {
    display: none;
}
.map-svg-sidebars-box-right-form-success-icon {
    margin: 30px 0;
}
.map-svg-sidebars-box-right-form-success-icon img {
    max-height: 100px;
}
.map-svg-sidebars-box-right-form-success-title {
    font-size: 16px;
    font-weight: bolder;
}
.map-svg-sidebars-box-right-form-success-text {
    font-size: 14px;
}
.map-svg-sidebars-box-right-form-success-text a {
    color: var(--green-light);
    transition: color .5s ease;
}
.map-svg-sidebars-box-right-form-success-text a:hover {
    color: var(--green);
}
.map-svg-sidebars-box-right-form-success-btn {
    margin-top: 16px;
}
.page-template-tp-wood_w_delivery .map-svg-sidebars {
    overflow: auto;
}

.map-svg-sidebars-box-right {
    display: none;
}
.map-svg-sidebars.form-open .map-svg-sidebars-box-right {
    display: block;
}

.wood-assortments {
    pointer-events: none;
    display: none;
    margin-bottom: 16px;
}
.wood-assortments.is-active {
    display: block;
}
.wood-assortments .wpcf7-list-item-label {
    color: #969696 !important;
}
.wood-assortments .wpcf7-list-item-label::before {
    border-color: #969696 !important;
}
.wood-assortments .wpcf7-list-item-label::after {
    background: #969696 !important;
}
/* .wood-assortments .wpcf7-list-item {
    display: none;
} */
.wood-assortments .wpcf7-list-item.is-active {
    display: block;
}

.form-btn .preloader {
    display: none;
}
.form-btn.pre-active span:not(.preloader) {
    display: none;
}
.form-btn.pre-active span.preloader {
    display: inline-block;
}
.form-btn.pre-active .btn-green-w-arrow.btn-green {
    padding-right: 20px;
}
.form-btn.pre-active .btn-green-w-arrow.btn-green::after {
    display: none;
}

.map-svg-sidebars-item-hidden-assortments {
    display: none !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Other */
sup {
    top: -0.5em;
    font-size: 75%;
    vertical-align: baseline;
}
.fancybox__thumbs {
    display: none !important;
}
button:disabled {
    background-color: var(--green-dark);
    cursor: not-allowed;
}

/* Media */
@media only screen and (min-width: 576px) {
    .grid-container:not(.grid-container-remain) {
        max-width: 540px;
    }
} /* end of min-width 576 */

@media only screen and (min-width: 768px) {
    .grid-container:not(.grid-container-remain) {
        max-width: 720px;
    }
} /* end of min-width 768 */

@media only screen and (min-width: 992px) {
    .grid-container:not(.grid-container-remain) {
        max-width: 960px;
    }
    .main-section-btns ul li {
        max-width: 42.8%;
        padding: 0 15px;
    }
    .map-svg-sidebars {
        width: 800px;
    }
    .map-svg-sidebars.is-active {
        transform: translateX(400px);
    }
    .map-svg-sidebars.form-open {
        transform: translateX(0);
    }
    .map-svg-sidebars .map-svg-sidebars-box-left,
    .map-svg-sidebars .map-svg-sidebars-box-right {
        width: 50%;
    }
    .map-svg-sidebars .map-svg-sidebars-box-left {
        padding-right: 15px;
    }
    .map-svg-sidebars .map-svg-sidebars-box-right {
        padding: 48px 16px 24px;
        border-left: 1px solid var(--grey);
        margin-top: 0;
    }
    .map-svg-sidebars-close {
        right: calc(50% + 16px);
    }
    .map-svg-sidebars-box,
    .map-svg-sidebars-twoside {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;

        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .map-svg-sidebars-twoside .map-svg-sidebars-item-hold {
        width: 50%;
    }
    .map-svg-sidebars-twoside .map-svg-sidebars-box-left {
        width: 100%;
        padding-right: 0;
    }
    .maps-section-hold {
        position: relative;
        padding-bottom: 71vh;
        min-height: 614px;
    }
    .map-svg {
        width: 100%;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
    }
} /* end of min-width 992 */

@media only screen and (min-width: 1200px) {
    .grid-container:not(.grid-container-remain) {
        max-width: 1140px;
    }
    .header-logo img {
        height: 36px;
    }
} /* end of min-width 1200 */

@media only screen and (max-width: 1199px) {
	.hamburger {
		display: inline-block;
	}
    .header-nav {
        position: fixed;
        top: 0; left: 0; bottom: 0;
        background: var(--white);
        width: 300px;
        overflow: auto;
        padding: 24px 0;
        transform: translateX(-110%);
        transition: 0.3s ease-in-out;
        -webkit-box-shadow: -10px 20px 17px 0 rgba(0,0,0,.2);
        -moz-box-shadow: -10px 20px 17px 0 rgba(0,0,0,.2);
        box-shadow: -10px 20px 17px 0 rgba(0,0,0,.2);
    }
    .header-nav.is-active {
        transform: translateX(0);
    }
    .header-nav > ul {
        display: block;
    }
    .header-nav > ul > li {
        font-size: 16px;
        color: var(--black);
        text-transform: none;
    }
    .header-nav .fas {
        display: none !important;
    }
    .header-nav > ul > li > span, 
    .header-nav > ul > li > a {
        color: var(--black);
    }
    .header-nav > ul > li > span:hover, 
    .header-nav > ul > li > a:hover {
        color: var(--black);
    }
    .header-subnav {
        position: relative;
        top: 0;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        margin: 0;
    }
    .has-children-js > span {
        display: block;
        pointer-events: none;
        padding: 0 16px;
        margin-top: 8px;
        margin-bottom: 8px;
        font-weight: 600;
        background: transparent !important;
    }
    .header-subnav .has-children ul {
        position: relative;
        left: 0;
        opacity: 1;
        visibility: visible;
        white-space: normal;
        padding: 0 16px;
    }
    .header-subnav .sub-trigger:hover,
    .header-nav .sub-trigger:hover,
    .header-subnav .has-children ul li a:hover,
    .header-subnav .has-children ul li span:hover {
        background: var(--grey);
        opacity: 1;
        padding: 8px 16px !important;
    }
    .header-subnav .has-children > span {
        pointer-events: none;
        font-weight: 600;
    }
    .header-subnav span {
        padding: 8px 16px !important;
        font-size: 16px;
    }
    .header-subnav ul li:hover {
        background: transparent;
    }
    .header-subnav a,
    .header-nav .sub-trigger,
    .header-nav > ul > li > a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        text-transform: none;
        font-size: 16px;
        padding: 8px 16px;
        cursor: pointer;
        transition: 0.2s ease-in-out;
        white-space: nowrap;
        position: relative;
    }
    .spec-nav-4 > span span {
        display: inline;
    }
    .spec-nav-4 .header-subnav .has-children:first-child > span {
        display: none;
    }
    .header-nav > ul > li > a:hover {
        background: var(--grey);
        opacity: 1;
    }
} /* end of max-width 1199 */

@media only screen and (max-width: 1023px) {
    .main-section-btns {
        margin: auto 0 10vh;
    }
} /* end of max-width 1023 */

@media screen and (max-width:991px) {
    .page-template-tp-wood_in_forest .map-svg-sidebars {
        overflow: auto;
    }
    .map-svg-sidebars-box-right {
        padding: 0 16px;
    }
    .page-template-tp-wood_in_forest .map-svg-sidebars-item-hold {
        height: auto;
    }
    .page-template-tp-wood_in_forest .map-svg-sidebars-box {
        overflow: visible;
    }
}

@media screen and (max-width:767px) {
    footer {
        font-size: 12px;
    }
    footer .grid-container {
        display: block;
    }
    footer .grid-container > div {
        width: 100% !important;
    }
    .footer-nav {
        margin-bottom: 16px;
    }
    .footer-nav ul {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    .footer-nav ul li a {
        font-size: 16px;
    }
    header,footer {
        background: #3c3c3e;
    }
    .main-bg,
    .map-bg-hold,
    .main-section-btns ul li a img,
    .main-section-btns ul li a::after {
        display: none;
    }
    .main-section-btns ul li a {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .main-section.map-bg .main-section-hold {
        min-height: 510px;
    }
    .main-section .grid-container
    .main-section-hold {
        display: block;
    }
    .main-section-items {
        padding: 16px 0;
    }
    .main-section-btns {
        margin: 0;
    }
    .main-section-contact {
        margin-top: 24px;
    }
    .section-title {
        font-size: 32px;
        text-align: left;
    }
    .submenus-sidebar {
        width: 300px;
    }
    .submenus-sidebar-contact-item-img {
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
    }
    .map-svg-hold {
        display: none;
    }
    .map-svg-hold-mobile {
        display: block;
    }
    .map-svg-sidebars {
        width: 300px;
    }
    .text-page-section-contact {
        margin-top: 56px;
    }
} /* end of max-width 767 */

@media screen and (max-width:639px) {
    
    .footer-nav {
        margin-bottom: 16px;
        font-size: 12px;
    }
	.footer-nav ul {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    .section-title {
        font-size: 32px;
    }
    .footer-nav ul li a {
        font-size: 12px;
    }

} /* end of max-width 639 */

@media screen and (max-width:575px) {
    .main-section-contact, .text-page-section-contact {
        text-align: left;
    }
} /* end of max-width 575 */