/*!
Theme Name: Tool
Theme URI: http://codos.by/
Author: codos.by/
Author URI: http://codos.by/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: tool
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

tool is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
---------------------------------------------------------------- */

/*@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700&display=swap'); /* font-family: 'Roboto', sans-serif; */

@font-face {
	font-family: "Roboto";
	font-weight: 100;
	font-style: Thin;
	src: url('./assets/fonts/Roboto/Roboto-Thin.ttf');	
	font-display: fallback;
}

@font-face {
	font-family: "Roboto";
	font-weight: 300;
	font-style: Light;
	src: url('./assets/fonts/Roboto/Roboto-Light.ttf');	
	font-display: fallback;
}

@font-face {
	font-family: "Roboto";
	font-weight: 400;
	font-style: Regular;
	src: url('./assets/fonts/Roboto/Roboto-Regular.ttf');	
	font-display: fallback;
}

@font-face {
	font-family: "Roboto";
	font-weight: 500;
	font-style: Medium;
	src: url('./assets/fonts/Roboto/Roboto-Medium.ttf');	
	font-display: fallback;
}

@font-face {
	font-family: "Roboto";
	font-weight: 700;
	font-style: bold;	
	src: url('./assets/fonts/Roboto/Roboto-Bold.ttf');	
	font-display: fallback;
}

/* По умолчанию */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth; 
    overflow-x: hidden; 
}

:root {   
    --color-red: #e52727;
    --color-white: #fff;
    --color-dark-graphite: #262626;
    --color-graphite: #3d464d;
    --color-dark-grey: #999;
    --color-light-grey: #ebebeb;
    --color-grey-hover: #dedede;
    --color-yellow-light: #ffd333;
    --color-yellow: #e7b300;
    --color-green: #2c813c;
    --color-light-blue: #80bdff;
    --color-grey: #6c757d;
}

/* Контейнер для всего контента*/
.container {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0;       
} 

body {
    color: var(--color-graphite);
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    text-align: left;   
    overflow-x: hidden;
}
  
a {
    color: var(--color-graphite);
    text-decoration: none;
}

a:hover {
    color: var(--color-green);
}

a:visited {
    color: var(--color-graphite);
}

label {
    margin-bottom: .25rem;
    font-size: 15px;
}
    
h1 {
    font-size: 26px;
    font-weight: 500;
    margin: 0 0 0.7em 0;
}

h2 {
    font-size: 22px;
    font-weight: 500;
}

h3 {
    font-size: 18px;
    font-weight: 500;
}

h4 {
    font-size: 14px;
    font-weight: 500;
}

h5 {
    font-size: 10px;
    font-weight: 500;
}

h6 {
    font-size: 6px;
    font-weight: 500;        
}

p {
    margin-bottom: 1.1em;
}

/* Header */
/* Topbar */
.topbar-bg, .search-bg {
    border-bottom: 1px solid var(--color-light-grey);
    position: relative;
    z-index: 11;  
    background: var(--color-white);
}

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

.topbar-menu-list-nav_wrapper {
    display: flex;
    gap: 10px;
}

.topbar-menu-list-nav, .topbar-menu-list-nav-currency {
    display: flex;
    font-size: 14px;
    line-height: 1;
    gap: 25px;
    margin: 0;
    color: var(--color-graphite);
    font-weight: 500;   
}

.topbar-menu-list-nav div .fa-phone {
    -webkit-transform: rotateZ(90deg);
    transform: rotateZ(90deg); 
    font-size: 15px;    
} 

.topbar-phone_wrapper {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.topbar-menu-list-nav div a, .topbar-menu-list-nav-currency div a {
    transition: color 0.3s ease-in;
    color: var(--color-graphite);
    font-weight: 500;
}
.topbar-menu-list-nav div a:hover, .topbar-menu-list-nav-currency div a:hover {
   color: var(--color-green);
}

/*  Header search */
.header-search {
    display: flex;
    padding: 20px 0;
    align-items: center;
    gap: 15px;
    justify-content: space-between;
}

.logo-image img {
    width: auto;
    height: 40px;
}

.logo-image .custom-logo-link {
    align-items: center;
    display: flex;
}

.search__body {
    display: flex;        
    z-index: 0;
    position: relative;
    width: 65%;
    height: 39px;
}

.header-logo_wrapper {
    display: flex;
    flex-direction: column;    
    align-items: center;
}

.site-branding {
    display: flex;
    flex-direction: column;      
}

.site-title {
    font-size: 16px;
    margin: 0;
    color: var(--color-dark-grey);  
    display: none;
}

.site-title a {
    color: var(--color-dark-grey);  
}

.site-description {
    font-size: 14px;
    margin: 0;
    display: none;
    color: var(--color-dark-grey);  
}


.search__input::placeholder {
    color: #6c757d;
}

.search__input {
    color: var(--color-dark-graphite);
    background-color: var(--color-light-grey);
    border-color: var(--color-light-grey);
    border: 1px solid var(--color-light-grey);    
    font-size: 15px;
    border-radius: 2.5px;
    transition: background-color .2s,border-color .2s,color .2s;
    padding: 0 37px 0 13px;
    width: 100%; 
    border-radius: 3px;   
}  

input[type="text"]:focus, input[type="email"]:focus, input[type="url"]:focus, input[type="password"]:focus, 
input[type="search"]:focus, input[type="number"]:focus, input[type="tel"]:focus, input[type="range"]:focus, 
input[type="date"]:focus, input[type="month"]:focus, input[type="week"]:focus, input[type="time"]:focus, 
input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="color"]:focus, textarea:focus {
    color: #495057;
    border-color: var(--color-light-blue);
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgb(0 123 255 / 25%);
}

.search__button {
    background: inherit;
    border: 2px solid transparent;
    fill: currentColor;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0 9px;
    white-space: nowrap;
    cursor: pointer;
}

.search__button:hover {
    color: var(--color-dark-graphite);
}

.search__button--end {
    border-radius: 3px;
    color: var(--color-yellow);
    transition: color .2s;
    position: absolute;
    height: 38px;
    width: 38px;
    border: none;
    right: 0;
}

.search__button--end:hover {
    background: var(--color-yellow);
}

