@font-face {
    font-family: "RobotoCondensed";
    src: url("../fonts/RobotoCondensed-Regular.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
}

@font-face {
    font-family: "RobotoCondensed";
    src: url("../fonts/RobotoCondensed-Bold.ttf") format("truetype");
    font-style: normal;
    font-weight: 700;
}


@font-face {
    font-family: "Lato";
    src: url("../fonts/Lato-Black.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
}

@font-face {
    font-family: "Futura";
    src: url("../fonts/FuturaPT-ExtraBold.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
}

@font-face {
    font-family: "FuturaPT";
    src: url("../fonts/FuturaPT-Heavy.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
}

body {
    font-family: 'RobotoCondensed', sans-serif;
    margin: 0;
}

:root {
    /*--orange: #f26825;*/
    --orange: #f2b415;
    --gray: #393a36;
}

body {
    color: var(--gray);
}

a, a:active, a:focus {
    outline: none !important; /* Works in Firefox, Chrome, IE8 and above */
}

*,
.uk-h1, .uk-h2, .uk-h3, .uk-h4, .uk-h5, .uk-h6, .uk-heading-2xlarge, .uk-heading-large, .uk-heading-medium, .uk-heading-small, .uk-heading-xlarge, h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
}


.clear-both {
    clear: both;
}

.w-100 {
    width: 100%;
}

.btn {
    width: 100%;
    max-width: 350px;
    text-transform: uppercase;
    color: #212121;
    font-size: 14px;
    position: relative;
    margin: 0 auto;
    border-radius: 0;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 0.2px;
    background: linear-gradient(45deg, #e95229 5%, #cf4621);
    box-shadow: 2px 2px 5px rgb(0 0 0 / 50%);
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

@media (min-height: 800px) {
    main {
        min-height: 800px;
    }
}


.header-abs {
    background: #fff;
}

.header-abs.uk-active {
    box-shadow: 0 14px 25px rgb(0 0 0 / 16%);
}

.single-product .header-abs {
    box-shadow: 0 0 9px rgb(0 0 0 / 16%);
}

.main-navigation a {
    font-size: 18px;
    color: #1c1c1c;
    font-family: "FuturaPT";
}

.main-navigation a:hover {
    color: inherit;
}

.main-navigation ul {
    justify-content: right;
}

.main-navigation .menu-item > a,
.mobile-offcanvas .menu-item > a {
    padding: 0 30px;
    position: relative;
}

.main-navigation .menu-item > a:before,
.mobile-offcanvas .menu-item > a:before {
    content: '/';
    display: inline-block;
    vertical-align: middle;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    -moz-transition: all .4s ease;
    transition: all .4s ease;
    position: absolute;
    margin-left: -13px;
    top: 50%;
    transform: translateY(-100%);
    color: #e95229;
    font-family: "Futura";
    font-size: 14px;
}

.main-navigation .current-menu-item > a:before,
.main-navigation .menu-item > a:hover:before {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%);
    margin-left: -17px;
    margin-top: 0;
}


#nav-icon2 {
    width: 40px;
    height: 25px;
    position: relative;
    margin: 0 15px 0 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    flex: 0 0 auto;
}

#nav-icon2 {
}

#nav-icon2 span {
    display: block;
    position: absolute;
    height: 5px;
    width: 50%;
    background: #d3531a;
    opacity: 1;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

#nav-icon2 span:nth-child(even) {
    left: 50%;
    border-radius: 0 9px 9px 0;
}

#nav-icon2 span:nth-child(odd) {
    left: 0px;
    border-radius: 9px 0 0 9px;
}

#nav-icon2 span:nth-child(1), #nav-icon2 span:nth-child(2) {
    top: 0px;
}

#nav-icon2 span:nth-child(3), #nav-icon2 span:nth-child(4) {
    top: 10px;
}

#nav-icon2 span:nth-child(5), #nav-icon2 span:nth-child(6) {
    top: 20px;
}

#nav-icon2.open span:nth-child(1), #nav-icon2.open span:nth-child(6) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

#nav-icon2.open span:nth-child(2), #nav-icon2.open span:nth-child(5) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

#nav-icon2.open span:nth-child(1) {
    left: 5px;
    top: 7px;
}

#nav-icon2.open span:nth-child(2) {
    left: calc(50% - 5px);
    top: 7px;
}

#nav-icon2.open span:nth-child(3) {
    left: -50%;
    opacity: 0;
}

#nav-icon2.open span:nth-child(4) {
    left: 100%;
    opacity: 0;
}

#nav-icon2.open span:nth-child(5) {
    left: 5px;
    top: 18px;
}

#nav-icon2.open span:nth-child(6) {
    left: calc(50% - 5px);
    top: 18px;
}


.mobile-offcanvas {
    z-index: 10;
    position: fixed;
    top: 0;
    width: 100%;
    background: #ffff;
    border-top: 1px solid #eee;
    border-bottom: 3px solid #d3531a;
    display: none;
}

.mobile-offcanvas .menu {
    list-style-type: none;
    text-align: center;
    padding: 0;
    margin: 20px 0;
}

.mobile-offcanvas .menu a {
    font-size: 22px;
    color: #1c1c1c;
    font-family: "FuturaPT";
}

.mobile-offcanvas .menu a:hover {
    text-decoration: none;
}

.mobile-offcanvas .menu .menu-item {
    margin: 15px;
}

.header__icon-search {
    background: url("../img/icon-search.png") no-repeat center;
    height: 25px;
    width: 30px;
    background-size: contain;
    display: inline-block;
    margin-right: 15px;
    flex: 0 0 auto;
}

.mobile-offcanvas .current-menu-item > a:before,
.mobile-offcanvas .menu-item > a:hover:before {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%);
    margin-left: -17px;
    margin-top: 0;
}

.active-menu__body {
    position: relative;

}

.active-menu__body:before {
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    position: fixed;
    background: #000000d6;
    z-index: 3;
}

.logo-desktop img {
    max-height: 90px;
    width: auto;
}

.header-woo-info__cart svg {
    flex: 0 0 auto;
}

.header-woo-info__cart .cart-link {
    background: url("../img/icon-cart.svg") no-repeat center;
    background-size: 45px;
    width: 45px;
    height: 45px;
}

