/** 
*root
*|Typography
*| Heading
*| Text
* Typography
* Colors
* Responsive
*/

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-V.woff2') format('woff2'),
        url('../fonts/Inter-V.woff') format('woff'),
        url('../fonts/Inter-V.ttf') format('truetype');
    font-display: fallback;
}

:root {
    --white: rgba(255, 255, 255, 1);
    --black: rgba(46, 46, 46, 1);
    --black-015: rgba(46, 46, 46, 0.15);

    --blue: rgba(1, 67, 238, 1);
    --blue-light: rgba(231, 236, 251, 1);
    --blue-light-2: rgba(206, 217, 247, 1);
    --blue-light-3: rgba(153, 180, 248, 1);
    --blue-light-4: rgba(103, 142, 245, 1);

    --green: rgba(165, 211, 0, 1);
    --green-light: rgba(207, 230, 125, 1);

    --gray: rgb(249, 249, 249);
    --gray-2: rgb(229, 229, 229);
    --gray-3: rgb(240, 240, 240);
    --gray-4: rgb(88, 88, 88);
    --gray-5: rgb(109, 109, 109);
    --gray-6: rgb(150, 150, 150);

    --error: rgba(253, 0, 0, 1);

    --accordion-btn-icon-arrow-blue: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='10' viewBox='0 0 14 10' fill='none'><path d='M1 3L7 9L13 3' stroke='%230143EE' stroke-width='2' stroke-linecap='square' stroke-linejoin='miter'/></svg>");

    /*Typography*/
    /*Heading*/
    --h1: 40px/1.2 'Inter';
    --h2: 16px/1.2 'Inter';
    --h3: 22px/1.2 'Inter';

    --h1-mobile: 26px/1 'Inter';
    --h1-tablet: 30px/1.2 'Inter';
    --h2-tablet: 20px/1 'Inter';

    /*Text*/
    --text1: 14px/1.2 'Inter';
    --text2: 14px/1.2 'Inter';
    --text3: 16px/1.2 'Inter';
    --text4: 12px/1.2 'Inter';
    --text5: 16px/1.2 'Inter';
    --text6: 18px/1.2 'Inter';

    --descriptor: 10px/1.1 'Inter';
    --price: 24px/1.2 'Inter';
    --mini: 8px/1.2 'Inter';
    --giant: 260px/1 'Inter';
    --giant-mobile: 120px/1 'Inter';
    /*End Typography*/
}

body {
    font: var(--text1);
    color: var(--black);
    background-color: var(--white);
    margin-bottom: 0 !important;
}

/*Typography*/
.h1 {
    font: var(--h1);
    font-weight: 500;
}

.h2 {
    font: var(--h2);
    font-weight: 500;
}

.h3 {
    font: var(--h3);
    font-weight: 500;
}

.h1-tablet{
    font: var(--h1-tablet);
    font-weight: 500;    
}

.h1-tablet-2{
    font: var(--h1-tablet);
    font-weight: 500;    
}
.single-blog-page h2{
    font: var(--text6);
    font-weight: 500;
}
.single-blog-page h3{
    font: var(--text2);
    font-weight: 500;
}

.h1,
.h2,
.h3,
.h1-tablet, 
.h1-tablet-2 {
    margin-bottom: 0;
}

.text-1 {
    font: var(--text1);
}

.text-1-strong {
    font: var(--text1) !important;
}

.text-2 {
    font: var(--text2);
    font-weight: 500;
}

.text-3 {
    font: var(--text3);
}

.text-3-strong {
    font: var(--text3) !important;
}

.text-4 {
    font: var(--text4);
}

.text-5 {
    font: var(--text5);
}

.text-5-strong {
    font: var(--text5) !important;
}

.text-6 {
    font: var(--text6);
}

.text-6-strong {
    font: var(--text6) !important;
}

.descriptor {
    font: var(--descriptor);   
}

.price {
    font: var(--price);  
}

.giant {
    font: var(--giant);
}

.t-300{
    font-weight: 300 !important;
}

.t-400{
    font-weight: 400 !important;
}

.t-500{
    font-weight: 500 !important;
}

.t-600{
    font-weight: 600 !important;
}
/*End Typography*/

/*Colors*/
.white {
    color: var(--white);
}

.black {
    color: var(--black);
}

.blue {
    color: var(--blue)!important;
}

.blue-light {
    color: var(--blue-light);
}

.blue-light-2 {
    color: var(--blue-light-2);
}

.blue-light-3 {
    color: var(--blue-light-3);
}

.blue-light-4 {
    color: var(--blue-light-4);
}

.green {
    color: var(--green);
}

.green-light {
    color: var(--green-light);
}
.green-light-bg{
    background-color: var(--green-light);
}
.gray {
    color: var(--gray);
}
.gray-bg{
    background-color: var(--gray);
}
.gray-2 {
    color: var(--gray-2);
}

.gray-3 {
    color: var(--gray-3);
}

.gray-4 {
    color: var(--gray-4);
}
.gray-4-bg{
    background-color: var(--gray-4);
}
.gray-5 {
    color: var(--gray-5);
}

.gray-6 {
    color: var(--gray-6);
}

.blue-bg {
    background-color: var(--blue);
}

.blue-light-bg {
    background-color: var(--blue-light);
}

.gray-bg {
    background-color: var(--gray);
}

.gray-3-bg {
    background-color: var(--gray-3);
}

.white-bg {
    background-color: var(--white);
}

.hover-blue:hover{
    color: var(--blue);
}

.hover-black:hover{
    color: var(--black)!important;
}

.hover-white:hover{
    color: var(--white)!important;
}
/*End Colors*/

/*Borders*/
.br-blue-light{
    border: 1px solid var(--blue-light);
}

.br-gray-2{
    border: 1px solid var(--gray-2);
}
/*End Borders*/

/*Links*/
a, .nav-link{
    color: var(--black);
    text-decoration: none;
    -webkit-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease
}

a:hover, 
.nav-link:focus, 
.nav-link:hover,
.nav-link:active,
.navbar-nav .nav-link.active{
    color: var(--gray-5);
}

a:visited,
a:active {
    color: inherit;
    text-decoration: none;
}


/*End Links*/

/*Buttons*/
.primary, input[type="submit"].primary, .woocommerce a.primary {
    background-color: var(--green);
    color: var(--black);
    font: var(--text2);
    font-weight: 500;
    border: 1px solid var(--green);
    -webkit-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
    text-align: center;
    padding: .6rem 1rem;
    border-radius: 0;
}

input[type="submit"].primary{
    font: var(--h2);
    font-weight: 500;
}

.primary:hover, input[type="submit"].primary:hover, .woocommerce a.primary:hover{
    background-color: var(--green-light);
    color: var(--black);
    border-color: var(--green-light);
}

.secondary{
    background-color: transparent;
    border: 1px solid var(--green);
    color: var(--black);
    font: var(--text2);
    font-weight: 500;
    -webkit-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
    padding: .6rem 0;
    text-align: center;
}

.secondary:hover{
    background-color: var(--green);
    color: var(--black);
    border-color: var(--green);
}

.tertiary{
    background-color: transparent;
    border: 1px solid var(--blue);
    color: var(--black);
    font: var(--text2);
    font-weight: 500;
    -webkit-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
    padding: .6rem 0;
    text-align: center;
}

.tertiary:hover{
    background-color: var(--blue);
    color: var(--white);
    border-color: var(--blue);
}

input[type="radio"] {
    accent-color: var(--black);
}

.button-link {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    font: inherit;
    color: inherit;
    cursor: pointer;
    text-decoration: underline;
}

.button-accordion {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    font: inherit;
    color: inherit;
    cursor: pointer;
    text-align: left;
}

.btn-to-main{
    padding: 20px 75px !important;
}

.btn-fixed{
    width: 305px;
    height: 58px;
    padding: 0;
    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;
    font: var(--h2);
    font-weight: 500;
}