/* Ajax search */
.ajax-search {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    right: 0;
    background: var(--color-white);
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
    border-radius: 3px;
    margin-top: 5px;
    max-height: 350px;
    min-height: 30px;
    overflow-x: hidden;
    overflow-y: auto;
    z-index: 100;
    margin: 0;
    padding: 10px;
    font-size: 14px;
    color: #424348;
    scrollbar-color: dark;
    scrollbar-width: thin;
    overscroll-behavior: contain;
    display: none;
}

.ajax-search::-webkit-scrollbar {
    width: 8px;
    background-color: #eff2f3;
}

.ajax-search::-webkit-scrollbar-thumb {
    background-color: var(--color-dark-graphite);
    border-radius: 4em;
}

.ajax-search__item {
    position: relative;
    border-top: 1px solid rgba(224, 229, 231, 0.5);
    padding: 10px 15px;
    cursor: pointer;
    list-style-type: none;
}

.ajax-search__link img {
    width: 50px;
    height: 50px;
}

.ajax-search__link {
    color: var(--accent);
    line-height: 130%;
    margin-bottom: 10px;
    font-size: 13px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.ajax-search__excerpt {
    cursor: default;
    font-size: 11px;
    line-height: 140%;
}

.ajax-search__excerpt H2,
.ajax-search__excerpt H2 {
    font-size: 13px;
    margin-bottom: 5px;
}

.ajax-search__excerpt ol,
.ajax-search__excerpt li {
    margin-left: 10px; 
    margin-bottom: 5px; 
}

.ajax-search__not-found {
    font-size: 12px;
}

/* Header Phone */
.header-phone {
    display: flex;       
    align-items: center;
    gap: 5px;
    color: var(--color-dark-grey);
}

.header-phone_wrapper {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.header-phone div .fa-phone {
    -webkit-transform: rotateZ(90deg);
    transform: rotateZ(90deg);
    font-size: 25px;
    color: var(--color-graphite);
}


.header-phone_wrapper div {
    display: flex;
    gap: 5px;
    align-items: center;
}

.header-messenger_wrapper .fa-viber {
    color: #7360f2;
    font-size: 17px;
}
.header-messenger_wrapper .fa-whatsapp {
    color: var(--color-green);
    font-size: 18px;
}
.header-messenger_wrapper .fa-telegram-plane {
    color: #229ED9;
    font-size: 19px;
}

.header-phone_wrapper div a {
    color: var(--color-graphite);
    font-weight: 500;
}

.header-phone_wrapper div a:hover {
    color: var(--color-green);
}

/* Header__navbar */ 
.navbar-bg {
    background: var(--color-yellow-light);
}

.nav-panel {
    height: 55px;
    background: var(--color-yellow-light);
    -webkit-box-shadow: 0 1px rgba(0, 0, 0, 0.04), inset 0 -1px rgba(0, 0, 0, 0.04);
    box-shadow: 0 1px rgba(0, 0, 0, 0.04), inset 0 -1px rgba(0, 0, 0, 0.04);
    display: flex;
    gap: 40px;
    align-items: center;
}

.departments, #mega-menu-wrap-departments_nav {
    width: 230px;
    height: auto;
    color: var(--color-white);
    border-radius: 3px;
    position: relative;
}

.dashicons-menu-alt::before {
    content: url('/wp-content/themes/tool/assets/images/svg/bars.svg');
}

/* Max mega menu */
#mega-menu-wrap-departments_nav #mega-menu-departments_nav > li.mega-menu-item {
    display: block;    
}

.mega-indicator-arrow_transform {
    -webkit-transform: rotateZ(0deg);
    transform: rotateZ(0deg); 
    transition: all 0.3s ease-in;
}

/* Ширина поля меню  */
#mega-menu-wrap-departments_nav #mega-menu-departments_nav > li.mega-menu-item > a.mega-menu-link {
    padding: 0px 0px 0px 10px;    
    color: var(--color-graphite) !important;
    font-weight: 700 !important;
    font-size: 16px;
    letter-spacing: 0.02em;
    list-style: none;
    border-radius: 3px;
}

#mega-menu-wrap-departments_nav #mega-menu-departments_nav > li.mega-menu-item > a.mega-menu-link:hover { /* Navbar при наведении */
    background: #f1f1f1;
    color: #333;
    font-weight: 700;
    border-radius: 3px;
}

#mega-menu-wrap-departments_nav #mega-menu-departments_nav > li.mega-menu-item > a.mega-menu-link::before {
    margin: 0px 25px 0 0;
}

/* Ширина мега меню / Отступ от кнопки */
#mega-menu-wrap-departments_nav #mega-menu-departments_nav > li.mega-menu-megamenu > ul.mega-sub-menu {
    margin-top: 6px;
    width: 1380px !important; 
}

/* Заголовок первого уровня отступ стрелки */
#mega-menu-wrap-departments_nav #mega-menu-departments_nav li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator {
    margin: 0 0 0 5px;  
    font-size: 18px;  
}

/* Ширина столбца мега-меню */
#mega-menu-wrap-departments_nav #mega-menu-departments_nav li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-12 {
    width: 33.33%;
}    

/* Заголовок первого уровня */
#mega-menu-wrap-departments_nav #mega-menu-departments_nav > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link, 
#mega-menu-wrap-departments_nav #mega-menu-departments_nav > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
    border-bottom: 1px var(--color-yellow-light) solid;
    margin-bottom: 10px;
    color: var(--color-dark-graphite);
}

#mega-menu-wrap-departments_nav #mega-menu-departments_nav > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link, 
#mega-menu-wrap-departments_nav #mega-menu-departments_nav > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link text {
    border-bottom: 1px red solid;    
}

#mega-menu-wrap-departments_nav #mega-menu-departments_nav li.mega-menu-item-has-children li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator {
    float: none;
}

/* Ширина колонок */
#mega-menu-wrap-departments_nav #mega-menu-departments_nav li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column > ul.mega-sub-menu > li.mega-menu-item {
    width: auto;    
}

/* Menu Primery Navigation */
.main-navigation {
    width: auto;
}

.menu-primary-navigation-container #primary-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 15px;
    line-height: 1;
    letter-spacing: 0.02em;
    list-style: none;
    gap: 5px;
    font-weight: 700;
}

.menu-primary-navigation-container #primary-menu li a {
    background: transparent;
    padding: 12px 15px;
    border-radius: 3px;
}

.menu-primary-navigation-container #primary-menu li a:hover {
    color: var(--color-graphite);
    background: rgba(255, 255, 255, 0.5);
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-transition-duration: 0.3s;
            transition-duration: 0.3s;
}