.header-woo-info__cart .cart-count > span {
    position: absolute;
    top: 0;
    left: 64%;
    transform: translateX(-50%);
    font-size: 16px;
    font-family: "FuturaPT";
    color: #e53e29;
}

.header-woo-info__cart .cart-text {
    white-space: nowrap;
}

.site-header {
    z-index: 10;
}

.front-page__welcome {
    position: relative;
    background: url("../img/header_bg.jpg") no-repeat center;
    background-size: cover;
    padding: 8% 0;
}

.front-page__welcome:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: url("../img/header_line.png") no-repeat left;
    background-size: contain;

}


.welcome__advantages {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 25%;
    padding: 45px 60px;
    box-shadow: 5px 5px 15px rgb(0 0 0 / 60%);
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.4) 35%, #444);
}


.welcome__body .welcome__title {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    font-family: "FuturaPT";
    text-transform: uppercase;
    font-size: 120px;
    line-height: 100px;
    text-shadow: 3px 3px 8px rgb(0 0 0 / 50%);
}

.welcome__body .welcome__title span.b {
    font-size: 120px;
    line-height: 90px;
    display: block;
    color: #e95229;
}

.welcome__body .welcome__title span.s {
    font-size: 45px;
    line-height: 55px;
    display: block;
    font-family: "FuturaPT";
    text-transform: uppercase;
    color: #fff;
    text-shadow: 3px 3px 8px rgb(0 0 0 / 50%);
}

.welcome__advantages ul {
    margin: 0 0 30px 0;
    padding: 0;
    webkit-padding: 0;
    moz-padding: 0;
    list-style: none;
}

.welcome__advantages ul li {
    display: flex;
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    color: #fff;
    font-family: "FuturaPT";
    text-transform: uppercase;
    padding: 5px 0;
}

.welcome__advantages ul li img {
    max-width: 40px;
}

.welcome__advantages--text {
    margin-left: 10px;
}

.front-page__welcome .welcome__body--bg {
    background: transparent url('../img/steering rack.png') no-repeat;
    background-size: 72%;
    background-position: 20%;
    z-index: 1;

}

.front-page__welcome .welcome__body:after {
    content: "";
    background-color: #313131;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

.welcome__body--bg {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 5px 5px 10px rgb(0 0 0 / 40%);

}

.welcome__btn {
    color: #212121;
    font-weight: 600;
}

.welcome__btn:hover {
    color: #fff;
    text-decoration: none;
}

.welcome__body--block {
    padding: 50px 50px;
    width: 100%;
    z-index: 2;
    box-sizing: border-box;
}


.welcome__body--block {
    position: relative
}

.welcome__body--block:before {
    content: "";
    position: absolute;
    left: 10%;
    top: 0;
    right: 0;
    bottom: 0;
    background: url(../img/header_line.png) no-repeat left;
    display: block;
    background-size: auto;
    background-position: 34% -90%;
    opacity: .4;

}

.title-section:before {
    content: "";
    background: #212121;
    width: 6px;
    height: 100%;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
}

.title-section {
    position: relative;
    font-size: 48px;
    color: #e95229;
    font-family: "FuturaPT";
    line-height: 1;
    text-shadow: 1px 1px 4px rgb(0 0 0 / 50%);
    padding: 10px 25px;
    margin: 0;
    position: relative;
    margin-bottom: 80px;
}

.title-section span {
    color: #212121;
    font-family: inherit;
}


.repair-hydraulic__wrapper {
    padding: 80px 0;
}

.repair-hydraulic__items {
    max-width: 90%;
    margin: auto;
}

.repair-hydraulic__item {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
    padding: 15px 0 40px 0;
}

.repair-hydraulic__item--title {
    color: #212121;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
}

.repair-hydraulic__item--price {
    position: relative;
    color: #e95229;
    font-family: "FuturaPT";
    font-size: 22px;
    text-shadow: 2px 2px 5px rgb(0 0 0 / 40%);
    flex: 0 0 auto;
}

.repair-hydraulic__btn {
    margin-top: 50px;
    font-weight: 600;
}

.repair-hydraulic__btn a {
    color: #212121;
}

.repair-hydraulic__btn a:hover {
    color: #fff;
    text-decoration: none;
}

.experience-counter__wrapper,
.about__wrapper {
    margin: 80px 0;
}

.experience-counter__item--counter {
    font-size: 48px;
    color: #E53E29;
    position: relative;
    font-family: 'FuturaPT';
    line-height: 1;
}

.experience-counter__item--title {
    color: #1c1c1c;
    font-size: 18px;
    font-family: 'FuturaPT';
    position: relative;

}

.experience-counter__item {
    padding: 35px 0;
}

.experience-counter__item--img {
    position: absolute;
    top: 0;
    left: 35px;
}

.experience-counter__item--img img {
    max-height: 83px;
}


.about__sub-title {
    color: #e53e29;
    font-size: 15px;
    font-family: "FuturaPT";
    text-transform: uppercase;
}


.about__title {
    line-height: 1.2;
    font-size: 40px;
    color: #1c1c1c;
    font-family: "FuturaPT";
    margin: 0 0 30px;
}

.about__image img {
    position: relative;
    z-index: 1;
}

.about__image:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 70px;
    bottom: 0;
    border: 4px solid #e53e29;
    display: block;

}

.site-footer {
    background-color: #1C1C1C;
    background-image: url(../img/footer_bg.png);
    background-repeat: repeat;
}

.our-opportunities__wrapper {
    background: #F7F7F7 url("../img/history_03-2.png") no-repeat bottom;
    padding: 80px 0;
}

.our-opportunities__title-section {
    margin-bottom: 30px;
}

.our-opportunities__description-section {
    max-width: 70%;
    font-size: 18px;
    margin-bottom: 30px;
}