.btn-showmore-instr {
    font: var(--text1) !important;
    font-weight: 500 !important;
    text-decoration: underline;
}

.btn-showmore-instr:hover{
    color: var(--blue);
}
/*End Buttons*/

/*Custom Icons*/
.tg {
    background-image: url(../img/tg.svg);
    width: 21px;
    height: 19px;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.wa {
    background-image: url(../img/whatsapp.svg);
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.socials [class*="-circle"]{
    width: 40px;
    height: 40px;
    border-radius: 100%;
    background-color: var(--green);
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;   
}

.socials [class*="-circle"]:hover{
    background-color: var(--green-light);
}
/*End Custom Icons*/

/*Dropdown Menu*/
.dropdown .dropdown-menu{
    padding: 0;
    border-radius: 0;
    background-color: var(--gray);
    border: 1px solid var(--gray-2);
}

.dropdown .dropdown-menu .dropdown-submenu{
    top: -1px;
    margin: 0;
    left: 100%;
    width: 275px;
}

.dropdown .dropdown-item{
    padding: 0.5rem;
    font: var(--text1);
    color: var(--gray-4);
    white-space: normal;
}

.dropdown .dropdown-item:hover, 
.dropdown .dropdown-item.active, 
.dropdown .dropdown-item:active,
.dropdown .dropdown-menu .dropdown-toggle.show{
    background-color: var(--green-light);
    color: var(--black);
}

.dropdown .dropdown-menu .dropdown-toggle.show{
    border-right: 0;
}

.bottom-menu .nav-item-17 .dropdown-toggle{
    padding-left:0!important;
}
.bottom-menu .nav-item-99 a{
    padding-right:0!important;
}
.bottom-menu .dropdown:hover>.dropdown-menu {
    display: block;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
  }

.bottom-menu .dropdown>.dropdown-toggle:active {
    pointer-events: none;
}

.dropdown-item.active:hover, .dropdown-item:active:hover{
    color: var(--gray-4);
}

#primary-menu{
    -ms-flex-negative: 0;
        flex-shrink: 0;
}

#primary-menu .dropdown-menu{
    width: 235px;
}

#primary-menu .dropdown-menu .dropdown-submenu{
    width: 275px;
}

#primary-menu .dropdown-item{
    white-space: normal;
}

#primary-menu .dropdown-toggle::after, 
#primary_mobile-menu .dropdown-toggle::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 5px;
  background-image: url(../img/chevron-down.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-left: 5px;
  vertical-align: .2em;
  border: none;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  -o-transition: transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}

#primary-menu > li > .dropdown-toggle.show::after, 
#primary_mobile-menu .dropdown-toggle.show::after {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
}

#primary-menu .dropdown-menu .dropdown-toggle{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

#primary-menu .dropdown-menu .dropdown-toggle::after {
  content: '';
  display: inline-block;
  width: 7px;
  height: 11px;
  background-image: url(../img/chevron-right.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-left: 8px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

#primary-menu .dropdown-menu[data-bs-popper].depth_0 {
    left: 50%;
    transform: translateX(-50%);
}
/*End Dropdown Menu*/

/*General*/
:focus:not(:focus-visible) {
    outline: none;
    color: inherit;
}

[class*="wrapper-block-"] {
    margin-bottom: 100px;
}

.formatted-text ul, .formatted-text ol{
    margin-left: 0;
    padding-left: 19px;
    margin-bottom: 10px;
}

.formatted-text table{
    display: block;
    overflow-x: auto;
}

.formatted-text p {
    margin-bottom: 5px;
}

.formatted-text li {
    margin-bottom: 5px;
}

.formatted-text h2 {
    color: var(--blue);
    font: var(--price);
    font-weight: 500;
    margin-bottom: 10px;
    margin-top: 15px;
}

.formatted-text strong{
    font-weight: 600;
}

.formatted-text .text-5-strong{
    margin-top: 10px;
    margin-bottom: 8px;
}

.formatted-text iframe {
    margin-bottom: 15px;
    margin-top: 10px;
}

.wp-block-gallery.gallery-logo.has-nested-images.is-layout-flex {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; /* плавный скролл на iOS */
    scroll-behavior: smooth;
    padding-bottom: 4px;
    margin-top: 15px;
}

.wp-block-gallery.gallery-logo.has-nested-images figure.wp-block-image {
    flex: 0 0 auto;
    width: 170px !important;
    display: block;
}

.wp-block-gallery.gallery-logo.has-nested-images figure.wp-block-image img {
    height: 90px !important;
    width: 170px !important;
    object-fit: contain !important;
    display: block;
}

.glightbox-container,
.gslide,
.goverlay {
  -ms-touch-action: auto !important;
      touch-action: auto !important;
  pointer-events: auto !important;
}

[type="checkbox"] {
    cursor: pointer;
}
/*End General*/

/*Forms*/
.btn-close{
    opacity: 1;
}

.btn-close:hover, 
.btn-close:focus, 
.btn-close:focus-visible, 
.btn-close:active {
    opacity: 0.7;
    outline: none;
    box-shadow: none;
    -webkit-box-shadow: none;
            box-shadow: none;
}

.wpcf7-form input[type="text"], 
.wpcf7-form input[type="tel"], 
.wpcf7-form input[type="email"] {
    background-color: transparent;
    border: 1px solid var(--blue-light-4);
    color: var(--blue-light-3);
    padding: 20px;
    font: var(--text1);
}

.wpcf7-form input[type="text"]::-webkit-input-placeholder, .wpcf7-form input[type="tel"]::-webkit-input-placeholder, .wpcf7-form input[type="email"]::-webkit-input-placeholder {
    color: var(--blue-light-3);
}

.wpcf7-form input[type="text"]::-moz-placeholder, .wpcf7-form input[type="tel"]::-moz-placeholder, .wpcf7-form input[type="email"]::-moz-placeholder {
    color: var(--blue-light-3);
}

.wpcf7-form input[type="text"]:-ms-input-placeholder, .wpcf7-form input[type="tel"]:-ms-input-placeholder, .wpcf7-form input[type="email"]:-ms-input-placeholder {
    color: var(--blue-light-3);
}

.wpcf7-form input[type="text"]::-ms-input-placeholder, .wpcf7-form input[type="tel"]::-ms-input-placeholder, .wpcf7-form input[type="email"]::-ms-input-placeholder {
    color: var(--blue-light-3);
}

.wpcf7-form input[type="text"]::placeholder,
.wpcf7-form input[type="tel"]::placeholder,
.wpcf7-form input[type="email"]::placeholder {
    color: var(--blue-light-3);
}

.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form input[type="email"]:focus {
    background-color: transparent;
    color: var(--white);
}

.wpcf7-form input:not([type="submit"]):not(:-moz-placeholder-shown):not(:focus) {
    color: var(--white);
}

.wpcf7-form input:not([type="submit"]):not(:-ms-input-placeholder):not(:focus) {
    color: var(--white);
}

.wpcf7-form input:not([type="submit"]):not(:placeholder-shown):not(:focus) {
    color: var(--white);
}

.wpcf7-form input:not([type="checkbox"]){
    height: 58px;
    border-radius: 0;
}

.wpcf7 form .wpcf7-response-output{
    color: var(--white);
    border: none;
    padding: 0 !important;
    margin-left: 0; 
}

.wpcf7-not-valid-tip{
    font: var(--text1);
    color: var(--white);
    margin-top: 3px;
}

.wpcf7-spinner{
    position: absolute;
    bottom: -27px;
    right: 0;
    margin-bottom: .25rem;
    margin-right: .625rem;
    width: 19px;
    height: 19px;
}

.wpcf7-spinner::before{
    top: 3px;
    left: 3px;
    width: 5px;
    height: 5px;
    -webkit-transform-origin: 6.5px 6.5px;
        -ms-transform-origin: 6.5px 6.5px;
            transform-origin: 6.5px 6.5px;
}