/* Header__indicators */
/* Wishlist */
.header__indicators {
    display: -ms-flexbox;
    display: flex;
    flex-grow: 1;
    -ms-flex-pack: end;
    justify-content: flex-end;
    gap: 20px;
}

/* Login */
.indicator-login {
    display: flex;
    gap: 5px;
    align-items: center;
    font-size: 26px;
}

.indicator-login_wrapper {
    display: flex;
    flex-direction: column;
}

.indicator-login_wrapper div a {
    font-size: 14px;
    font-weight: 500;
}

.indicator-login_wrapper div {
    font-size: 13px;
    color: var(--color-dark-grey);
}

/* Cart */
.indicator-cart {
    position: relative;
    display: flex;
    align-items: center;
    display: none;
}

.cart-contents_wrapper {
    display: flex;
    gap: 5px;
    align-items: center;
    font-size: 15px;
}

.cart-content-icon {
    position: relative;    
    width: 32px;
    height: 32px;
}

.cart-content-icon svg {
    width: 32px;
    height: 32px;
}

.cart-content-count {
    position: absolute;
    top: -2px;
    right: -4px;
    z-index: 1;
    color: var(--color-white);
    font-size: 10px;
    font-weight: 600;    
    border: 2px solid var(--color-red);
    border-radius: 50%;
    width: 16px;
    height: 16px;
    text-align: center;
    background: var(--color-red);    
}

.cart-contents-title_wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 15px;
}

.cart-content-title {
    font-size: 13px;
    color: var(--color-dark-grey);
}

.cart-content-total {
    font-size: 14px;
    font-weight: 500;
}

/* Menu Burger
--------------------------------------------- */
.menu-burger{ 
    display: none;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 5;
    cursor: pointer;
}

.menu-burger::before,
.menu-burger span,
.menu-burger::after{
    height: 10%;
    width: 100%;
    background-color: var(--color-graphite);
    position: absolute;
    transition: all 0.3s ease-in-out;
}

.menu-burger::before{
    content: "";
    top: 0;
}
.menu-burger span{
    top: 50%;
    transform: scale(1) translate(0px, -50%);
}
.menu-burger::after{
    content: "";
    bottom: 0;
}

.menu-burger.open:before {
    top: 50%;
    transform:  rotate(-45deg) translate(0px, -50%);
    background-color: var(--color-white);
}

.menu-burger.open span {
    transform: scale(0) translate(0px, -50%);
    background-color: var(--color-white);
}

.menu-burger.open:after {
    bottom: 50%;
    transform:  rotate(44deg) translate(1px, 50%);
    background-color: var(--color-white);
}

/*  Cмещение позиции панели header */
.header-padding {
    padding-top: 15px;    
}

.navbar-bg {
    height: 55px;
    position: relative;
    z-index: 10;
}

.navbar-bg_wrapper {
    background: var(--color-yellow-light);
    transition: all 0.2s ease-in;   
}

.navbar-bg_wrapper.fixed {
    position: fixed;
    z-index: 12;
    top: 0;
    left: 0;
    width: 100%;
    -webkit-box-shadow: 0px 5px 5px -5px rgba(34, 60, 80, 0.6);
    -moz-box-shadow: 0px 5px 5px -5px rgba(34, 60, 80, 0.6);
    box-shadow: 0px 5px 5px -5px rgba(34, 60, 80, 0.6);
}


/**
 *  Footer
 */
.site-footer {
    background: transparent;
    border-top: 1px solid var(--color-light-grey);
}

.footer_wrapper {
    display: flex;
    gap: 80px;
    padding-top: 50px;
    padding-bottom: 50px;
}

.footer-contact_wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
}

.footer-section-contact_wrapper {
    display: flex;
    gap: 10px;
}

.footer_wrapper h2 {
    font-size: 20px;
    padding-bottom: 25px;
    font-weight: 500;
}

.footer_wrapper h3 {
    font-size: 16px;
    padding-bottom: 10px;
}

.footer-section-contact_wrapper div .fa-phone {
    -webkit-transform: rotateZ(90deg);
    transform: rotateZ(90deg);    
}

.footer-navigation .menu-footer-navigation-container #footer-menu {
    display: flex;
    flex-direction: column;
    margin: 0;
    gap: 10px;
}

.footer-navigation .menu-footer-navigation-container #footer-menu li {
    list-style-type: none;
}

.site-info {
    background: transparent;
    border-top: 1px solid var(--color-light-grey);
    padding: 20px 0;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
}

/* Кнопка Вверх
--------------------------------------------- */
.up-button {    
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: auto;
    height: 55px;
    background: var(--color-dark-graphite);
    color: var(--color-white);
    padding: 0 20px;
    border-radius: 3px;
    transition: 0.3s ease-in;
    z-index: 1;
    transform: translateY(75px);
    opacity: 0.6;
    border: none;    
    cursor: pointer;
}

.up-button:hover {
    background: var(--color-yellow);    
    opacity: 0.9;
    color: var(--color-dark-graphite);
}   

.up-button::before {
   content: '\f077';
   font-size: 20px;
}

/* Кнопка Назад
--------------------------------------------- */
.back-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: auto;
    height: 55px;
    background: var(--color-dark-graphite);
    color: var(--color-white);
    padding: 0 20px;
    border-radius: 3px;
    transition: 0.3s ease-in;
    z-index: 1;
    opacity: 0.6;
    transform: translateY(75px);
    border: none;
    cursor: pointer;
}

.back-button:hover {
    background: var(--color-yellow);    
    opacity: 0.9;
    color: var(--color-dark-graphite);
}   

.back-button::before {
   content: '\f053';
   font-size: 20px;
}



/**
 *  Главная страница
 */

/* Слайдер */
.slider-main_wrapper {
    position: relative;
    margin-bottom: 18px;
    margin-top: -15px;
}

.slider-main_wrapper > h2 {
    text-align: center;
    font-size: 0px;
}

.slider-main .slick-track{
    display: flex;
    justify-content: center;   
}

.slider-main .slick-list{
    overflow: hidden;
}

.slick-list{
    padding: 0;    
}    

.main-item{
    height: 35vw;
    background-position: center 0;
    background-color: transparent;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
    position: relative;
}

.main-item .bgvideo {
    width: 100%;
}