.our-opportunities__item {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    overflow: hidden;
    box-shadow: 2px 2px 7px rgb(0 0 0 / 40%);
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.our-opportunities__item--image,
.our-opportunities__item--title {
    width: 50%;
}

.our-opportunities__item--title span {
    display: block;
    color: #e95229;
    font-size: 28px;
    font-family: "FuturaPT";
}

.our-opportunities__item--btn {
    font-weight: 600;
}

.our-opportunities__item--btn:hover {
    color: #fff;
    text-decoration: none;
}

.our-opportunities__item--title {
    font-family: "FuturaPT";
    text-align: right;
    font-size: 22px;
    color: #212121;
    text-transform: uppercase;
    padding: 10px 30px 30px 10px;
    line-height: 26px;
}


.our_clients {
    background: #f7f7f7;
    padding: 50px 0;
}

.our_clients__logo {
    height: 100px;
}

.swiper-slide img {
    display: block;
    width: auto;
    height: 100%;
    object-fit: contain;
}


.equipment__wrapper {
    margin: 80px 0;
    background: transparent url("../img/turbina.jpg") no-repeat left;
    background-size: contain;

}

.equipment__sub-title {
    color: #e53e29;
    font-size: 15px;
    font-family: "FuturaPT";
    text-transform: uppercase;
}

.equipment__title-section {
    line-height: 1.2;
    font-size: 40px;
    color: #1c1c1c;
    font-family: "FuturaPT";
    margin: 0 0 30px;
}

.equipment__video-frame {
    padding: 30px 0;
}

.equipment__video-frame:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 70px;
    bottom: 0;
    border: 4px solid #e53e29;
    display: block;
}


.equipment__video-frame iframe {
    height: 350px;
    width: 90%;
    z-index: 3;
    position: relative;
}


.parts-seals__wrapper {
    margin: 80px 0;
    color: #fff;
}

.parts-seals__body {
    padding: 80px 0;
    position: relative;
}


.parts-seals__wrapper .parts-seals__body:before {
    content: "";
    background-color: #e53e29;
    position: absolute;
    display: block;
    top: 0;
    bottom: 0;
    right: 100%;
    left: -100%;
    z-index: 0;
}

.parts-seals__wrapper .parts-seals__body {
    background-color: #e53e29;
}

.parts-seals__sub-title {
    font-size: 15px;
    font-family: "FuturaPT";
    text-transform: uppercase
}

.parts-seals__title-section {
    line-height: 1.2;
    font-size: 40px;
    font-family: "FuturaPT";
    margin: 0 0 30px;
}

.parts-seals__category {
    list-style-type: none;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 10px;
}

.parts-seals__category a {
    color: #fff;
    font-family: "Lato";
}

.parts-seals__category a:hover {
    color: #1c1c1c;
    text-decoration: none;
}

.parts-seals__img--mobile {
    display: none;
}

.developer__wrapper {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 20px 0;
}

.developer,
.copyright {
    color: #cccccc;
    font-size: 13px;
    font-family: inherit;
}

.developer a {
    color: #E53E29;
}

.footer__contact-info--title,
.footer__working-hours--title {
    font-size: 24px;
    color: #E53E29;
    font-family: "FuturaPT";
    margin-bottom: 10px;
}


.our_clients .title-section {
    font-size: 30px;
    color: #212121;
    text-shadow: none;
    margin-bottom: 40px;
}

.our_clients .title-section:before {
    display: none;
}

.page__header {
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: bottom center;
    background-color: #f2f2f4;
    height: 350px;
    margin-bottom: 40px;
    padding-top: 80px;
    padding-bottom: 80px;
}

.page__header--contact {
    background-image: url("../img/contacts_page-title.jpg");

}

.page__header--seals-parts {
    background-image: url("../img/shutterstock_1817856320.jpg");
}

.page__header--product {
    background-image: url("../img/product.jpg");
}

.page__header--product .page__header--block {
    display: block;
    text-align: center;
}

.page__header--product .page__header--breadcrumbs {
    display: flex;
    justify-content: center;
}

.page__header--title {
    color: #ffffff;
    font-size: 56px;
    line-height: 56px;
}


.page__header--breadcrumbs .fbc-page .fbc-wrap .fbc-items {
    background-color: transparent;
    text-transform: uppercase;

}

.page__header--breadcrumbs .fbc-page .fbc-wrap .fbc-items .active span {
    color: #fff;
}

.page__header--breadcrumbs .fbc-page .fbc-wrap .fbc-items span,
.page__header--breadcrumbs .fbc-page .fbc-wrap .fbc-items li a {
    font-family: "FuturaPT";
}

.page__header--breadcrumbs .fbc-page .fbc-wrap .fbc-items li a {
    color: #dbdbdb;
    opacity: .8;
}

.page-contact__form--sub-title {
    font-family: "FuturaPT";
    color: #e53e29;
    text-transform: uppercase;
}

.page-contact__form--title {
    font-family: "FuturaPT";
    font-size: 42px;
    color: #1c1c1c;
    margin: 0 0 30px 0;
}

.page-contact__form--block {
    margin: 0 0 80px 0;
}

.page-contact__form--block form {
    max-width: 800px;
    margin: auto;
    box-sizing: border-box;
}

.page-contact__info--block {
    padding: 40px 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: .5s ease-in-out;
}

.page-contact__info--block:hover {
    transform: translateY(-20px);
}


.page-contact__info--block-1 {
    background: #fff;
    box-shadow: 2px 2px 7px rgb(0 0 0 / 40%);
}

.page-contact__info--block-1 .page-contact__info--value a {
    color: #1c1c1c;
}

.page-contact__info--block-2 {
    background-color: #F4F4F4;
}

.page-contact__info--block-3 {
    background-color: #1C1C1C;
    background-image: url(../img/footer_bg.png);
    background-repeat: repeat;
}

.page-contact__info--block-4 {
    background-color: #E53E29;
    background-image: url(../img/info-box.png);
    background-position: top right;
    background-repeat: no-repeat;
}

.page-contact__info--count {
    font-size: 132px;
    position: absolute;
    top: -20px;
    left: -20px;
    line-height: 1;
    font-family: "Lato";
    opacity: 0.6;
}

.page-contact__info--block--wrapper {
    margin: 0 0 50px 0;
}

.page-contact__info--block-4 .page-contact__info--count {
    color: #EF604E;
}

.page-contact__info--block-3 .page-contact__info--count {
    color: rgba(73, 73, 73, 0.64)
}

.page-contact__info--block-2 .page-contact__info--count {
    color: #E8E7E7
}

.page-contact__info--block img {
    height: 35px;
    width: auto;
}