.modal-dialog{
    max-width: 590px;
}

.modal-content{
    border-radius: 0;
    border: none;
}

.modal-content .wpcf7-form input[type="text"], 
.modal-content .wpcf7-form input[type="tel"], 
.modal-content .wpcf7-form input[type="email"] {
    border: 1px solid var(--black-015);
    color: var(--black);
}

.modal-content .wpcf7-form input[type="text"]::-webkit-input-placeholder, .modal-content .wpcf7-form input[type="tel"]::-webkit-input-placeholder, .modal-content .wpcf7-form input[type="email"]::-webkit-input-placeholder {
    color: var(--gray-6);
}

.modal-content .wpcf7-form input[type="text"]::-moz-placeholder, .modal-content .wpcf7-form input[type="tel"]::-moz-placeholder, .modal-content .wpcf7-form input[type="email"]::-moz-placeholder {
    color: var(--gray-6);
}

.modal-content .wpcf7-form input[type="text"]:-ms-input-placeholder, .modal-content .wpcf7-form input[type="tel"]:-ms-input-placeholder, .modal-content .wpcf7-form input[type="email"]:-ms-input-placeholder {
    color: var(--gray-6);
}

.modal-content .wpcf7-form input[type="text"]::-ms-input-placeholder, .modal-content .wpcf7-form input[type="tel"]::-ms-input-placeholder, .modal-content .wpcf7-form input[type="email"]::-ms-input-placeholder {
    color: var(--gray-6);
}

.modal-content .wpcf7-form input[type="text"]::placeholder,
.modal-content .wpcf7-form input[type="tel"]::placeholder,
.modal-content .wpcf7-form input[type="email"]::placeholder {
    color: var(--gray-6);
}

.modal-content .wpcf7-form input:not([type="submit"]):not(:-moz-placeholder-shown):not(:focus) {
    color: var(--black);
}

.modal-content .wpcf7-form input:not([type="submit"]):not(:-ms-input-placeholder):not(:focus) {
    color: var(--black);
}

.modal-content .wpcf7-form input:not([type="submit"]):not(:placeholder-shown):not(:focus) {
    color: var(--black);
}

.modal-content .wpcf7 form .wpcf7-response-output{
    color: var(--error);
    margin-bottom: 0;
}

.modal-content .wpcf7-not-valid-tip{
    color: var(--error);
}

.modal .btn-close{
    background-image: url('../img/cross-white.svg') !important;
}

.wpcf7-form .wpcf7-acceptance .wpcf7-list-item{
    margin: 0;
}

.wpcf7-form .wpcf7-acceptance .wpcf7-list-item-label{
    font: var(--descriptor);
    color: var(--blue-light-3);
    margin-left: .25rem;
}

.wpcf7-form .wpcf7-acceptance label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.modal-content .wpcf7-form .wpcf7-acceptance .wpcf7-list-item-label{
    color: var(--gray-6);
}

.modal-content .wpcf7-form .wpcf7-acceptance label{
    align-items: center;
}

.modal .wpcf7-acceptance{
    display: flex;
}

.wpcf7-acceptance input, #agree_terms{
    width: 14px;
    height: 14px;
}

.wpcf7-acceptance a {
    font-weight: 500;
}

.wpcf7-acceptance a:hover{
    opacity: .8;
}

.cta-form .wpcf7-acceptance a{
    color: var(--white);
}

label[for="agree_terms"] {
    cursor: pointer;
}
/*End Forms*/

/*CTA Components*/
.cta-img{
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: bottom;
       object-position: bottom;
}
/*End CTA Components*/

/*Main Page*/
.main-page .wrapper-block-1 {
    margin-bottom: 70px;
}
.square{
    width: 11px;
    height: 11px;
    background-color: var(--blue-light-2);
    position: absolute;
    bottom: -6px;
}
.line{
    position: relative;
    height: 1px;
    border-bottom: 1px solid var(--blue-light-2);
}

.circle{
    width: 10px;
    height: 10px;
    background-color: var(--blue-light-2);
    border-radius: 50%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
}

.gap-11{
    gap: 11rem !important;
}

.order-steps-icon{
    background-repeat: no-repeat;
    background-size: contain;
    width: 35px;
    height: 28px;
}

.order-steps-icon-1{
    background-image: url(../img/cart-fill.svg);
}

.order-steps-icon-2{
    background-image: url(../img/document-fill.svg);
}

.order-steps-icon-3{
    background-image: url(../img/truck-fill.svg);
}

.main-page-category-list .category-main-link{
    font-weight: 600;
    color: var(--white);
}

.wrapper-trademark-logo{
    height: 101px;
}

.trademark-logo {
    max-height: 60px;
    width: auto;
    height: auto;
    max-width: 170px;
}

.corner-frame {
    position: relative;
}

.corner {
    position: absolute;
    width: 26px;
    height: 14px;
    border: 1px solid var(--blue-light);
}

.top-left {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
}

.top-right {
    top: 0;
    right: 0;
    border-left: none;
    border-bottom: none;
}

.bottom-left {
    bottom: 0;
    left: 0;
    border-right: none;
    border-top: none;
}

.bottom-right {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
}

.service-thumb{
    height: 256px;
    width: 205px;
    -o-object-fit: cover;
       object-fit: cover;
}

.accordion-item{
    border: none;
    border-radius: 0;
    border-bottom: 1px solid var(--blue-light);
}

.accordion-item:first-of-type{
    border-top: 1px solid var(--blue-light);
}

.accordion-button:hover,
.accordion-button:focus {
    -webkit-box-shadow: none;
            box-shadow: none;
}

.accordion-button:not(.collapsed),
.accordion-button:not(.collapsed):hover, 
.accordion-button:not(.collapsed):focus {
    background-color: transparent !important;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
}

.accordion-button::after {
    display: none;
}

.accordion-button::after {
    content: "";
    display: inline-block;
    width: 14px;
    height: 10px;
    background-image: var(--accordion-btn-icon-arrow-blue) !important;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    margin-left: auto;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
}

/* Эмуляция классов Bootstrap col-2, col-3, col-9 */
.col-2-emul {
    width: 16.6667%;
}

.col-3-emul {
    width: 25%;
}

.col-9-emul {
    width: 75%;
}

.client-logo-marquee-right .swiper-slide, 
.client-logo-marquee-left .swiper-slide {
    width: auto;
    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;
}

.wrapper-client-logo {
    width: 170px;
    height: 90px;
    border: 1px solid var(--blue-light);
    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;
}

.wrapper-client-logo img {
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
}

.card-service-list{
    min-height: 296px;
}

.link-with-arrow::after {
    content: "";
    display: inline-block;
    background-repeat: no-repeat;
    background-size: contain;
    margin-left: 5px;
    -webkit-transition: background-image 0.3s ease;
    -o-transition: background-image 0.3s ease;
    transition: background-image 0.3s ease;
}

.link-with-arrow.arrow-md::after {
    width: 9.76px;
    height: 9px;
}

.link-with-arrow.arrow-lg::after {
    width: 10.54px;
    height: 10px;
}

.link-with-arrow.white::after {
    background-image: url("../img/arrow-wide-white.svg");
}
/*.link-with-arrow.white:hover::after {
    background-image: url("../img/arrow-wide-black.svg");
}*/

.link-with-arrow.black::after {
    background-image: url("../img/arrow-wide-black.svg");
}
.link-with-arrow.black:hover::after {
    background-image: url("../img/arrow-wide-blue.svg");
}

.link-with-arrow.blue::after {
    background-image: url("../img/arrow-wide-blue.svg");
}
.link-with-arrow.blue:hover::after {
    background-image: url("../img/arrow-wide-black.svg");
}

.card-blog-list {
    min-height: 200px;
}

.card-blog-list img {
    height: 160px;
    -o-object-fit: cover;
       object-fit: cover;
}