.bgvideo-main-item {
    position: relative;
}

/* Тонированный слой видео */
.bgvideo-main-item .tinted_layer {
    position: absolute;
    height: 100%;
    width: 100%;
    background: rgba(45, 42, 42, 0.66);
}

.main-item .main-item_content_wrapper {
    position: absolute;
    top: 33%;
    left: 10%;
    color: var(--color-graphite);
    width: 80%;
    background: rgba(255, 255, 255, 0.7);
    padding: 30px 40px;    
}

.main-item .content_wrapper_two {
    background: rgba(224, 229, 231, 0.7);    
}

.main-item .main-item_content_wrapper h3 {
    font-size: 30px;
    font-weight: 600;
}

.main-item .main-item_content_wrapper h3 > span {
    color: var(--color-red);
}

.main-item .main-item_content_wrapper p {
    font-size: 25px;
    margin: 5px 0 0 0;
    line-height: 1.4;
}

.main-item .main-item_content_wrapper .button-slider {
    background: var(--color-yellow-light);
    color: var(--color-graphite);
    padding: 10px 0;
    border-radius: 3px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 20px;
    display: block;
    width: 150px;
    text-align: center;
    font-size: 22px;    
}

#mega-menu-wrap-departments_nav #mega-menu-departments_nav > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover, 
#mega-menu-wrap-departments_nav #mega-menu-departments_nav > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover {
    border-color: var(--color-yellow) !important;
  }

.main-item .main-item_content_wrapper .button-slider:hover {
    background: var(--color-graphite);
    color: var(--color-white);
}

.slider-main .slick-dots{
    display: flex;
    gap: 15px;
    justify-content: center;
    position: absolute;
    bottom: 30px;    
    width: 100%;
    margin: 0;   
}

.slider-main .slick-dots li{
    list-style: none;
}

.slider-main .slick-dots li button{
    font-size: 0;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: var(--color-graphite);   
    border: var(--color-graphite);
}

.slider-main .slick-dots li.slick-active button{
    background-color: var(--color-yellow-light);
    border: transparent;
}

/* Стрелки */
.left-arrow, 
.right-arrow {
  display: inline-flex;
  width: 48px;
  height: 48px;
  background-color: var(--color-yellow-light);
  border-radius: 50%;
  cursor: pointer;
}

.left-arrow {    
  position: absolute;
  top: 45%;
  left: 15px;
}

.right-arrow {
    position: absolute;
    top: 45%;
    right: 15px;
}

.left-arrow::before, 
.right-arrow::before {
  position: absolute;
  display: inline-flex;
  width: 10px;
  height: 10px;
  content: '';
}

.left-arrow::before {
  top: 18px;
  left: 20px;
  border-top: 2px solid var(--color-graphite);
  border-left: 2px solid var(--color-graphite);
  transform: rotate(-45deg);
}

.right-arrow::before {
  top: 18px;
  left: 16px;
  border-top: 2px solid var(--color-graphite);
  border-right: 2px solid var(--color-graphite);
  transform: rotate(45deg);
}

/* Иземнение фона и цвета при наведении */
.left-arrow:hover, 
.right-arrow:hover {
  background-color: var(--color-graphite);
}

.left-arrow:hover:before, 
.right-arrow:hover:before {
  border-color: var(--color-white);
}

/* Блок функций */
.block-features_list {
    display: flex;        
    gap: 30px;
    justify-content: center;
    margin-bottom: 50px;
}

.advantage h2 {
    font-size: 0px;    
    text-align: center;
}

.block-features-item {
    background: #f7f7f7;
    padding: 30px 28px 28px;
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-radius: 3px;
    justify-content: center;
    text-align: center;
    width: 23%;
}

.block-features-icon {
    font-size: 42px;
    color: var(--color-yellow-light);
}

.block-features-icon .fa-exclamation {
    font-size: 42px;
    color: var(--color-red);
}

.block-features-title_wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.block-features-title_wrapper h3 {
    font-size: 17px;
}

.block-features-title_wrapper p {
    font-size: 14px;
}

/* Блок Fuerda */
.fuerda > h2 {
    text-align: center;
    font-size: 0px;
}

.content-wrapper {
    padding-top: 28px;
    color: var(--color-white);
}

.content-wrapper .wrapp {
    padding-bottom: 20px;
}

.dealer_wrapper {
    height: auto;
    width: 100%;    
    padding: 0 0 30px 0;
    background-position: center -40px;
    background-size: cover;
    background-repeat: no-repeat;
}

.dealer_wrapper .content-wrapper h3 {
    font-size: 28px;
    line-height: 1.2;  
    margin-top: 10px;
    margin-bottom: 10px;  
}

.dealer_wrapper .content-wrapper h3 span {
    color: var(--color-red);
    font-size: 33px;
}

.dealer_wrapper .content-wrapper .dealer {
    font-size: 28px;
    margin-bottom: 0;
}

.dealer_wrapper .content-wrapper p {
    margin-top: 20px;
    line-height: 1.5em;
    font-size: 24px;
}

.dealer_wrapper .content-wrapper a {
    background: var(--color-yellow-light);
    color: var(--color-graphite);    
    padding: 10px 30px;
    border-radius: 3px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 10px;
    display: inline-block;
}

.dealer_wrapper .content-wrapper a:hover {
    background: var(--color-graphite);
    color: var(--color-white);
}

.section-precitool > h2{
    text-align: center;
    font-size: 0;
}

.section-precitool .dealer_wrapper .content-wrapper > p {
    margin-top: 15px;
    line-height: 1.5em;
    font-size: 18px;
} 

.banner-two {
    background-position: center 0px;   
    height: 100%; 
}

/**
 *  Страница поиска
 */
.search_wrapper {
    display: flex;
    gap: 15px;
}

.page-search {
    width: 73%;
}

.search_wrapper .widget-area {
    width: 27%;    
}

.page-search .page-header {
    margin-bottom: 20px;
    margin-top: 20px;
}

.page-search .page-header h1 {
    font-size: 20px;
    background: var(--color-light-grey);
    padding: 5px 0 5px 10px;
}

.page-search .page-header h1 span {
    color: var(--color-green);
}

.page-search article {
    display: flex;
    gap: 30px;
    border-bottom: 1px solid var(--color-light-grey);
    margin-bottom: 20px;
}

.page-search article .search_wrapper {
    display: flex;
    flex-direction: column;    
}