.page-contact__info--title {
    font-size: 24px;
    color: #FFFFFF;
    font-family: "FuturaPT";
    z-index: 2;
    position: relative;
    margin-bottom: 20px;
    line-height: 1.3;
}

.page-contact__info--block-1 .page-contact__info--title,
.page-contact__info--block-2 .page-contact__info--title,
.page-contact__info--block-2 .page-contact__info--value a,
.page-contact__info--block-2 .page-contact__info--value a:hover,
.page-contact__info--block-1 .page-contact__info--value a,
.page-contact__info--block-1 .page-contact__info--value a:hover {
    color: #1c1c1c;
}

.page-contact__info--block .page-contact__info--value a:hover {
    text-decoration: none;
}

.page-contact__info--value a {
    color: #fff;
    font-size: 15px;
    text-align: center;
    display: inline-block;
}

.page-contact__info--value a:hover {
    color: #fff;
}


.page-contact__info--block-1 .page-contact__info--value ul,
.page-contact__info--block-2 .page-contact__info--value ul {
    list-style-type: none;
    margin: 0;
    padding-left: 0;
}

.page-contact__info--block-1 .page-contact__info--value ul li,
.page-contact__info--block-2 .page-contact__info--value ul li {
    margin-left: 15px;
    padding-left: 10px;
    position: relative;
}

.page-contact__info--block-1 .page-contact__info--value ul li:before,
.page-contact__info--block-2 .page-contact__info--value ul li:before {
    content: "";
    background-color: #e53e29;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    display: inline-block;
}

.seals-parts__item {

    margin-bottom: 80px;
}

.seals-parts__item--subtitle {
    color: #e53e29;
    font-size: 15px;
    font-family: "FuturaPT";
    text-transform: uppercase;
}

.seals-parts__item--title {
    line-height: 1.2;
    font-size: 40px;
    color: #1c1c1c;
    font-family: "FuturaPT";
    margin: 0 0 30px;
}

.seals-parts__item .uk-accordion-title {
    display: inline-block;
    position: relative;
    padding-left: 30px;
}

.seals-parts__accordion {
    margin-left: 0;
}

.seals-parts__item .uk-accordion-title::before {
    float: none;
    background-image: none;
    height: 15px;
    width: 2px;
    background-color: #e53e29;
    display: inline-block;
    position: absolute;
    left: -4px;
    top: 50%;
    transform: translateY(-50%);
}

.seals-parts__item .uk-accordion-title::after {
    content: "";
    float: none;
    background-image: none;
    height: 2px;
    width: 15px;
    background-color: #e53e29;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);

}

.seals-parts__item table {
    border-collapse: separate;
    border-spacing: 0 0.5em;
}

.seals-parts__item td {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 20px;
}

.seals-parts__item td:first-child {
    padding-left: 20px;
    padding-right: 0;
}

.seals-parts__item table tbody tr:nth-child(even) {
    background: #f5f5f5;
}

.seals-parts__accordion .uk-open .uk-accordion-title::before {
    opacity: 0;
}

.woocommerce nav.woocommerce-pagination {
    margin-bottom: 30px;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    color: #1c1c1c;
    font-family: "FuturaPT";
    font-size: 20px;
    text-align: center;
}

.woocommerce a.button.loading::after {
    top: 23%;
}

.woocommerce ul.products li.product .add_to_cart_button {
    width: 100%;
    /* "to left" / "to right" - affects initial color */
    background: linear-gradient(to left, #fff 50%, #e53e29 50%) right;
    background-size: 200%;
    transition: .5s ease-in-out;

    text-align: center;
    border: 2px solid #e53e29;
    border-radius: 0;
    color: #e53e29;
    padding: 5px;
    box-sizing: border-box;
}


.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    margin: 0 3% 3% 0;
}

.woocommerce ul.products li.last,
.woocommerce-page ul.products li.last {
    margin-right: 0;
}

.search-page__result .woocommerce ul.products li.product {

    width: calc(25% - 5%);
}


.woocommerce ul.products li.product {
    box-shadow: 0 0px 4px rgb(0 0 0 / 40%);
    padding: 15px;
    transition: .3s ease-in-out;
    box-sizing: border-box;
}


.woocommerce ul.products li.product:hover {
    box-shadow: 0 0 1.5px rgb(0 0 0 / 40%);
}

.woocommerce ul.products li.product .price {
    color: #e53e29;
    font-size: 18px;
    text-align: center;
    font-family: "FuturaPT";
    margin-bottom: 0;
}

.woocommerce ul.products li.product:hover .add_to_cart_button {
    background-position: left;
}

.woocommerce ul.products li.product:hover .add_to_cart_button {
    color: #fff;
}

@keyframes text_cart_button {


}


.woocommerce ul.products li.product .price ins {
    color: #e53e29;
}

.woocommerce.single div.product .woocommerce-product-gallery .flex-viewport {
    border: 2px solid #e1e1e1;
}

main .single-product {
    padding: 40px 0;
}