.case-gallery-grid {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(265px, 1fr));
    gap: 16px;
}

.case-gallery-grid .gallery-item img {
    width: 100%;
    height: 178px;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
}

/*End Main Page*/
/*About page*/
.page-template-about-company .solution-icon{
    display:flex;
    width:30px;
    height:30px;
}
.page-template-about-company .solution-icon-1{
    background:url("../img/storage-rack-green.svg")no-repeat;
}
.page-template-about-company .solution-icon-2{
    background:url("../img/warehouse-cart.svg")no-repeat;
}
.page-template-about-company .solution-icon-3{
    background:url("../img/certification-green.svg")no-repeat;
}
.page-template-about-company .solution-icon-4{
    background:url("../img/workbench.svg")no-repeat;
}
.page-template-about-company .solution-icon-5{
    background:url("../img/configuration-green.svg")no-repeat;
}
.page-template-about-company .solution-icon-6{
    background:url("../img/checklist-green.svg")no-repeat;
}
.assortment-btn,.readmore-btn{
    border:none!important;
    background:transparent;
    padding:0;
    text-align:start;
}
.assortment-img-wrapper{
    width:207px;
    height:130px;
}
/*End about*/
/*Catalog*/
.benefits-icon {
    background-repeat: no-repeat;
    background-size: contain;
    width: 40px;
    height: 30px;
}

.benefits-icon-1 {
    background-image: url("../img/user-config.svg");
}

.benefits-icon-2 {
    background-image: url("../img/checklist.svg");
}

.benefits-icon-3 {
    background-image: url("../img/configuration.svg");
}

.benefits-icon-4 {
    background-image: url("../img/storage-rack.svg");
}

.benefits-icon-5 {
    background-image: url("../img/certification.svg");
}

.benefits-icon-6 {
    background-image: url("../img/truck.svg");
}
/*End Catalog*/

/*Guarantees*/
.guarantees-icon {
    background-repeat: no-repeat;
    background-size: contain;
    width: 40px;
    height: 30px;
}

.guarantees-icon-1 {
    background-image: url("../img/storage-rack.svg");
}

.guarantees-icon-2 {
    background-image: url("../img/checklist.svg");
}

.guarantees-icon-3 {
    background-image: url("../img/price.svg");
}

.guarantees-icon-4 {
    background-image: url("../img/user-config.svg");
}

.guarantees-icon-5 {
    background-image: url("../img/garanty.svg");
}

.guarantees-icon-6 {
    background-image: url("../img/relations.svg");
}
/*End Guarantees*/

/*Categories Section*/
.product-category-grid .category-card{
    border: 1px solid transparent;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    min-height: 167px;
}

.product-category-grid .category-card:hover{
    border: 1px solid var(--green-light);
}

.product-category-grid .category-card img {
    mix-blend-mode: darken;
    height: 90px;
    width: auto;
    -o-object-fit: scale-down;
       object-fit: scale-down;
    -o-object-position: right bottom;
       object-position: right bottom;
    display: block;
}

.product-category-grid .category-name{
    font: var(--h2);
    font-weight: 500;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    color: var(--black);
}