.page-search article a img {
    width: 150px;
    height: auto;
    margin-bottom: 15px;
    border-radius: 4px;
}

.page-search article .search_wrapper .entry-header h2 a {
    color: var(--color-graphite);
}

.page-search article .search_wrapper .entry-header h2 a:hover {
    color: var(--color-green);
}

.page-search article .search_wrapper .entry-summary {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.02em;
    margin-bottom: 15px;
}

.page-search article .search_wrapper .entry-summary a {
    color: var(--color-green);
    font-weight: 500;
}

.page-search article .search_wrapper .entry-summary a:hover {
    color: var(--color-yellow);    
}

.page-search .no-results {
    margin-bottom: 20px;
}

/**
 *  Страница "Контакты"
 */
.page-contacts iframe {
    width: 100%;
    height: 450px;
    padding-top: 0px;
}

.page-contacts .breadcrumb_wrapper {
    margin-top: 25px;
}

.page-contacts h1 {
    margin-top: 20px;
}

.page-contacts .contacts_wrapper .contacts .section-contacts-title {
    font-size: 0px;
}

.page-contacts .contacts_wrapper {
    border: 2px solid var(--color-light-grey);
    border-radius: 2px;
    margin: 25px auto 25px auto;
    padding: 35px 30px 35px 30px;
    -webkit-box-shadow: 0px 5px 10px 2px rgb(34 60 80 / 20%);
    -moz-box-shadow: 0px 5px 10px 2px rgba(34, 60, 80, 0.2);
    box-shadow: 0px 5px 10px 2px rgb(34 60 80 / 20%);
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.page-contacts .contacts_wrapper .contacts nav ul li {
    list-style-type: none;    
}

.page-contacts .contacts_wrapper .contacts nav ul li .details_wrapper,
.page-contacts .contacts_wrapper .feedback .details_wrapper {
    display: flex;
    align-items: center;
    gap: 10px;    
    margin-bottom: 15px;
    color: var(--color-green);
}

.page-contacts .contacts_wrapper .contacts nav ul li .margin-top {
    margin-top: 25px;
}

.page-contacts .contacts_wrapper .contacts nav ul li p {
    margin: 0 0 10px 27px;
    color: var(--color-graphite);
    line-height: 1.5;
}

.page-contacts .contacts_wrapper .contacts nav ul li p span {
    font-weight: 500;      
    color: var(--color-dark-graphite);
}

.page-contacts .contacts_wrapper .contacts nav ul li a {
    display: block;   
    margin: 0 0 10px 27px;  
    color: var(--color-graphite);  
}

.page-contacts .contacts_wrapper .contacts nav ul li a:hover {
    color: var(--color-green);  
}

.page-contacts .contacts_wrapper .contacts nav ul li .details_wrapper h2 {
    font-size: 20px;       
    color: var(--color-green);   
}
.page-contacts .contacts_wrapper .contacts nav ul li .details_wrapper .fa-phone {
    -webkit-transform: rotateZ(90deg);
    transform: rotateZ(90deg);    
}

/**
 *  Страница "404"
 */

/* Облака */
.error_page_404 {
    z-index: 0;
    position: relative;
    overflow: hidden;
}

.error_page_404 .c{
    text-align: center;
    display: block;
    position: relative;
    width: 80%;
    margin: 100px auto;
}

.error_page_404 ._404{
    font-size: 220px;
    font-weight: 400;
    position: relative;
    display: inline-block;
    z-index: 2;
    height: 250px;
    letter-spacing: 15px;
    margin: 0;
}

.error_page_404 ._1{
    text-align: center;
    display: block;
    position: relative;
    font-size: 2em;    
}

.error_page_404 ._2{
    text-align: center;
    display: block;
    position: relative;
    font-size: 2em;
    margin: 10px auto;
}

.error_page_404 .text{
    font-size: 70px;
    text-align: center;
    position: relative;
    display: inline-block;
    margin: 19px 0px 0px 0px;
    z-index: 3;
    width: 100%;
    line-height: 1.2em;
    display: inline-block;
}           

.error_page_404 .btn{
    background: var(--color-graphite);
    color: var(--color-white);
    border-radius: 3px;
    position: relative;
    display: inline-block;
    width: 358px;
    padding: 5px;
    z-index: 5;
    font-size: 25px;
    margin:0 auto;    
    text-decoration: none;
    margin-top: 20px
}

.error_page_404 .btn:hover {    
    background: var(--color-yellow-light);
    color: var(--color-dark-graphite);
}

.error_page_404 .right{
    float: right;
    width: 60%;
}
            
.error_page_404 hr{
    border-top: 5px solid var(--color-yellow-light);
    border-radius: 2px;
    color: var(--color-yellow-light);    
    text-align: center;
    margin: 0px auto 20px auto;
    width: 420px;
    height: 0;      
}
            
.error_page_404 hr:after {
    content: "\2022";
    display: inline-block;
    position: relative;
    top: -0.65em;
    font-size: 2em;
    padding: 0 0.2em;
    background: var(--color-white);
}
            
.error_page_404 .cloud {
    width: 350px; height: 120px;    
    background: var(--color-yellow-light);
    /* background: linear-gradient(top, var(--color-yellow-light) 100%);
    background: -webkit-linear-gradient(top, var(--color-yellow-light) 100%);
    background: -moz-linear-gradient(top, var(--color-yellow-light) 100%);
    background: -ms-linear-gradient(top, var(--color-yellow-light) 100%);
    background: -o-linear-gradient(top, var(--color-yellow-light) 100%); */
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    position: absolute;
    margin: 120px auto 20px;
    z-index:-1;
    transition: ease 1s;
}

.error_page_404 .cloud:after, .cloud:before {
    content: '';
    position: absolute;
    background: var(--color-yellow-light);
    z-index: -1
}

.error_page_404 .cloud:after {
    width: 100px; height: 100px;
    top: -50px; left: 50px;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
}

.error_page_404 .cloud:before {
    width: 180px; height: 180px;
    top: -90px; right: 50px;
    border-radius: 200px;
    -webkit-border-radius: 200px;
    -moz-border-radius: 200px;
}
            
.error_page_404 .x1 {
    top:-50px;
    left:100px;
    -webkit-transform: scale(0.3);
    -moz-transform: scale(0.3);
    transform: scale(0.3);
    opacity: 0.9;
    animation: moveclouds 15s linear infinite;
}
            
.error_page_404 .x1_5{
    top:-80px;
    left:250px;
    -webkit-transform: scale(0.3);
    -moz-transform: scale(0.3);
    transform: scale(0.3);
    animation: moveclouds 17s linear infinite;    
}

.error_page_404 .x2 {
    left: 250px;
    top:30px;
    -webkit-transform: scale(0.6);
    -moz-transform: scale(0.6);
    transform: scale(0.6);
    opacity: 0.6; 
    animation: moveclouds 25s linear infinite;    
}

.error_page_404 .x3 {
    left: 250px; 
    bottom: -70px;
    -webkit-transform: scale(0.6);
    -moz-transform: scale(0.6);
    transform: scale(0.6);
    opacity: 0.8; 
    animation: moveclouds 25s linear infinite;    
}

.error_page_404 .x4 {
    left: 470px; 
    bottom: 20px;
    -webkit-transform: scale(0.75);
    -moz-transform: scale(0.75);
    transform: scale(0.75);
    opacity: 0.75;
    animation: moveclouds 18s linear infinite;    
}

.error_page_404 .x5 {
    left: 200px; top: 300px;
    -webkit-transform: scale(0.5);
    -moz-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0.8; 
    animation: moveclouds 20s linear infinite;    
}

@keyframes moveclouds {    
    0% {margin-left: 1000px;}
    100% {margin-left: -1000px;}
}
/* Облака end */


/*--------------------------------------------------------------
# Media queries
--------------------------------------------------------------*/
@media (min-width: 500px){
	.product-table-more-details[hidden] {
		display: table-cell;
	}
	.product-table-quickview[hidden] {
		display: table-cell;
	}
}

@media (max-width: 1440px){    
    /* Slider
    --------------------------------------------- */
    .main-item .main-item_content_wrapper {
        top: 10%;
    }
    
}

@media (max-width: 1400px){    
    .container {
        padding: 10px 20px;
    }
    /* Header
    --------------------------------------------- */
    /* Search
    --------------------------------------------- */
    .search__body {        
        width: calc(45% + (65 - 45) * ((100vw - 280px) / (1400 - 280)));  
    }
    
    /* Mega Menu
    --------------------------------------------- */
    #mega-menu-wrap-departments_nav #mega-menu-departments_nav > li.mega-menu-megamenu > ul.mega-sub-menu {
       width: calc(710px + (1380 - 710) * ((100vw - 768px) / (1400 - 768)) ) !important;
    }

}