.woocommerce.single div.product .woocommerce-product-gallery .flex-control-thumbs {
    margin-top: 10px;
    margin-right: -10px;
    overflow: visible !important;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.woocommerce.single div.product .woocommerce-product-gallery .flex-control-thumbs img {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    opacity: 1;
    -webkit-transition: 0.45s;
    -o-transition: 0.45s;
    -moz-transition: 0.45s;
    transition: 0.45s;
    border: 2px solid #e1e1e1;
}

.woocommerce.single div.product .woocommerce-product-gallery .flex-control-thumbs li {
    float: left;
    width: 80px;
    padding-right: 10px;
    padding-bottom: 10px;
    list-style: none;
    overflow: visible;
    cursor: pointer;
}

.woocommerce.single div.product .woocommerce-product-gallery .flex-control-thumbs img.flex-active {
    border-color: #e53e29;
}

.woocommerce ul.products li.product .price * {
    font-family: "FuturaPT";
}

.woocommerce-Price-currencySymbol {
    margin-left: 5px;
}

.woocommerce div.product div.summary {
    width: calc(50% - 70px);
}

.woocommerce.single div.product div.summary .product_meta {
    margin-top: 33px;
    border-top: 1px solid #e1e1e1;
    border-bottom: 1px solid #e1e1e1;
    padding-top: 29px;
    padding-bottom: 27px;
}

.woocommerce.single div.product div.summary .price {
    margin-top: 10px;
    margin-bottom: 14px;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.5;
    color: #e53e29;
    display: flex;
    align-items: center;
}

.woocommerce ul.products li.product .price del {
    font-size: 15px;
    color: #a5a5a5;
}

.woocommerce-loop-product__image {
    height: 145px;
    margin-bottom: 15px;
}

.woocommerce ul.products li.product a img {
    width: 100%;
    height: 100%;
    object-fit: contain;

    object-position: center;
}

.woocommerce .woocommerce-ordering {
    position: relative;
}

.woocommerce ul.products li.product .onsale {
    background: #000000;
    color: #fff;
    border-radius: 0;
    padding: 8px 25px;
    font-size: 13px;
    line-height: 1;

    height: auto;
    min-height: auto;
    margin: 13px 0;

    z-index: 2;

}


.woocommerce .woocommerce-ordering:before {

    content: '';
    position: absolute;
    z-index: 0;
    right: 22px;
    top: 21px;
    line-height: 45px;
    pointer-events: none;
    border: solid black;
    border-width: 0 1px 1px 0;
    display: inline-block;
    font-size: 4px;
    padding: 1em;
    height: 1em;
    width: 1em;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.woocommerce .woocommerce-ordering select {
    display: block;
    float: right;
    width: 270px;
    max-width: 100%;
    margin: unset;
    border: 1px solid #d6d6d6;
    outline: unset;
    padding: 0 35px 0 20px;
    -webkit-border-radius: unset;
    -moz-border-radius: unset;
    border-radius: unset;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 400;
    background: #ffffff;
    -webkit-appearance: none;
    -moz-appearance: none;
    height: 56px;
    cursor: pointer;
}

.woocommerce.single div.product .product_title {
    margin-top: -4px;
    margin-bottom: 17px;
    font-size: 38px;
    line-height: 1;
    text-transform: capitalize;
    font-family: "FuturaPT";
}

.woocommerce .woocommerce-pagination ul.page-numbers, .woocommerce-page .woocommerce-pagination ul.page-numbers {
    border: unset;
    margin: unset;
}

.woocommerce .woocommerce-pagination ul.page-numbers li,
.woocommerce-page .woocommerce-pagination ul.page-numbers li {
    border: unset;
    display: inline-block;
    margin: 0 5px;
    padding: 0;
    line-height: 38px;
}

.woocommerce .woocommerce-pagination ul.page-numbers li a,
.woocommerce .woocommerce-pagination ul.page-numbers li span,
.woocommerce-page .woocommerce-pagination ul.page-numbers li a.current,
.woocommerce-page .woocommerce-pagination ul.page-numbers li a.page-numbers:not(.next),
.woocommerce-page .woocommerce-pagination ul.page-numbers li span.current {
    position: relative;
    z-index: 1;
    cursor: default;
    background-color: unset;
    font-family: "FuturaPT";
    color: #0e0e0e;
}

.woocommerce .woocommerce-pagination ul.page-numbers li a:before,
.woocommerce .woocommerce-pagination ul.page-numbers li span:before,
.woocommerce-page .woocommerce-pagination ul.page-numbers li a:before,
.woocommerce-page .woocommerce-pagination ul.page-numbers li span:before,
.woocommerce .woocommerce-pagination ul.page-numbers li a:after,
.woocommerce .woocommerce-pagination ul.page-numbers li span:after,
.woocommerce-page .woocommerce-pagination ul.page-numbers li a:after,
.woocommerce-page .woocommerce-pagination ul.page-numbers li span:after {
    content: '';
    height: 3px;
    display: inline-block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    -webkit-transition: all .45s;
    -o-transition: all .45s;
    -moz-transition: all .45s;
    transition: all .45s;
    background: #cdcdcd;
}


.woocommerce .woocommerce-pagination ul.page-numbers li span.current:before,
.woocommerce-page .woocommerce-pagination ul.page-numbers li span.current:before {
    background-color: #e53e29;
    z-index: 1;
}

.woocommerce-page .woocommerce-pagination ul.page-numbers li span:after,
.woocommerce-page .woocommerce-pagination ul.page-numbers li a:after {
    width: 0%;
    transition: 1s ease-in-out;
}


.woocommerce-page .woocommerce-pagination ul.page-numbers li a:hover:after {
    background-color: #e53e29;
    z-index: 1;
    width: 100%;

}

.woocommerce .woocommerce-pagination ul.page-numbers li a:hover {
    cursor: pointer !important;
}

.woocommerce .woocommerce-pagination ul.page-numbers li:first-child,
.woocommerce-page .woocommerce-pagination ul.page-numbers li:first-child {
    margin-left: 0;
}

.woocommerce .woocommerce-pagination ul.page-numbers li:last-child a:before,
.woocommerce-page .woocommerce-pagination ul.page-numbers li:last-child a:before,
.woocommerce .woocommerce-pagination ul.page-numbers li:last-child a:after,
.woocommerce-page .woocommerce-pagination ul.page-numbers li:last-child a:after,
.woocommerce .woocommerce-pagination ul.page-numbers li:first-child a:before,
.woocommerce-page .woocommerce-pagination ul.page-numbers li:first-child a:before,
.woocommerce .woocommerce-pagination ul.page-numbers li:first-child a:after,
.woocommerce-page .woocommerce-pagination ul.page-numbers li:first-child a:after {
    content: none !important;
}

.woocommerce .woocommerce-pagination ul.page-numbers .prev,
.woocommerce-page .woocommerce-pagination ul.page-numbers .next {
    background: #fff !important;
}

.woocommerce-result-count {
    font-size: 15px;
}

.woocommerce ul.products li.product .added_to_cart {
    display: none;
}

.woocommerce-ordering + ul.products {
    position: relative;
    padding-top: 30px;
}

.woocommerce-ordering + ul.products:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 8px;
    top: 0;
    display: block;
    background-color: #2A2A2A;
}

.woocommerce-cart-form .shop_table thead th {
    padding: 0 0 10px 0;
    font-size: 14px;
    line-height: 160%;
    text-transform: uppercase;
    border-bottom: 5px solid;
}

.woocommerce table.shop_table {
    border: none;
    margin: 0;
}

.woocommerce table tbody tr td,
.woocommerce table tbody tr th {
    padding: 15px 30px;
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.woocommerce-cart-form .shop_table thead {
    background: none;
}

.woocommerce-cart-form {
    float: left;
    width: 60%;
    padding-right: 40px;
    padding-bottom: 0;
    border-right: 1px solid #eee;
    margin: 0 0 20px 0;
}

.woocommerce-cart-form .shop_table .quantity input.qty {
    padding: 6px 10px 6px 15px;
    width: 60px;
    text-align: center;
}

.woocommerce-checkout #order_review_heading {
    background: #e53e29;
    text-align: center;
    color: #fff;
    padding: 15px;
    margin-bottom: 0;
}

.woocommerce-checkout .woocommerce-checkout #customer_details {
    float: left;
    width: 60%;
    padding-right: 60px;
    padding-bottom: 0;
    margin-bottom: 0;
}