.product-category-grid .category-icon{
    background-color: var(--green);
    width: 20px;
    height: 20px;
    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;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.product-category-grid .category-card:hover .category-icon{
    background-color: var(--green-light);
}

.product-category-grid .category-icon .arrow {
    background-repeat: no-repeat;
    background-size: contain;
    width: 7px;
    height: 11px;
    background-image: url("../img/chevron-right.svg");
}
/*End Categories Section*/

/*Category Page*/
.category-description {
    width: 70%;
}

.category-extended-features tr {
    border-bottom: 1px solid var(--gray-2);
    vertical-align: bottom;
    color: var(--gray-4);
}

.category-extended-features tr.first-row {
    border-top: 1px solid var(--gray-2);
}

.category-extended-features td {
    vertical-align: bottom;
    padding: 10px 0 5px 0;
}

.category-extended-features .feature-name {
    font: var(--text2);
    font-weight: 500;
    white-space: nowrap;
    padding-right: 10px;
}

.category-extended-features .feature-value {
    text-align: right;
    font: var(--text1);
}

.gallery-block {
    height: 430px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
}

.thumbs-gallery {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    height: 100%;
    overflow: hidden;
}

.thumbs-gallery .swiper-slide {
    width: 75px;
    height: 75px !important;
    margin-bottom: 10px;
    border: 1px solid var(--gray-2);
    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;
    padding: 5px;
}

.thumbs-gallery .swiper-slide:hover{
    cursor: pointer;
    border: 1px solid var(--green-light);
}

.thumbs-gallery .swiper-slide img {
    width: 100%;
    height: 100%;
    display: block;
    -o-object-fit: contain;
       object-fit: contain;
}

.thumbs-gallery .swiper-slide-thumb-active{
    border: 1px solid var(--green-light);
}

.main-gallery{
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    position: relative;
    border: 1px solid var(--gray-2);
    height: 100%;
}

.main-gallery .swiper-slide {
    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;
    height: 100%;
    padding: 22px 58px;
}

.main-gallery .swiper-slide a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-gallery .swiper-slide img {
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    display: block;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    display: none;
}

.gallery-block .swiper-button {
    width: 18px !important;
    height: 18px !important;
    border: 1px solid var(--green);
    background-color: transparent;
    background: url('../img/chevron-right-green.svg') no-repeat center;
    background-size: 6px 10px;
    -webkit-transition: border-color 0.2s;
    -o-transition: border-color 0.2s;
    transition: border-color 0.2s;
}

.gallery-block .swiper-button:disabled, .gallery-block .swiper-button:hover{
    border-color: var(--green-light);
    background-image: url('../img/chevron-right-green-light.svg');
}

.gallery-block .swiper-button-prev {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
    left: 20px;
}

.gallery-block .swiper-button-next {
    right: 20px;
}

.gallery-block .swiper-button-prev:disabled, .swiper-button-prev:hover {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
}

.reviews-slider-controls, .sale-slider-controls {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    gap: 12px;
}

.reviews-slider-controls .swiper-button, 
.sale-slider-controls .swiper-button {
    width: 30px;
    height: 30px;
    border: 1px solid var(--black);
    background: url('../img/chevron-right-black.svg') no-repeat center;
    background-size: 8px 12px;
    -webkit-transition: border-color 0.2s;
    -o-transition: border-color 0.2s;
    transition: border-color 0.2s;
}

.reviews-slider-controls .swiper-button.swiper-button-disabled, 
.sale-slider-controls .swiper-button.swiper-button-disabled {
    border-color: var(--gray-6);
    background-image: url('../img/chevron-right-gray.svg');
    cursor: default;
    pointer-events: none;
}

.reviews-slider-controls .swiper-button:hover, 
.sale-slider-controls .swiper-button:hover {
    border-color: var(--gray-6);
    background-image: url('../img/chevron-right-gray.svg');
}

.reviews-slider-controls .review-btn-prev, 
.sale-slider-controls .sale-btn-prev {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
}

.sale-products-slider .swiper-slide {
    height: auto;
}

.sale-products-slider .swiper-slide .in-slider {
    height: 100%;
}

/*End Category Page*/

/*Products Section*/
.product-grid .product img, 
.related-products .product img, 
.sale-products-slider .product img{
    height: 130px;
    width: auto;
}

.upsell-products .product img{
    height: 200px;
    width: auto;
    mix-blend-mode: darken;
}

.product-grid .woocommerce-loop-product__title, 
.related-products .woocommerce-loop-product__title, 
.upsell-products .woocommerce-loop-product__title, 
.sale-products-slider .woocommerce-loop-product__title {
    font: var(--text5);
    font-weight: 600;
    margin: 0;    
}

.product-grid div.product span.price, 
.related-products div.product span.price, 
.upsell-products div.product span.price, 
.sale-products-slider div.product span.price{
    color: var(--blue);
    font: var(--text5);
    font-weight: 600;
    margin-top: 1rem;
    display: block;
}

.product-grid .added_to_cart, 
.related-products .added_to_cart, 
.upsell-products .added_to_cart, 
.sale-products-slider .added_to_cart {
    display: none !important;
}

.price ins {
    background: none;
}

.product-labels {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 10;
}

.label {
  display: inline-block;
  color: var(--white);
  padding: 7px 7px 7px 0;
  font: var(--text4);
  position: relative;
  height: 30px;
  background: var(--blue);
}

.label::before {
  content: "";
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-right: 15px solid var(--blue);
}

.labels-main{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}

.wrapper-product-labels {
  position: relative;
  display: inline-block;
}

/*End Products Section*/

/*Product Page*/
input.qty-input{
    border: none;
    width: 34px;
    text-align: center;
}

input.qty-input:focus-visible{
    outline: none;
}

.quantity-controls{
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 95px;
}

.quantity-controls .qty-input{
    background-color: transparent;
}

.qty-button{
    font: var(--text6);
    font-weight: 300;
    line-height: .7;
    padding: 0;
}

.product-nav-tabs{
    margin: 0;
    border: none;
}

.product-nav-tabs .nav-item{
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.product-nav-tabs .nav-link{
    width: 100%;
    border: none;
    border-radius: 0;
    background-color: var(--gray);
    padding: 20px 0;
}

.product-nav-tabs .nav-link.active{
    background-color: var(--green);
}

.extra-data-title::before{
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: var(--blue-light-2);
    margin-right: 3px;
}

.doc-download-link {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.doc-download-link::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 19px;
    margin-right: 10px;
    background-image: url('../img/file.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    vertical-align: bottom;
}

.swiper-pagination-bullet-active {
    background: var(--blue);
}
/*End Product Page*/

/*WooCommerce*/
.woocommerce-message{
    padding-left: 0;
    padding-right: 0;
    border-top-color: var(--green);
}

.woocommerce-notices-wrapper:focus-visible, 
.woocommerce-message:focus-visible {
    outline: none;
}

.woocommerce-message::before {
    display: none;
}

.woocommerce-message a.wc-forward {
    display: none !important;
}

.blockUI.blockOverlay{
    background: var(--gray) !important;
}
/*End WooCommerce*/

/*Pagination*/
.pagination-nav{
    padding: 0;
    border: 1px solid var(--black);
    background-color: transparent;
    width: 18px;
    height: 18px;
    background: url('../img/chevron-right-black.svg') no-repeat center;
    background-size: 6px 10px;
    -webkit-transition: border-color 0.2s;
    -o-transition: border-color 0.2s;
    transition: border-color 0.2s;
}

.pagination-nav:disabled, .pagination-nav:hover{
    border-color: var(--gray-6);
    background-image: url('../img/chevron-right-gray.svg');
}

.pagination-prev-btn {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
}

.pagination-prev-btn:disabled, .pagination-prev-btn:hover {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
}

.pagination-number-btn:disabled {
    color: var(--black);
    cursor: default;
}

.pagination-number-btn{
    padding: 0;
    border: none;
    background-color: transparent;
    color: var(--gray-6);
}
/*End Pagination*/
/* Контейнер пагинации */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 20px 0;
}

/* Общие стили для всех элементов пагинации */
.pagination .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s ease;
}

/* Кнопки навигации (предыдущая/следующая) */
.pagination .prev,
.pagination .next {
    width: 18px;
    height: 18px;
    border: 1px solid var(--black);
    background-color: transparent;
    background-size: 6px 10px;
    background-repeat: no-repeat;
    background-position: center;
    transition: border-color 0.2s;
}

/* Следующая страница */
.pagination .next {
    background-image: url('../img/chevron-right-black.svg');
}

/* Предыдущая страница */
.pagination .prev {
    background-image: url('../img/chevron-right-black.svg');
    transform: rotate(180deg);
}

/* Ховер и disabled состояния для кнопок навигации */
.pagination .prev:hover,
.pagination .next:hover,
.pagination .prev:disabled,
.pagination .next:disabled {
    border-color: var(--gray-6);
    background-image: url('../img/chevron-right-gray.svg');
}

/* Предыдущая страница при ховере/disabled */
.pagination .prev:hover,
.pagination .prev:disabled {
    transform: rotate(180deg);
}

/* Номера страниц */
.pagination .page-numbers:not(.prev):not(.next):not(.dots) {
    padding: 0;
    border: none;
    background-color: transparent;
    color: var(--gray-6);
    min-width: 24px;
    height: 24px;
    font-size: 14px;
}

/* Текущая страница */
.pagination .page-numbers.current {
    color: var(--black);
    cursor: default;
}

/* Многоточие */
.pagination .dots {
    color: var(--gray-6);
    cursor: default;
}

/* Состояния для номеров страниц */
.pagination .page-numbers:not(.current):not(.dots):hover {
    color: var(--black);
}
/*End Pagination*/

/*Product Tags*/
.product-tags .tag-link {
    padding: 6px 10px;
    font-weight: 400;
}

.product-tags .tag-hidden.d-none {
    display: none !important;
}

.product-tags .btn-show-all-tags {
    padding: 6px 10px;
}

@-webkit-keyframes fadeInTag {
  from {
    opacity: 0;
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeInTag {
  from {
    opacity: 0;
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.product-tags .fade-in-tag {
  -webkit-animation: fadeInTag 0.7s ease forwards;
          animation: fadeInTag 0.7s ease forwards;
}
/*End Product Tags*/

/*Mini Cart*/
.widget_shopping_cart_content {
    height: 100%;
}

.widget_shopping_cart_content ul.cart_list{
    list-style: none;
    padding-left: 0;
    margin-left: 0;
}

.widget_shopping_cart_content ul.cart_list li img, 
.widget_shopping_cart_content ul.product_list_widget li img {
    float: left;
    width: auto;
    height: 45px;
}

.quantity-controls{
    border: 1px solid var(--gray-2);
    display: inline-block;
    height: 41px;
}

.qty-minus, .qty-plus{
    background: none;
    border: none;
}

input.mini-cart-qty-input{
    border: none;
    width: 34px;
    text-align: center;
}

input.mini-cart-qty-input:focus-visible{
    outline: none;
}

.custom-mini-cart{
    height: 100%;
}

.custom-mini-cart .cart-thumb {
    width: 75px;
    height: 75px;
    border: 1px solid var(--gray-2);
    -ms-flex-negative: 0;
        flex-shrink: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    mix-blend-mode: darken;
}

.custom-mini-cart .cart-item{
    border-bottom: 1px solid var(--gray-2);
}

.custom-mini-cart .cart-item:first-of-type {
    border-top: 1px solid var(--gray-2);
}

.custom-mini-cart a.remove .remove-icon {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-image: url('../img/cross.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.custom-mini-cart a.remove .remove-icon:hover{
    background-image: url('../img/cross-gray.svg');
}

.custom-mini-cart a.remove {
    all: unset;
    cursor: pointer;
    display: inline-block;
    line-height: 1;
}

.custom-mini-cart a.remove:hover {
    background: transparent !important;
    color: inherit !important;
}

.offcanvas-cart .btn-close{
    background-image: url('../img/cross-green.svg') !important;
    background-size: 18px 18px;
}

.offcanvas-cart .btn-close:hover, 
.offcanvas-cart .btn-close:focus, 
.offcanvas-cart .btn-close:active{
    background-image: url('../img/cross-black.svg') !important;
}

.cart-item.loading {
    position: relative;
    opacity: 0.5;
    pointer-events: none;
}

.cart-item.loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 24px;
    margin: -12px 0 0 -12px;
    border: 2px solid #ccc;
    border-top-color: #333;
    border-radius: 50%;
    -webkit-animation: spin 0.6s linear infinite;
            animation: spin 0.6s linear infinite;
    z-index: 10;
}

@-webkit-keyframes spin {
    to { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}

@keyframes spin {
    to { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}

/*End Mini Cart*/

/*Sidebar*/
.sidebar .filter-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

.sidebar .filter-checkbox-category {
    -moz-appearance: none;
         appearance: none;
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    border: 1px solid var(--green);
    border-radius: 2px;
    background-color: white;
    cursor: pointer;
    position: relative;
    vertical-align: middle;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -ms-flex-negative: 0;
        flex-shrink: 0;
}

.sidebar .filter-checkbox-category:checked::before {
    content: "";
    position: absolute;
    left: 3px;
    top: 0px;
    width: 4px;
    height: 8px;
    border: solid var(--gray-4);
    border-width: 0 1px 1px 0;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
}

.sidebar .filter-checkbox-label {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    gap: 0.3rem;
    cursor: pointer;
}

.sidebar .filter-checkbox-label .filter-checkbox-category:checked + span {
    color: var(--black);
}

.sidebar .filter-parameters-box {
    max-width: 225px;
}

.sidebar [class*="filter-input-"] {
    width: 44px;
    height: 18px;
    border: 1px solid var(--gray-2);
    border-radius: 0;
    margin-left: 5px;
    font: var(--text4);
    color: var(--black);
}

.sidebar [class*="filter-input-"]:not(:last-child) {
    margin-right: 10px;
}

.sidebar [class*="filter-input-"]:focus-visible {
    outline: none;
}

.sidebar .dropdown-toggle {
    position: relative;
}

.sidebar .dropdown-toggle::after {
    content: '';
    position: absolute;
    right: 10px;
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(0deg);
        -ms-transform: translateY(-50%) rotate(0deg);
            transform: translateY(-50%) rotate(0deg);
    width: 6px;
    height: 5px;
    background-image: url('../img/chevron-down.svg');
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
    border: none !important;
    -webkit-transition: -webkit-transform 0.2s ease;
    transition: -webkit-transform 0.2s ease;
    -o-transition: transform 0.2s ease;
    transition: transform 0.2s ease;
    transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}

.sidebar .dropdown-toggle.show::after {
    -webkit-transform: translateY(-50%) rotate(180deg);
        -ms-transform: translateY(-50%) rotate(180deg);
            transform: translateY(-50%) rotate(180deg);
}

.sidebar .dropdown-menu {
    top: 100% !important;
    bottom: auto !important;
    -webkit-transform: none !important;
        -ms-transform: none !important;
            transform: none !important;
    border-top: none;
}

.sidebar .dropdown-button {
    background-color: transparent;
    color: var(--gray-4);
    font: var(--text1);
    padding: 0.6em 0.7em 0.4em;
    border: none;
}

.sidebar .dropdown-button.dropdown-toggle {
    border: 1px solid var(--gray-2);
}

.sidebar .dropdown-button.dropdown-toggle.show {
    border-bottom: none;
}

.sidebar .filter-results {
    width: 171px;
}

.sidebar .btn-apply-filters.loading {
    position: relative;
    pointer-events: none;
    opacity: 0.25;
}

.sidebar .btn-apply-filters.loading::after {
    content: "\e01c";
    font-family: WooCommerce;
    position: absolute;
    top: 0.618em;
    right: 1em;
    font-size: 1em;
    -webkit-animation: spin 2s linear infinite;
            animation: spin 2s linear infinite;
}
/*End Sidebar*/

/*Header*/
.header {
    -webkit-transition: top 0.3s ease;
    -o-transition: top 0.3s ease;
    transition: top 0.3s ease;
    z-index: 999;
    width: 100%;
    background-color: var(--white);
}

.cart-icon {
    position: relative;
    display: inline-block;
    text-decoration: none;
    width: 38px;
    height: 38px;
    border-radius: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border: 0.5px solid var(--blue);
    margin-top: 6px;
}

.cart-icon-image {
    background-image: url(../img/basket.svg);
    width: 16px;
    height: 16px;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.cart-count {
    position: absolute;
    left: 60%;
    top: -15%;
    background: var(--green);
    color: white;
    font: var(--descriptor);
    border-radius: 15px;
    line-height: 15px;
    min-width: 15px;
    padding: 0px 5px;
}

.header-menu .navbar-nav .nav-link.active, 
.mobile-menu .navbar-nav .nav-link.active {
    color: var(--black);
}

.spaced-nav{
    margin-right: clamp(48px, 5vw, 110px);
}

.mobile-menu .btn-close {
    background-image: url('../img/cross-black.svg') !important;
}

#offcanvasResponsive .navbar {
    flex: 1 1 auto;
    overflow-y: auto;
    max-height: calc(100vh - 100px);
    align-items: flex-start;
}
/*End Header*/

/*Footer*/
.footer .nav-link, .footer .company-details span{
    padding: 3px 0;
}

.footer-media a{
    width: 130px;
    text-align: center;
    font: var(--text2);
    font-weight: 500;
}

.scroll-to-top-btn {
    width: 30px;
    height: 30px;
    border: 1px solid var(--green);
    background: url(../img/chevron-right-green.svg);
    position: fixed;
    bottom: 40px;
    right: 30px;
    z-index: 999;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background-size: 12px 12px;
    background-color: var(--white);
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
            transform: rotate(-90deg);
    opacity: 0;
}

.scroll-to-top-btn:hover{
    background: url(../img/chevron-right-black.svg);
    -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
            transform: rotate(-90deg);
    background-repeat: no-repeat;
    background-color: var(--green);
    border-color: var(--green);
    background-position: center center;
}

.scroll-to-top-btn.visible {
    opacity: 1;
    pointer-events: auto;
}

.popup {
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    z-index: 1000;
}

.popup.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.popup-close-btn {
    position: absolute;
    top: 50%;
    right: 3rem;
    transform: translateY(-50%);
    width: 21px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    background-image: url('../img/cross-white.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: none;
}

.popup-close-btn:hover {
    opacity: 0.7;
}
/*End Footer*/

/*Breadcrumbs*/
.breadcrumbs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    row-gap: 5px;
}

.breadcrumbs .delimiter {
    display: block;
    background-image: url(../img/arrow-right.svg);
    width: 12px;
    height: 5px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    margin: 0 5px;
}

.breadcrumbs a{
    color: var(--black);
}

.breadcrumbs a:hover{
    color: var(--gray-5);
}
/*End Breadcrumbs*/

/*Checkout Form*/
.custom-checkout-form input[type="text"], 
.custom-checkout-form input[type="tel"], 
.custom-checkout-form input[type="email"] {
    background-color: transparent;
    border: 1px solid var(--blue-light-4);
    color: var(--blue-light-3);
    padding: 20px;
    font: var(--text1);
}

.custom-checkout-form input[type="text"], 
.custom-checkout-form input[type="email"], 
.custom-checkout-form input[type="tel"] {
    border: 1px solid var(--black-015);
    color: var(--black);    
}

.custom-checkout-form input[type="text"]::-webkit-input-placeholder, .custom-checkout-form input[type="tel"]::-webkit-input-placeholder, .custom-checkout-form input[type="email"]::-webkit-input-placeholder {
    color: var(--gray-6);
}

.custom-checkout-form input[type="text"]::-moz-placeholder, .custom-checkout-form input[type="tel"]::-moz-placeholder, .custom-checkout-form input[type="email"]::-moz-placeholder {
    color: var(--gray-6);
}

.custom-checkout-form input[type="text"]:-ms-input-placeholder, .custom-checkout-form input[type="tel"]:-ms-input-placeholder, .custom-checkout-form input[type="email"]:-ms-input-placeholder {
    color: var(--gray-6);
}

.custom-checkout-form input[type="text"]::-ms-input-placeholder, .custom-checkout-form input[type="tel"]::-ms-input-placeholder, .custom-checkout-form input[type="email"]::-ms-input-placeholder {
    color: var(--gray-6);
}

.custom-checkout-form input[type="text"]::placeholder,
.custom-checkout-form input[type="tel"]::placeholder,
.custom-checkout-form input[type="email"]::placeholder {
    color: var(--gray-6);
}

.custom-checkout-form .tab-content{
    font-weight: 500;
}

.custom-checkout-form .checkout-nav-tabs{
    margin: 0;
    border: none;
}

.custom-checkout-form .nav-link{
    width: 100%;
    border: none;
    border-radius: 0;
    border-bottom: 2px solid var(--gray-2);
    font: var(--text3);
    padding-left: 0;
}

.custom-checkout-form .nav-link.active{
    border-bottom: 2px solid var(--green);
    background-color: transparent;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    font-weight: 600;
}

.checkout-review-order-table.shop_table{
    border: none;
}

.checkout-review-order-table .quantity-controls{
    height: 41px;
}

.checkout-review-order-table,
.checkout-review-order-table td,
.checkout-review-order-table th,
.checkout-review-order-table tr {
  border: none !important;
  border-collapse: collapse;
  border-spacing: 0;
}

.checkout-review-order-table {
  border: none;
}

.checkout-review-order-table tr {
  border-bottom: none;
}

.checkout-review-order-table td,
.checkout-review-order-table th {
  border: none;
  padding: 0.5rem 0;
}

.checkout-review-order-table .product-name{
    font: var(--text5);
    font-weight: 600;
}

.woocommerce .checkout-review-order-table.shop_table tfoot th, 
.woocommerce .checkout-review-order-table.shop_table tfoot td {
    font: var(--text6);
    font-weight: 600;
}

.woocommerce-Price-amount{
    font-weight: 600;
}

.custom-checkout-form {
    font: var(--text1);
}
/*End Checkout Form*/

/*Contacts Page*/
.contacts-page [class*="wrapper-block-"] {
    margin-bottom: 70px;
}

.contacts-card {
    min-height: 200px;
}

.contacts-icon{
    background-repeat: no-repeat;
    background-size: contain;
    width: 20px;
    height: 20px;
}

.contacts-icon-1{
    background-image: url(../img/clock.svg);
}

.contacts-icon-2{
    background-image: url(../img/phone-call.svg);
}

.contacts-icon-3{
    background-image: url(../img/mail.svg);
}

.contacts-icon-4{
    background-image: url(../img/group.svg);
}

.map-wrapper {
    height: 326px;
}

.map-wrapper iframe{
    width: 100%;
    border: none;
}
/*End Contacts Page*/

/*Service Page*/
.page-template-page-service .service-card {
    min-height: 250px;
}
.page-template-page-service .service-icon{
    background-repeat: no-repeat;
    background-size: contain;
    width: 40px;
    height: 30px;
    display:flex;
}

.page-template-page-service .service-icon-9634{
    background-image: url(../img/file.svg);
}

.page-template-page-service .service-icon-9633{
    background-image: url(../img/certification-green.svg);
}

.page-template-page-service .service-icon-9632{
    background-image: url(../img/storage-rack-green.svg);
}

.page-template-page-service .service-icon-9631{
    background-image: url(../img/truck-green.svg);
}

.page-template-page-service .service-icon-9630{
    background-image: url(../img/checklist-green.svg);
}

.page-template-page-service .service-contact-icon{
    background-repeat: no-repeat;
    background-size: contain;
    width: 30px;
    height: 30px;
}

.service-contact-icon-1{
    background-image: url(../img/phone-call.svg);
}

.service-contact-icon-2{
    background-image: url(../img/mail.svg);
}

.service-contact-icon-3{
    background-image: url(../img/whatsapp-blue.svg);
}
/*End Service Page*/

/*Payment Page*/
.payment-d-page .formatted-text iframe {
    max-width: none;
    width: 100%;
    display: block;
    margin-left: 0;
    margin-right: 0;
}

.consultation-icon{
    background-repeat: no-repeat;
    background-size: contain;
    width: 30px;
    height: 30px;
}

.consultation-icon-1{
    background-image: url(../img/phone-call.svg);
}

.consultation-icon-2{
    background-image: url(../img/phone-call.svg);
}

.consultation-icon-3{
    background-image: url(../img/mail.svg);
}

/*End Payment Page*/

/*Cases page*/
.cases-category-item:hover{
    cursor: pointer;
}
.cases-category-item:hover .cases-category-title
{
    color: var(--gray-5);
}
.cases-category-item:hover .primary{
    background-color: var(--green-light);
    color: var(--black);
    border-color: var(--green-light);
}
.cases-tags,.blog-tags{
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding-left: 0;
}
.cases-tags a,.blog-tags a,.single-blog-page .blog-tags li{
    padding:5.5px 10px;
    border: 1px solid var(--green);
    display: block;
}
.wp-block-list{
	margin-left:0;
}
.cases-tags .active,.blog-tags .active{
    background: var(--green);
}
.case-item .item-thumb{
    /*width: 360px;*/
    height: 250px;
    display: flex;
}
.case-item .item-thumb img{
    object-fit: cover;
}
.case-item:hover{
    cursor: pointer;
}
/*end cases page*/
/*Blog page*/
    .blog-item:hover{
        cursor: pointer;
    }
/*End blog page*/
/*Blog post*/
.popular-posts{
    border-top:1px solid var(--blue-light-2);
    border-bottom:1px solid var(--blue-light-2);
}
.popular-post:hover{
    cursor: pointer;
}
.popular-post:not(:last-child){
    border-bottom:1px solid var(--blue-light-2);
    padding:16px 0;
}
.popular-post:last-child{
    padding-top:16px;
}
.single-blog-page .popular-post .item-thumb{
    width:170px;
    height: 100px;
    display: flex;
    flex-shrink: 0;
}
.single-blog-page .popular-post .item-thumb img{
    object-fit: cover;
}
/*End blog post*/
/*Responsive*/
@media (min-width:1200px) {
    .w-xl-auto {
        width: auto !important;
    }

    .category-extended-features .feature-name {
        width: 200px;
    }

    .custom-checkout-form .request-buttons > * {
        width: 50%;
    }

    .custom-checkout-form .button-to-cart {
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
    }

    /*main page*/
    .advantages-card:first-child{
        padding-right: 0;
    }

    .advantages-card:last-child{
        padding-left: 0;
    }

    .advantages-card:not(:first-child):not(:last-child){
        padding: 0;
    }

    .col-xl-3-emul {
        width: 25%;
    }

    .col-xl-9-emul {
        width: 75%;
    }
    /*end main page*/

    /*payment page*/
    .payment-d-page .formatted-text > * {
        max-width: 66.6666%; /* примерно col-8 */
    }
    /*end payment page*/
    /*Cases page*/
    .cases-category-item
    {
        padding:30px;
    }
    /*end cases page*/
    /*Blog page*/
    .blog-item-extra{
        max-height: 350px;
    }
    .blog-item-extra img{
        object-fit: cover;
    }
    /*End blog page*/
    .header-container{
        height:113.59px;
    }
}

@media (max-width: 1199px) {
    body {
        font: var(--text4);
    }

    /*typography*/
    .h1,h1.wp-block-heading {
        font: var(--h1-mobile);
        font-weight: 500;
    }
    .text-1{
        font: var(--text4);
    }

    .text-3{
        font: var(--text1);
    }

    .text-5{
        font: var(--text2);
    }

    .text-6{
        font: var(--text5);
    }

    .giant {
        font: var(--giant-mobile);
    }

    .h1-tablet{
        font: var(--h2-tablet);
        font-weight: 500;
    }

    .h1-tablet-2{
        font: var(--h1-mobile);
        font-weight: 500;
    }
    /*end typography*/

    /*colors*/
    .blue-light-bg-mobile {
        background-color: var(--blue-light);
    }
    /*end colors*/

    /*buttons*/
    .btn-fixed{
        width: 100%;
    }
    /*end buttons*/

    /*header & footer*/
    .cart-icon{
        width: 20px;
        height: 20px;
        margin-top: 0;
    }

    .cart-icon-image{
        width: 9px;
        height: 9px;
        background-size: contain;
    }

    .cart-count {
        top: -4px;
        font: var(--mini);
        border-radius: 10px;
        line-height: 10px;
        min-width: 10px;
        padding: 0px 2px;
        text-align: center;
    }

    .burger-menu{
        background-image: url(../img/burger-menu.svg);
        width: 30px;
        height: 18px;
        background-repeat: no-repeat;
        background-position: center;
        -webkit-transition: all .3s ease;
        -o-transition: all .3s ease;
        transition: all .3s ease;
    }

    .navbar-brand img{
        width: 119px;
        height: 16px;
    }

    #primary_mobile-menu > li{
        font: var(--text1);
    }

    #primary_mobile-menu li li a{
        font: var(--text4);
    }

    .mobile-menu .dropdown-menu{
        border: 0;
        padding: 0 0 0 8px;
    }

    .mobile-menu .offcanvas{
        height: 80vh;
        left: auto;
        width: 100%;
    }

    #footer_menu_1 {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    }

    #footer_menu_1 > li:nth-child(odd) {
        padding-right: 12px;
    }

    #footer_menu_1 > li:nth-child(even) {
        padding-left: 12px;
    }

    .popup-close-btn {
        top: 0;
        right: 0;
        transform: none;
        width: 15px;
        height: 15px;
    }
    /*general*/
    [class*="wrapper-block-"], .main-page .wrapper-block-1 {
        margin-bottom: 60px;
    }

    .wp-block-gallery.gallery-logo.has-nested-images.is-layout-flex {
      padding-bottom: 7px;
    }

    .formatted-text h2 {
        font: var(--h3);
        font-weight: 500;
    }
    /*end general*/

    /*main page*/
    .wrapper-trademark-logo{
        height: 77px;
    }
    .trademark-logo {
        max-height: 40px;
        width: auto;
        height: auto;
        max-width: 85px;
    }

    .accordion-header .h3{
        font: var(--text5);
        font-weight: 600;
    }

    .card-service-list{
        min-height: 398px;
    }

    .service-thumb {
        height: 149px;
        width: 100%;
        -o-object-fit: cover;
           object-fit: cover;
    }

    .case-description img {
        width: 100%;
    }
    /*end main page*/

    /*breadcrumbs*/
    .breadcrumbs {
        font: var(--descriptor);
    }
    /*end breadcrumbs*/

    /*contact form*/
    .contact-form .wpcf7-form .wrapper-submit {
        margin-top: 1rem;
    }
    /*end contact form*/

    /*categories section*/
    .product-category-grid .category-card{
        min-height: 156px;
    }

    .product-category-grid .category-name{
        font: var(--text4);
    }

    .product-category-grid img.category-img{
        max-width: 100%;
        height: 86px;
    }
    /*end categories section*/

    /*category page*/
    .category-description {
        width: 100%;
    }

    .gallery-block {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 10px;
    }

    .thumbs-gallery {
        width: 100% !important;
        height: auto;
        max-height: none;
    }

    .thumbs-gallery .swiper-wrapper {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: normal !important;
            -ms-flex-direction: row !important;
                flex-direction: row !important;
    }

    .thumbs-gallery .swiper-slide {
        width: 75px !important;
        height: 75px !important;
        margin-right: 10px;
        margin-bottom: 0;
    }

    .thumbs-gallery .swiper-slide img {
        width: 100%;
        height: 100%;
        -o-object-fit: contain;
           object-fit: contain;
    }

    .main-gallery {
        width: 100%;
    }

    .main-gallery .swiper-slide {
        padding: 22px 48px;
    }

    .swiper-button-prev {
        left: 15px;
    }

    .swiper-button-next {
        right: 15px;
    }

    .category-extended-features .feature-name{
        white-space: normal;
    }

    .reviews-slider-controls, 
    .sale-slider-controls {
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        margin-top: 30px;
    }
    /*end category page*/

    /*products section*/
    .product-grid .woocommerce-loop-product__title, 
    .related-products .woocommerce-loop-product__title, 
    .upsell-products .woocommerce-loop-product__title, 
    .sale-products-slider .woocommerce-loop-product__title{
        font: var(--text2);
        font-weight: 500;
    }

    .upsell-products .product img{
        height: 148px;
    }
    /*end products section*/

    /*product page*/
    .product-add-to-cart{
        -webkit-box-flex: 1;
            -ms-flex-positive: 1;
                flex-grow: 1;
    }

    .doc-download-link {
        line-height: initial;
    }

    .doc-download-link::before {
        margin-right: 6px;
    }
    /*end product page*/

    /*sidebar*/
    .sidebar {
        margin-bottom: 30px;
        font: var(--text1);
    }

    .sidebar .button-accordion:not(.sidebar-title){
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }

    .sidebar .button-accordion:not(.sidebar-title)::after {
        content: '';
        display: inline-block;
        width: 6px;
        height: 5px;
        background-image: url(../img/chevron-down.svg);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        margin-left: 5px;
        vertical-align: .2em;
        border: none;
        -webkit-transition: -webkit-transform 0.2s ease;
        transition: -webkit-transform 0.2s ease;
        -o-transition: transform 0.2s ease;
        transition: transform 0.2s ease;
        transition: transform 0.2s ease, -webkit-transform 0.2s ease;
    }

    .sidebar .button-accordion[aria-expanded="true"]:not(.sidebar-title){
        color: var(--gray-5);
    }

    .sidebar .button-accordion[aria-expanded="true"]:not(.sidebar-title)::after {
        -webkit-transform: rotate(180deg);
            -ms-transform: rotate(180deg);
                transform: rotate(180deg);
    }

    .sidebar .sidebar-title{
        font: var(--text2);
        font-weight: 500;
    }
    .sidebar .sidebar-title::before {
        display: inline-block;
        content: '';
        width: 11px;
        height: 10px;
        background-image: url('../img/filter.svg');
        background-repeat: no-repeat;
        background-size: contain;
        pointer-events: none;
        border: none !important;
        -webkit-transition: -webkit-transform 0.2s ease;
        transition: -webkit-transform 0.2s ease;
        -o-transition: transform 0.2s ease;
        transition: transform 0.2s ease;
        transition: transform 0.2s ease, -webkit-transform 0.2s ease;
        margin-right: .6rem;
    }

    .sidebar .filter-block {
        border-bottom: 1px solid var(--gray-3);
    }
    /*end sidebar*/

    /*woocommerce*/
    .woocommerce-message .button.wc-forward{
        width: 100%;
    }
    /*end woocommerce*/

    /*checkout*/
    .custom-checkout-form .h3 {
        font: var(--text6);
        font-weight: 600;
    }

    .checkout-review-order-table tr {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }

    .checkout-review-order-table td {
        width: 100%;
        display: block;
        padding-left: 0 !important;
    }

    .checkout-review-order-table td.product-total{
        padding-top: 0 !important;
    }
    /*end checkout*/

    /*contacts page*/
    .contacts-page [class*="wrapper-block-"] {
        margin-bottom: 60px;
    }

    .contacts-page [class*="wrapper-block-"]:last-child{
        margin-bottom: 0;
    }
    /*end contacts page*/

    /*payment page*/
    .payment-d-page .formatted-text iframe {
        height: 300px;
    }
    /*end payment page*/
    /*Cases page*/
    .cases-category-item
    {
        padding:20px;
    }
    /*end cases page*/
    /*Blog post*/
    .popular-posts{
        margin-top: 60px;
    }
    /*End blog post*/
    .header-container{
        height:96.78px;
    }
}
/*End Responsive*/

.char_block #table1 tr,.char_block #table1 td{
    border:1px solid var(--black);
    padding:4px 8px;
}