@media (max-width: 1350px){
    /* Archive Product
    --------------------------------------------- */
	/* Section Secondary Section Primary
    --------------------------------------------- */
	.widget-area {
		width: 30% !important;		
	}
	.content-area {
		width: 70% !important;
	}	
}	

@media (max-width: 1300px){        
    /* Section Product Category
    --------------------------------------------- */
    .product-category_wrapper {
        grid-template-columns: repeat(4, 1fr) !important;
    }

    /* Slider
    --------------------------------------------- */
    .main-item {
        height: 40vw;
    }
    .main-item .main-item_content_wrapper {
        padding: calc(5px + (30 - 5) * ((100vw - 320px) / (1300 - 320))) calc(7px + (40 - 7) * ((100vw - 320px) / (1300 - 320)));
    }    
    
    /* Section Fuerda
    --------------------------------------------- */
    .dealer_wrapper .content-wrapper h3 {
        font-size: calc(17px + (28 - 17) * ((100vw - 320px) / (1300 - 320)));        
    }
    .dealer_wrapper .content-wrapper h3 span {        
        font-size: 33px;
        font-size: calc(19px + (33 - 19) * ((100vw - 320px) / (1300 - 320))); 
    }

    .dealer_wrapper .content-wrapper p, .dealer_wrapper .content-wrapper .dealer {
        margin-top: 5px;
        line-height: 1.3em;
        font-size: calc(16px + (24 - 16) * ((100vw - 320px) / (1300 - 320)));
    }

    /* Section Precitool
    --------------------------------------------- */
    .section-precitool .dealer_wrapper .content-wrapper p, .section-precitool .dealer_wrapper .content-wrapper .dealer {
        margin-top: 5px;
        line-height: 1.3em;
        font-size: calc(16px + (24 - 16) * ((100vw - 320px) / (1300 - 320)));
    }

	/* Archive Product
    --------------------------------------------- */
	/* Section Category List
    --------------------------------------------- */
	.tool_product_category_wrapper, .product-cats {
		grid-template-columns: repeat(3,1fr) !important;
	}
}

@media (max-width: 1250px){
    /* Archive Product
    --------------------------------------------- */
	/* Section Secondary Section Primary
    --------------------------------------------- */
	.widget-area {
		width: 35% !important;		
	}
	.content-area {
		width: 65% !important;
	}

}


@media (max-width: 1100px){
	/* Archive Product
    --------------------------------------------- */
	/* Section Secondary Section Primary
    --------------------------------------------- */
	.widget-area {
		width: 40% !important;		
	}
	.content-area {
		width: 60% !important;
	}

	/* Section Category List
	--------------------------------------------- */
	.tool_product_category_wrapper, .product-cats {
		grid-template-columns: repeat(2,1fr) !important;
	}
    
    /* Content Single Product
	--------------------------------------------- */
    .single-product .arhive-product_wrapper #primary {
        order: 1 !important;
    }

    .single-product .arhive-product_wrapper #secondary {
        order: 2 !important;
    }   
}