.woocommerce-checkout .woocommerce-checkout .checkout__total-block {
    float: right;
    width: 35%;
}

.woocommerce-checkout .woocommerce-checkout .woocommerce-checkout-review-order {
    background: #ffffff;
    padding: 20px 40px 40px;
    display: inline-block;
    box-shadow: 0 5px 45px rgb(0 0 0 / 10%);
}


input:not([type="submit"]):not([type="button"]):not([type="checkbox"]):not([type="radio"]),
.wpcf7-form textarea, select {
    background: rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0);
}

.wpcf7-form textarea,
input:not([type="submit"]):not([type="button"]):not([type="checkbox"]):not([type="radio"]) {
    position: relative;
    max-width: 100%;
    box-sizing: border-box;
    font-size: 14px;
    line-height: 18px;
    padding: 15px 20px;
    font-family: inherit;
    font-weight: inherit;
}


.woocommerce-cart-form .shop_table tr:last-child td {
    border: none;
}

.woocommerce .cart-collaterals {
    float: left;
    width: 40%;
    padding-left: 40px;
}

.woocommerce .cart-collaterals .cart_totals, .woocommerce-page .cart-collaterals .cart_totals {
    float: none;
    width: 100%;
}

.woocommerce-cart-form__cart-item .product-price,
.woocommerce-cart-form__cart-item .product-subtotal,
.woocommerce-cart-form__cart-item .product-name {
    font-size: 14px;

}

.woocommerce-cart-form__cart-item .product-name a {
    color: #2a2a2a;
    font-weight: 600;
}

.woocommerce-cart-form .shop_table tr:last-child td {
    padding: 20px 0 0 0;
}

.cart-collaterals .cart_totals .wc-proceed-to-checkout .button {
    display: block;
    text-align: center;
    background-color: #2A2A2A;
    font-size: 15px;
    padding: 0.7rem;
}

.woocommerce-cart-form .shop_table .actions .coupon #coupon_code {
    padding: 15px 20px;
}

.woocommerce-cart-form .shop_table .actions .coupon .button {
    padding: 10px 20px;
    position: absolute;
    font-size: 14px;
    color: inherit;
    background: transparent;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    visibility: hidden;
    width: auto;
    margin: 0;
    box-shadow: none;
    opacity: 0;
}

.woocommerce-cart-form .shop_table .actions .button {
    width: 100%;
    margin-top: 15px;
    box-sizing: border-box;
}

input[type="submit"]:disabled, input[type="button"]:disabled, button:disabled, .button:not([class*="product_type_"]):disabled {
    background-color: #eee;
    box-shadow: none;
}


.cart-collaterals .cart_totals > h2 {
    font-size: 14px;
    border-bottom: 5px solid;
    font-weight: 500;
    line-height: 160%;
    text-transform: uppercase;
    padding: 0 0 10px 0;
    margin: 0 0 20px 0;
}

.woocommerce-cart-form .shop_table .actions .coupon {
    border: 1px dashed;
    padding: 0;
    position: relative;
    width: 100%;
}

.woocommerce-cart-form .shop_table .actions .coupon input[type="text"] {
    width: 100%;
    padding-left: 20px;
    padding-right: 0;
    border: none;
}

.woocommerce-billing-fields__field-wrapper .select2-container .select2-selection--single,
.shipping_address .select2-container .select2-selection--single{
    height: 50px;
}

.woocommerce-billing-fields__field-wrapper .select2-container--default .select2-selection--single .select2-selection__rendered,
.shipping_address .select2-container--default .select2-selection--single .select2-selection__rendered{
    line-height: 48px;
}

.woocommerce-billing-fields__field-wrapper .select2-container--default .select2-selection--single .select2-selection__arrow,
.shipping_address   .select2-container--default .select2-selection--single .select2-selection__arrow{
    height: auto;

    top: 50%;

    transform: translateY(-50%);
}

main .woocommerce-checkout .uk-container {
    margin-bottom: 50px;
}

#add_payment_method table.cart img,
.woocommerce-cart table.cart img,
.woocommerce-checkout table.cart img {
    width: 60px;
}

.woocommerce table.shop_table thead tr {
    text-align: center;
}

.woocommerce-cart-form .shop_table .actions .coupon input[type="text"]:focus + .button {
    visibility: visible;
    opacity: 1;
}

.woocommerce-checkout #customer_details .col-1,
.woocommerce-checkout #customer_details .col-2 {
    float: none;
    width: 100%
}

.woocommerce .form-row label {
    font-size: 13px;
    line-height: 16px;
    display: inline-block;
    margin-bottom: 8px;
}


.page__header--woo-cart {
    background-color: transparent;
    height: auto;
    margin-bottom: 0;
    padding-top: 60px;
    padding-bottom: 40px;
}

.page__header--woo-cart .page__header--title {
    color: #e53e29;
    font-family: "Futura";
}

.woocommerce-checkout-review-order-table td {
    font-size: 13px;
    border-bottom: none !important;
}

.woocommerce-checkout-review-order-table th {
    font-size: 15px;
}

.woocommerce-checkout-review-order-table .product-total,
.woocommerce-checkout-review-order-table tfoot td {
    text-align: right;
}

.woocommerce-checkout-review-order-table .product-name,
.woocommerce-checkout-review-order-table tfoot th {
    text-align: left;
}