@media (max-width: 1050px){
    /* Section Product Category
    --------------------------------------------- */
    .product-category_wrapper {
        grid-template-columns: repeat(3, 1fr) !important;
    }

    /* Slider
    --------------------------------------------- */
    .main-item .main-item_content_wrapper h3 {
        font-size: calc(14px + (30 - 14) * ((100vw - 280px) / (1050 - 280)));         
    }
    .main-item .main-item_content_wrapper p {
        font-size: calc(13px + (25 - 13) * ((100vw - 280px) / (1050 - 280)));
        margin: 5px 0 0 0;        
    }    
    .main-item .main-item_content_wrapper .button-slider {
        margin-top: calc(5px + (20 - 5) * ((100vw - 280px) / (1050 - 320)));
        width: 120px;
        font-size: calc(14px + (22 - 14) * ((100vw - 280px) / (1050 - 280)));
    }

    /* Advantage
    --------------------------------------------- */
    .block-features_list {
        flex-wrap: wrap;
    }
    .block-features-item {       
        width: 35%;
    }

	/* Archive Product
    --------------------------------------------- */
	/* Section Secondary Section Primary
    --------------------------------------------- */
	.arhive-product_wrapper {
		flex-wrap: wrap !important;
	}

	.widget-area {
		width: 100% !important;		
	}
	.content-area {
		width: 100% !important;
	}

	.arhive-product_wrapper .widget-area .widget_recently_viewed_products {
		display: none;
	}    

    /* Content Single Product
	--------------------------------------------- */  
	/* Section Category List
	--------------------------------------------- */
	.tool_product_category_wrapper, .product-cats {
		grid-template-columns: repeat(4,1fr) !important;
	}	
	
	.woocommerce div.product .delivery {
        display: block !important;
    }

    #secondary .delivery {
        display: none;
    }

    /* Page Search
	--------------------------------------------- */
    .search_wrapper {
		flex-wrap: wrap !important;
	}

    .page-search {
        width: 100%;
    }
   
    .search_wrapper .widget-area {
       width: 100%;    
     }
}  

@media (max-width: 950px){   
    /* Header
    --------------------------------------------- */
    /* Search
    --------------------------------------------- */
    .header-search {
        flex-wrap: wrap;
    }
    .header-logo_wrapper {
        order: 1;
    }
    .search__body {
        order: 3;
        width: 100%;
    }
    .header-phone {
        order: 2;
    }
     
    /* Slider
    --------------------------------------------- */
    .slider-main .slick-dots {
        gap: 10px;
        bottom: 10px;       
    }
    .slider-btn {
        padding: 0 7px;        
    }
    
}

@media (max-width: 850px){  
    /* Mega Menu
    --------------------------------------------- */
    #mega-menu-wrap-departments_nav #mega-menu-departments_nav > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link, 
    #mega-menu-wrap-departments_nav #mega-menu-departments_nav > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link {
        font-size: 12px;
    }    
    #mega-menu-wrap-departments_nav #mega-menu-departments_nav > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
        font-size: 15px;
    }
    

    /* Slider Product
    --------------------------------------------- */
    .slider-product_title {
        margin-top: 10px !important;
    }

	/* Section Product Category
    --------------------------------------------- */
    .product-category_wrapper {
        grid-template-columns: repeat(2, 1fr) !important;
    }

	/* Archive Product
    --------------------------------------------- */
	/* Section Category List
	--------------------------------------------- */
	.tool_product_category_wrapper, .product-cats {
		grid-template-columns: repeat(3,1fr) !important;
	}

    /* Page 404
    --------------------------------------------- */
    .error_page_404 ._404 {
        font-size: 150px;
        height: 170px;        
    }

    .error_page_404 ._1 {
        font-size: 1.5em;
    }

    .error_page_404 ._2 {
        font-size: 1.5em;
    }

    .error_page_404 .btn {
        width: 200px;
    }
    
}

@media (max-width: 768px){
    /* HTML
    --------------------------------------------- */
    .scroll-close{
        overflow-y: hidden;
    }

    /* Topbar
    --------------------------------------------- */
    .topbar {
        flex-direction: column-reverse;
        gap: 15px;
    }
    .topbar-menu-list-nav {
        align-items: center;
        gap: 15px;
        font-size: 15px;
    }

    /* Mega Menu
    --------------------------------------------- */
    .departments, #mega-menu-wrap-departments_nav {
        display: none !important;
    }

    #mega-menu-wrap-departments_nav {
        background: rgba(255, 255, 255, 0.5) !important;
    }

    /*Menu Primary Navigation
    --------------------------------------------- */
    .menu-burger {
        display: block;
        order: 3;
    }

    .main-navigation {
        order: 2;
    }

    .header__indicators {
        order: 1;
        justify-content: flex-start;
    }
    
    .menu-primary-navigation-container {    
        position: absolute;
        background-color: var(--color-graphite);
        top: 0;
        right: -320px;
        width: 270px;
        height: 370px;
        z-index: 4;
        transition: all 0.5s ease-in;      
        padding: 55px 0 0 30px;
        font-weight: 500;
        font-size: 16px;
        opacity: 1;
        border-radius: 7px;
        box-shadow: 0px 4px 3px rgba(13, 96, 111, 0.25);                
    }

    .menu-primary-navigation-container.close {    
        right: 0;
    }

    .menu-primary-navigation-container #primary-menu {
        flex-direction: column;
        gap: 25px;
        align-items: flex-start;
        font-size: 20px;
        font-weight: 400;
    }

    .menu-primary-navigation-container #primary-menu li a {
        background: transparent;
        padding: 12px 15px;
        border-radius: 2px;
        color: var(--color-white);
    }    
    
    /* Slider
    --------------------------------------------- */
    .slider-btn {
        display: none;
    }
    .main-item .main-item_content_wrapper {
        top: 5%;
        left: 5%;
        width: 90%;       
    }

    /* Advantage
    --------------------------------------------- */
    .block-features-item {       
        width: 100%;
    }
	
	/* Archive Product
    --------------------------------------------- */
	/* Products Section 
	--------------------------------------------- */
	.products-title {
		display: none;
	}

    .accordion-content {
        padding: 20px 10px !important;
    }
    
    /* Archive Product
    --------------------------------------------- */
	/* Section Secondary Section Primary
    --------------------------------------------- */
    .section-description-category {
        padding: 0px !important;
        margin-bottom: 0px !important;
        border-top: none !important;
        border-bottom: none !important;
    }
    .section-description-category,
    .section-description-category .title,
    .section-description-category .description-category_wrapper p, 
    .section-description-category h2,
    .section-description-category h3,
    .section-description-category h4,
    .section-description-category h5 {
        font-size: 0px !important;
        margin-bottom: 0px !important;
    }

    .description-category_wrapper ul, 
    .description-category_wrapper ol {
        margin: 0px !important;       
    }
    
    /* Content Single Product
	--------------------------------------------- */
    .woocommerce #content div.product div.images, .woocommerce div.product div.images, .woocommerce-page #content div.product div.images, .woocommerce-page div.product div.images {
        max-width: 100% !important;     
    }
}