.woocommerce-cart .header-abs,
.woocommerce-checkout .header-abs {
    box-shadow: 0 14px 25px rgb(0 0 0 / 16%);
}

form.woocommerce-checkout h3,
.woocommerce-checkout .woocommerce-shipping-fields h3 span,
.woocommerce-order-details__title {
    color: #1c1c1c;
    font-family: "FuturaPT";
    position: relative;
    padding-left: 15px;
}

.woocommerce-checkout .woocommerce-shipping-fields h3 span{
    font-size: 15px;
    padding-left: 5px;
}

.woocommerce-additional-fields {
    margin-top: 30px;
}


form.woocommerce-checkout h3:before,
.woocommerce-order-details__title:before {
    content: "/";
    position: absolute;
    color: #e53e29;
    left: 0;
    font-size: 16px;
    top: 50%;
    transform: translateY(-50%);
}

.woocommerce-message, .woocommerce-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    line-height: 1.3;
    gap: 10px;
    margin-bottom: 30px;
}

.woocommerce-form-login-toggle .woocommerce-info,
.woocommerce-form-coupon-toggle .woocommerce-info {
    display: block;
    color: inherit;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    font-size: 15px;
    background: transparent;
    border: none;
}

.woocommerce-form-coupon-toggle .woocommerce-info a {
    color: #e53e29;
}

.woocommerce-error::before, .woocommerce-info::before, .woocommerce-message::before {
    content: none;
}

.woocommerce-form-login-toggle .woocommerce-info a, .woocommerce-form-coupon-toggle .woocommerce-info a {
    font-weight: bold;
}

.woocommerce-form-coupon-toggle {
    margin-bottom: 30px;
}

.woocommerce-privacy-policy-text {
    font-size: 15px;
}

.woocommerce-checkout main .woocommerce,
.woocommerce-cart main .woocommerce {
    margin-bottom: 80px;
}

.woocommerce #payment #place_order, .woocommerce-page #payment #place_order {
    float: none;
    width: 100%;
    background-color: #1c1c1c;
    box-sizing: border-box;
    transition: .3s ease-in-out;
}

.woocommerce-page #payment #place_order:hover,
.cart-collaterals .cart_totals .wc-proceed-to-checkout .button:hover {
    background-color: #bfbfbf;
}

.woocommerce-checkout #payment {
    background: transparent;
}

.product-quantity input[type="number"] {
    padding: 7px 5px !important;
}


.woo-categories__title-section {
    line-height: 1.2;
    font-size: 40px;
    color: #1c1c1c;
    font-family: "FuturaPT";
    margin: 0 0 30px;
    position: relative;
    padding-left: 25px;
}

.woo-categories__title-section:before {
    content: "/";
    position: absolute;
    color: #e53e29;
    left: 0;
    font-size: 30px;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
}

.woo-category__image {
    height: 100px;
    display: block;

}

.woo-category__image img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.woo-categories__wrapper {
    margin-bottom: 50px;
}

.single-product .site-main {
    background: #f2f2f7;
}

.woo-category__item .woo-category__title a {
    color: #000;
    transition: .3s ease-in-out;
}

.woo-category__item:hover a {
    color: #e53e29
}

.woocommerce-loop-product__sku,
.woocommerce-loop-product__manufacturer {
    color: #a5a5a5;
    font-size: 13px;
}


.single-product-info__header {
    padding: 50px;
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;

    border-radius: 8px;
}

.single-product__attributes {
    margin-left: 0;
    padding: 0;
    list-style-type: none;
    border-top: 1px solid #e5e5e5;
    padding-top: 25px;
}

.single-product__attributes span,
.single-product-info__header .product_meta {
    font-size: 13px;
}

.single-product__attributes .single-product__attr-text,
.single-product-info__header .product_meta b {
    color: #565656ee;
    font-family: "Lato";
}

.single-product__attributes .single-product__attr-value {
    color: #666;
}

.single-product-info__header .quantity .qty {
    width: 70px;
    padding: 9px 10px;
}

.single-product-info__header form {
    display: flex;
}

.single-product-info__header .single_add_to_cart_button {
    display: block;
    text-align: center;
    background-color: #2A2A2A !important;
    font-size: 15px;
    padding: 0.7rem;
    width: 100%;
    box-sizing: border-box;
}

.single-product-info__header .price del {
    color: #999;
    font-size: 18px;
    order: 2;
}

.single-product-info__header .price ins {
    color: #e53e29;
    order: 1;
    margin-right: 15px;
}

.single-product-info__header .single_add_to_cart_button:hover {
    background-color: #bfbfbf !important;
}

.single_percent_price {
    border-radius: 3px;
    background-color: #f73312;
    display: inline-block;
    color: #fff;
    font-size: 13px;
    padding: 2px 10px;
}

.single-product-info__header .onsale {
    display: none;
}

.single-product-info__header div.images {
    margin-bottom: 0 !important;
}

.single-product-info__footer {
    margin: 50px 0 0 0;
    background: #fff;
    padding: 50px;
    position: relative;
}

.single-product-info__footer:before {
    content: "";
    background: #fff;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 100%;
    left: -100%;
}

.single-product-info__footer:after {
    content: "";
    background: #fff;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 100%;
    right: -100%;
}

.single-product-info__footer .title-block:before {
    content: "/";
    position: absolute;
    color: #e53e29;
    left: 0;
    font-size: 16px;
    top: 50%;
    transform: translateY(-50%);
}

.single-product-info__footer .title-block {
    color: #1c1c1c;
    font-family: "FuturaPT";
    position: relative;
    padding-left: 15px;
    line-height: 1;
}

.single-product__cross_sells .product__cross_sell {
    display: flex;
    align-items: center;
    border: 1px solid #eee;
    padding: 5px;
}

.single-product__cross_sells .product__cross_sells-image {
    height: 50px;
    flex: 0 0 auto;
}

.single-product__cross_sells .product__cross_sells-image img {
    height: 100%;

}

.single-product__cross_sells .product__cross_sells-title a {
    color: #666;
    font-weight: 600;
    font-size: 16px;
}

.single-product__cross_sells .product__cross_sells-price {
    font-size: 15px;
}

.single-product__cross_sells .product__cross_sells--content {
    margin-left: 20px;
}

.single-product__cross_sells .product__cross_sell:hover {
    color: #141313;
    text-decoration: none;
}

.sidebar_shop .wpfFilterWrapper {
    background: #f2f2f7;
    padding: 10px !important;
}

.full-page-breadcrumb {
    font-size: 14px;
    color: #000;
    margin-bottom: 30px;

}

.full-page-breadcrumb a {
    color: #999999;
    transition: .3s ease-in-out;
}

.full-page-breadcrumb a:hover {
    color: #000;
    text-decoration: none;
}


.sidebar_shop .wpfFilterWrapper .wfpTitle,
.widget-title {
    color: #1c1c1c;
    font-size: 18px;
    font-family: "FuturaPT";
    position: relative;
    padding-left: 15px;
    line-height: 1;
}

.sidebar_shop .wpfSearchFieldsFilter {
    margin-bottom: 20px !important;
}

.sidebar_shop .wpfFilterTitle {
    margin-bottom: 8px;
}

.sidebar_shop .wpfFilterWrapper .wfpTitle:before,
.widget-title:before {
    content: "/";
    position: absolute;
    color: #e53e29;
    left: 0;
    font-size: 16px;

}

.sidebar_shop .wpfClearButton.wpfButton {
    min-height: 38px;
    font-size: 15px;
    text-transform: inherit;
    width: 100%
}

.wpcf7-form input[type=submit] {
    border: 1px solid;
    border-radius: inherit;
    border-color: transparent;
    font-weight: 600;
    cursor: pointer;
}

.wpcf7-form input[type=submit]:hover {
    color: #fff;
    border-color: transparent;;
}

.footer__working-hours--title {
    color: #fff
}

.footer__working-item {
    color: #fff;
}

.footer__working-item_hours,
.footer__working-item_day {
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    color: #FFFFFF;

}

.footer__working-item_hours {
    margin-left: 20px;
}

.footer__contact-info--wrapper {
    padding: 80px 0;
}

.footer__contact-info--item {
    margin-bottom: 20px;
}

.footer__contact-info a {
    color: #fff;
}

.footer__contact-info a:hover {
    text-decoration: none;
    color: #ffdfdb;
}

.footer__contact-info--item p {
    margin: 0 10px 10px 0;
    display: inline-flex;
    align-items: center;

}

.footer__contact-info--item .icon {

    height: 25px;
    width: 25px;
    display: inline-block;
    margin-right: 10px;
}

.footer__contact-info--item .icon-phone {
    background: url("../img/icon-phone.svg") no-repeat center;
    background-size: cover;
}

.icon-phone:before {
    content: none !important;
}

.footer__contact-info--item .icon-fax {
    background: url("../img/icon-fax.svg") no-repeat center;
    background-size: cover;
}

.wss__product_result--item {
    background: #fff;
}

.wss__product_result_image {
    flex: 0 0 auto;
}

.wss__product_result_image img {
    width: 50px;
    height: auto;
    box-shadow: none;

}

.wss_content_product_content {
    overflow: hidden;
    display: block;
}

.wss_content_product_title {
    display: block;
    font-weight: normal;
    margin-bottom: 3px;
    color: #e53e29;
    font-size: 15px;

}

.wss_content_product_sale {
    background: url("../img/sale-tag.png") no-repeat center;
    background-size: contain;
    width: 30px;
    height: 25px;
    display: inline-block;

}

.wss_content_product_price {
    font-size: 13px;
}

.wss_search-form-container,
.wss_search_field {
    width: 100%;
}

.wss-search-result {
    position: absolute;
    top: 100%;
    border: 1px solid #333;
    width: 100%;
    z-index: 10;
    display: none;

}

.wss__product_result--not-found {
    text-align: center;
    padding: 10px;
    background: #fff;
    font-size: 15px;
}

.wss-search-active + .wss-search-result {
    display: block;
}

.wss__product_result--item {
    display: flex;
    padding: 5px;
}

.wss_content_product_content {
    margin-left: 15px;
    width: 100%;
}

.wss__all-result--link {
    display: block;
    background: #fff;
    text-align: center;
    border-top: 1px solid #eee;
    font-size: 14px;
    padding: 8px 0;
    color: #dc4c25;
}

.error-404__btn-home {
    margin-top: 35px;
}

.error-404__btn-home a {
    font-weight: 600;
}

.error-404__btn-home a:hover {
    text-decoration: none;
    color: #fff;
}

.woocommerce ul.products li.product {
    flex-direction: column;
    justify-content: space-between;
    display: flex;
}

.mobile_switcher_filter {


    float: left;
    margin-right: 15px;

}

.mobile_switcher_filter svg {
    width: 40px;
    height: 35px;
}

.mobile_switcher_filter, .mobile-orderby-product {
    display: none;
}

.woocommerce-page .woocommerce-message .button {
    text-align: center;
}

.widget_product_categories {
    background: #f2f2f7;
    padding: 15px 10px;
}

.widget_product_categories > ul {
    padding-left: 0;
    margin-left: 0;
    list-style-type: none;

    margin-bottom: 0;
    max-height: 200px;
    overflow-y: auto;

}

.widget_product_categories .product-categories a {
    color: #404040;
}

.widget_product_categories .product-categories .current-cat > a {
    color: #e53e29;
}

.widget_product_categories .product-categories .cat-parent {
    position: relative;
}

.widget_product_categories .product-categories .cat-parent:before {
    content: "";
    position: absolute;
    right: 5px;
    top: 0;
    border-style: solid;
    border-width: 2px 2px 0 0;
    display: inline-block;
    height: 8px;
    transform: rotate(45deg);
    vertical-align: top;
    width: 12px;
}

.widget_product_categories .product-categories .current-cat-parent:before {
    transform: rotate(136deg);

    width: 9px;
}

.WpfWoofiltersWidget:before {
    content: "Филтри";
    font-size: 18px;
    font-weight: bold;
    color: #000;
}

.variations_form .variations .label,
.variations_form .variations .value {
    padding: 10px;
}

.single-product-info__header .variations_form {
    display: block;
}

.single-product-info__header .woocommerce-variation-add-to-cart {
    display: flex;
}

.woocommerce-shipping-fields #ship-to-different-address:before{
    display: none;
}