@media (max-width: 650px){
    /* Slider
    --------------------------------------------- */
    .bgvideo-main-item {
        display: none;
    }      

    /* Footer
    --------------------------------------------- */
    .footer_wrapper {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 20px;
    }

	/* Archive Product
    --------------------------------------------- */
	/* Section Category List
	--------------------------------------------- */
	.tool_product_category_wrapper, .product-cats {
		grid-template-columns: repeat(2,1fr) !important;
	}
}


@media (max-width: 600px){
    /* Content Single Product
	--------------------------------------------- */
    .content-single-product-images-summary_wrapper {
        gap: 10px !important;
        flex-wrap: wrap;
    }

    .content-single-product-images-summary_wrapper .products-images-section {
        width: 100% !important;
    }
    .content-single-product-images-summary_wrapper .summary {
        width: 100% !important;
    }

    /* Page 404
    --------------------------------------------- */
    .error_page_404 ._404 {
        font-size: 100px;
        height: 120px;        
    }

    .error_page_404 ._1 {
        font-size: 1.2em;
    }

    .error_page_404 ._2 {
        font-size: 1.2em;
    }

    .error_page_404 .btn {
        width: 160px;
        font-size: 20px;
    }

    .error_page_404 hr {
        width: 280px;
    }
}

@media (max-width: 550px){
	/* Section Product Category
    --------------------------------------------- */
    .product-category_wrapper {
        grid-template-columns: repeat(1, 1fr) !important;
    }

    /* Archive Product
    --------------------------------------------- */
	/* Products Section 
	--------------------------------------------- */
	.product-table-content {
		display: flex;
		flex-wrap: wrap;
	}
}


@media (max-width: 500px){
    /* Search
    --------------------------------------------- */
    .logo-image img {
        /* height: calc(18px + (21 - 18) * ((100vw - 280px) / (500 - 320))); */
        height: 40px;
    }
        
    .header-phone .header-phone_wrapper .header-messenger_wrapper i {
        font-size: calc(15px + (17 - 15) * ((100vw - 280px) / (500 - 280)));
    }
    .header-search {
        flex-direction: column;
    }

    /* Slider
    --------------------------------------------- */
    .main-item {
        height: 50vw;
    }   

    /* Страница "Контакты"
    --------------------------------------------- */
    .page-contacts .contacts_wrapper {
        padding: 35px 10px 35px 15px;
    }

    /* Page 404
    --------------------------------------------- */
    .error_page_404 ._404 {
        font-size: 70px;
        letter-spacing: 10px;
        height: 90px;        
    }

    .error_page_404 ._1 {
        font-size: 1.1em;
    }

    .error_page_404 ._2 {
        font-size: 1.1em;
    }

    .error_page_404 .btn {
        width: 160px;
        font-size: 20px;
    }

    .error_page_404 hr {
        width: 210px;
    }

    /* Page Search
    --------------------------------------------- */
    .page-search article {
        flex-direction: column;
        gap: 10px;
      }
    .page-search article a img {
        width: 100px;
        margin-bottom: 0;
    }  
    .page-search article .search_wrapper .entry-header h2 {
        font-size: 18px;
    }
    .page-search article .search_wrapper .entry-summary {
        font-size: 14px;
    }

    /* Кнопка Назад
    --------------------------------------------- */
    .up-button {
        bottom: 10px;
        right: 10px;
        width: auto;
        height: 45px;
        padding: 0 15px;
    }

    /* Кнопка Назад
    --------------------------------------------- */
    .back-button {
        bottom: 10px;
        left: 10px;
        width: auto;
        height: 45px;
        padding: 0 15px;
      }
}

@media (max-width: 450px){
    /* Topbar
    --------------------------------------------- */
    .topbar-menu-list-nav {
        flex-direction: column;        
    }    

    /* Slider
    --------------------------------------------- */
    .slider-main .slick-dots li button {
        width: 10px;
        height: 10px;        
    }
    .main-item .main-item_content_wrapper .button-slider {
        padding: 5px 0;
    }
    
    /* Advantage
    --------------------------------------------- */
    .block-features_list {        
        gap: 10px;    
    }
    .block-features-item {
        padding: calc(10px + (30 - 10) * ((100vw - 320px) / (1400 - 320))) calc(10px + (28 - 10) * ((100vw - 320px) / (1400 - 320)));       
    }    
    .block-features-title_wrapper h3 {
        font-size: 15px;
    }    

    .slider-product-category_title_divider {
       display: none;
    }

    .slider-product-category_title, .slider-product_title {
        justify-content: center;
    }

    /* Slider Product
    --------------------------------------------- */
    .slider-product-category_title_arrows_wrapper {
        display: none !important;
    }
    .slider-product-home .slick-track {
        height: 610px;
    }

	/* Archive Product
    --------------------------------------------- */
	/* Section Category List
	--------------------------------------------- */
	.tool_product_category_wrapper, .product-cats {
		grid-template-columns: repeat(1,1fr) !important;
	}

    /* Content Single Product
	--------------------------------------------- */
    /* Products Section 
	--------------------------------------------- */
    table.specifications {
       border-spacing: 0px 0px !important;
    }
    .specifications td {
        width: 0%;
    }
}

@media (max-width: 400px){
    /* Header
    --------------------------------------------- */
    .topbar-bg {
        display: none;
    }

	/* Archive Product
    --------------------------------------------- */
	/* Section Category List Pagination
	--------------------------------------------- */
	.woocommerce nav.woocommerce-pagination ul li a, 
	.woocommerce nav.woocommerce-pagination ul li span {
		margin: 0 10px !important;
	}

    /* Content Single Product
	--------------------------------------------- */
	.woocommerce div.product .product_title {
        font-size: 22px;
    }

    table.specifications {
        font-size: 15px;
    }

    /* Page Search
    --------------------------------------------- */
    .woocommerce nav.woocommerce-pagination ul li a, .woocommerce nav.woocommerce-pagination ul li span, .pagination ul li a, .pagination ul li span {
        margin: 0 10px !important;
        font-size: 16px !important;
    }
    .woocommerce nav.woocommerce-pagination ul li span.current, .pagination ul li span.current {
        font-size: 20px !important;
    }
}

@media (max-width: 350px){
    /* Content Single Product
	--------------------------------------------- */
	table.specifications {
        font-size: 13px;
    }
}

@media (max-width: 320px){
    /* Slider
    --------------------------------------------- */
    .slider-main .slick-dots {
        display: none !important;
    }
}