html {
    height: 100%;
}

body {
    height: 100%;
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    font-size: 14px;
    font-weight: normal;
    font-family: 'Roboto', sans-serif;
    line-height: 1.5;
    color: #3D3D3D;
    min-width: 320px;
}

.header,
.footer {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
.header {
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    position: static;
}

.header.mobile-hidden {
    transform: translateY(-100%);
}

.header_mobile_sticky.visible {
    transform: translateY(0);
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    line-height: 1.1;
    font-weight: bold;
    font-family: inherit;
    color: #0a0a28;
}
.h1 {
    padding: 16px 15px;
    font-size: 22px;
    border-bottom: 1px solid #e1e8ed;
    background-color: #fff;
    margin: 0;
}
.h2 {
    padding: 19px 15px;
    font-size: 18px;
    border-bottom: 1px solid #e1e8ed;
    background-color: #fff;
    margin: 0;
}
.h3 {
    font-size: 18px;
    margin: 0 0 15px;
}
.h4 {
    font-size: 16px;
    color: #606060;
    margin: 0 0 5px;
}
.h5 {
    font-size: 14px;
    color: #606060;
    margin: 0 0 5px;
}
a {
    color: inherit;
    text-decoration: underline;
}
a:hover,
a:active {
    text-decoration: none;
}
.container {
    /*padding-right: 15px;*/
    /*padding-left: 15px;*/
    /*margin-right: auto;*/
    /*margin-left: auto;*/
}
.row {
    margin-right: -15px;
    margin-left: -15px;
}
.row:after,
.container:after,
.clearfix:after {
    clear: both;
    content: " ";
    display: block;
}
.hidden {
    display: none!important;
}
.center {
    text-align: center;
}
.fleft {
    float: left;
}
.fright {
    float: right;
}
.nowrap {
    white-space: nowrap;
}
.table {
    width: 100%;
    margin-bottom: 1rem;
    text-align: left;
}
.table th,
.table td {
    padding: 8px;
    vertical-align: top;
    border: 1px solid #e8e8e1;
}
.table_striped tbody tr:nth-of-type(odd) {
    background-color: #f5f6f7;
}
.fit_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.label_block {
    display: block;
    margin-bottom: 5px;
}
/* Form */
.form_group {
    position: relative;
    margin-bottom: 20px;
}
.form_input {
    line-height: 44px;
    height:44px;
    background-color: #fff;
    border: 1px solid #e8e8e1;
    border-radius: 2px;
    padding: 0 15px;
    width: 100%;
    font-family: inherit;
    font-size: 12px;
}

.form_placeholder{
    transition: all 0.1s linear 0s;
    line-height: 1;
    display: table;
    position: absolute;
    left: 15px;
    top: 15px;
    z-index: 1;
    cursor: text;
    font-family: inherit;
    color: rgb(146, 146, 146);
    font-size: 12px;
}
.form_placeholder.active,
.placeholder_focus.error + label + .form_placeholder,
.placeholder_focus:focus + .form_placeholder {
    font-size: 85%;
    background: rgb(255, 255, 255);
    padding: 0 5px;
    top: -5px;
    cursor: default;
    color: rgb(146, 146, 146);
}
.form_textarea {
    display: block;
    width: 100%;
    border: 1px solid #e8e8e1;
    border-radius: 2px;
    background-color: #fff;
    padding: 15px;
    font-family: inherit;
    font-size: 12px;
}
.captcha {
    display: inline-block;
    vertical-align: top;
    margin: 0 17px 10px 0;
}
.form_captcha{
    display: inline-block;
    position: relative;
    margin: 0 0 0 17px;
    vertical-align: top;
}
.input_captcha {
    width: 130px;
    line-height: 38px;
    vertical-align: top;
    height:40px;
}
.secret_number {
    border: 1px solid #e8e8e1;
    padding: 9px;
    border-radius: 2px;
    background: #f5f8f9;
    display: inline-block;
    position: relative;
    text-shadow: 1px 1px #ff4d4d, -1px 1px #ff6666, -1px -1px #ff9999, 1px -1px #ff3333;
    color: white;
    font-weight: bold;
    -moz-user-select: none;
    -khtml-user-select: none;
    user-select: none;
    pointer-events: none;
    cursor: pointer;
}
.secret_number:after {
    content: attr(data-name);
    position: absolute;
    top: 2px;
    left: 2px;
    z-index: -2;
    text-shadow: 1px 1px white,
    2px 2px white,
    3px 3px white,
    4px 4px white;
    color: white;
    transition: all 1s;
}
.message_error {
    clear: both;
    padding: 10px 20px;
    margin-bottom: 30px;
    color: #f00;
    background-color: #ffcaca;
    border: 1px dotted #ff4545;
}
.message_success {
    padding: 11px 23px;
    margin-bottom: 25px;
    color: #ffffff;
    background-color: #ff6600;
    text-transform: uppercase;
}
.error{
    color: #f00;
}
.header.fixed {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
}
.header.fixed.sliding {
    transform: translateY(-100%);
}
.header_bottom.fixed {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
}
#sm_logo {
    float: right;
    font-size: 0;
    margin-left: 25px;
    margin-top: -10px;
}
#sm_logo img {
    vertical-align: top;
}
.ya_map {
    width: 100%;
    min-height: 450px;
}
.promo_img {
    position: absolute;
    max-width: 60px;
    max-height: 60px;
    top: 0;
    left: 0;
}
.dropdown {
    display: none;
}
.active.cat_switch::after,
.active .angle_icon,
.sort_link.active_down span::after {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}
.block {
    background-color: #fff;
    /*padding-bottom: 50px !important;*/
    margin-bottom: 0px !important;
}
.padding {
    padding: 20px 15px 25px;
}
header a,
.top_item,
.callback,
.search_button,
.button,
.slick-next::before,
.slick-prev::before,
.category_link,
.arrow_right,
.breadcrumbs a,
.coupon_button,
.page_link,
.tab_navigation a,
.active.cat_switch::after,
.angle_icon,
.sort_link.active_down span::after {
    transition: all 0.2s ease;
}
/*Кнопки*/
.button,
.disable_button {
    position: relative;
    display: inline-block;
    vertical-align: top;
    padding: 0px 25px;
    font-weight: bold;
    font-family: inherit;
    font-size: 12px;
    line-height: 36px;
    color: inherit;
    /*border: 2px solid #009933;*/
    border: none;
    border-radius: 2px;
    background-color: #fff;
    text-decoration: none;
    text-align: center;
}
.button {
    cursor: pointer;
}
.button:hover {
    background-color: #009933;
    color: #fff;
}
.buy {
    padding: 0px 20px;
    line-height: 30px;
    border: 2px solid #e5e5e5;
}
.buy:hover {
    border-color: #f2bd0b;
    background-color: #fff;
    color: inherit;
}
.comparison_button,
.wishlist_button {
    display: block;
    position: absolute;
    top: 30px;
    right: 30px;
    width: 16px;
    height: 14px;
    background-image: url(../images/sprite.png);
    background-repeat: no-repeat;
    background-position: 0 0;
}
.wishlist_button {
    top: 62px;
    background-position: 0 -15px;
}
.comparison_button.selected {
    background-position: -34px 0;
}
.wishlist_button.selected {
    background-position: -34px -15px;
}
/* Header */
header {
    background-color: #fff;

}
header a {
    text-decoration: none;
}
.menu_switch {
    position: relative;
    float: left;
    height: 41px;
    width: 49px;
    margin-left: -15px;
    /*border-right: 1px solid #e8e8e1;*/
    /*border-bottom: 1px solid #e8e8e1;*/
    color: #b8b7b7;
    font-size: 0;
    cursor: pointer;
    /*border: none;*/
}
.menu_switch::before {
    content: "";
    width: 18px;
    height: 12px;
    position: absolute;
    top: 13px;
    left: 15px;
    background: url(../images/sprite.png) no-repeat -46px -304px;
}
.openmenu .menu_switch::before {
    width: 14px;
    height: 14px;
    top: 12px;
    left: 17px;
    background-position: -48px -320px;
}
.informers {
    float: right;
}
.informer {
    position: relative;
    float: left;
    padding: 8px 12px;
    line-height: 22px;
    font-weight: bold;
    font-size: 0;
    min-width: 49px;
    text-align: center;
    border-left: 1px solid #e8e8e1;
    text-transform: capitalize;
    color: #686666;
}
.informer_name,
.informer_counter {
    vertical-align: top;
    font-size: 12px;
}
.informer_counter {
    margin-left: 4px;
}
.cur_switch,
.lang_switch {
    cursor: pointer;
}
.informer .dropdown {
    position: absolute;
    z-index: 2;
    background-color: #fff;
    border: 1px solid #e8e8e1;
    top: 100%;
    right: -1px;
    min-width: calc(100% + 2px);
    font-size: 12px;
}
.informer .dropdown_item {
    display: block;
    padding: 5px 0;
    white-space: nowrap;
}
.informer .dropdown_item:hover {
    background-color: #e8e8e1;
}
.account_informer {
    display: inline-block;
    vertical-align: middle;
    width: 14px;
    height: 14px;
    background-repeat: no-repeat;
    background-image: url(../images/enter.png);
}
.wish_icon,
.compare_icon,
.angle_icon {
    display: inline-block;
    vertical-align: middle;
    width: 16px;
    height: 14px;
    background-repeat: no-repeat;
    background-image: url(../images/sprite.png);
}
.wish_icon{
    background-position: 0px -15px;
}
.compare_icon {
    background-position: 0px 0px;
}
.angle_icon    {
    height: 10px;
    background-position: 0px -32px;
}
.logo {
    display: block;
    font-size: 0;
    text-align: center;
    margin-top: 17px;
}

.times,
.phones {
    float: left;
    line-height: 21px;
    font-weight: bold;
    margin-top: 16px;
}
.times {
    font-size: 14px;
}
.phones {
    font-size: 17px;
}
.times_inner,
.phones_inner {
    position: relative;
    display: inline-block;
    padding-left: 45px;
}
.times_text {
    color: #686666;
    font-weight: normal;
}
.times_inner::before,
.phones_inner::before {
    content: "";
    position: absolute;
    width: 32px;
    height: 32px;
    top: 5px;
    left: 0;
    background: url(../images/sprite.png) no-repeat 0 -44px;
}
.phones_inner::before {
    top: 7px;
    background: url(../images/sprite.png) no-repeat 0 -77px;
}
.callback {
    display: block;
    float: left;
    padding: 11px 12px;
    border: 2px solid #929faf;
    border-radius: 2px;
    line-height: 14px;
    font-weight: bold;
    font-size: 12px;
    text-align: center;
    margin-top: 18px;
    margin-bottom: 18px;
}
.callback:hover {
    border-color: #f2bd0b;
}
.account {
    float: right;
    padding-top: 11px;
    font-size: 13px;
    margin-top: 10px;
}
.account_link {
    display: inline-block;
    position: relative;
    vertical-align: top;
    padding-left: 30px;
}

.category-title {
    color: #0a0a28;
    font-weight: bold;
    line-height: 1.1;
    margin: 8px 0;
    font-size: 16px;
    padding: 0 9px;
}

.account_link::before {
    content: "";
    position: absolute;
    width: 30px;
    height: 32px;
    top: 4px;
    left: 0;
    background: url(../images/sprite.png) no-repeat 0 -145px;
}
.account_name {
    display: block;
    font-weight: bold;
    font-size: 15px;
    line-height: 18px;
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 97px;
    overflow: hidden;
}
.header_bottom {
    background-color: #e5e6e6;
    /*margin-top: 15px;*/
}
.search {
    display: flex;
    width: 100%;
    margin: 0 auto;
    background-color: #ffffff;
    border: 1px solid #CDCDCD;
    box-shadow: inset -1px 2px 8px 0 rgba(28, 43, 71, 0.14);
    position: relative;
}
.search:hover{
    box-shadow: 0px 2px 8px 0px #00882d;
}

.search:hover .search_button{
    background: #009933;
    color: white;
}
/* Autocomplete dropdown - override libs.css for scrolling */
#fn_search {
    position: relative;
}

#fn_search .autocomplete-suggestions {
    display: block;
    max-height: 300px;
    top: 45px !important;
    left: 0 !important;
    width: 100% !important;
    box-sizing: border-box;
    z-index: 9999;
}

#fn_search .autocomplete-suggestion {
    display: flex !important;
    align-items: center;
    width: 100%;
}

#fn_search .autocomplete-suggestion div,
#fn_search .autocomplete-suggestion a,
#fn_search .autocomplete-suggestion span {
    display: block !important;
    padding: 0.125rem 0.3125rem;
}

#fn_search .autocomplete-suggestion div {
    width: 45px !important;
    flex-shrink: 0;
    text-align: center;
}

#fn_search .autocomplete-suggestion a {
    flex: 1;
}

#fn_search .autocomplete-suggestion span {
    white-space: nowrap;
    flex-shrink: 0;
}

.search_input {
    width: 100%;
    height: 42px;
    padding: 0 45px 0 20px;
    border: none;
    background: none;
    font-size: 1.1em;
    color: #3D3D3D;
}
.search_button {
    border: none;
    background: #e5e6e6;
    width: 60px;
    height: 42px;
    line-height: 31px;
    padding: 0;
    font-size: 0;
    color: #3D3D3D;
    cursor: pointer;
}
.search_button:hover {
    background: #009933;
    color: white;
}
.search_icon {
    width: 34px;
    height: 25px;
    vertical-align: middle;
}
.categories {
    position: relative;
}
.categories_heading {
    float: left;
    line-height: 60px;
    padding-left: 10px;
    padding-right: 20px;
    color: #fff;
    background-color: #38c0f3;
    font-size: 0;
    cursor: pointer;
}
.menu_icon {
    vertical-align: middle;
}
.categories_heading span {
    font-size: 14px;
    margin-left: 15px;
    vertical-align: middle;
}
.categories_nav {
    display: none;
    background-color: #38c0f3;
    font-weight: bold;
    font-size: 13px;
    color: #fff;
    border-top: 1px solid #23aee2;
    position: absolute;
    z-index: 999;
    top: 60px;
    left: 0;
    min-width: 100%;
}
.category_item {
    position: relative;
}
.category_link {
    position: relative;
    display: block;
    padding: 6px 30px 6px 20px;
    border-bottom: 1px solid #23aee2;
}
.category_item .arrow_right {
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    right: 12px;
    margin-top: -8px;
    font-size: 0;
    color: #23aee2;
}
.cat_switch {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 31px;
}
.cat_switch::after {
    content: "";
    position: absolute;
    top: 11px;
    right: 15px;
    width: 16px;
    height: 8px;
    background: url(../images/sprite.png) no-repeat -23px -304px;
}
/* FOOTER */
.footer_top {
    position: relative;
    padding: 0px 0px 0px 0px !important;
}

.footer_top .container {
    border-top: 1px solid #e3e3e3;
    background: linear-gradient(
            to bottom,
            rgba(51, 51, 51, 0.1),
            rgba(51, 51, 51, 0) 6px
    );
}

.footer_top .related_prod_main_page{
    background: transparent;
    color: #367c2b;
    font-size: 1.2em;
    font-weight: bold;
    padding-left: 15px;
    padding-top: 5px;
    padding-bottom: 0px;
}

.footer_top .swiper-container{
    background-color: #fff;
}

.payments_text {
    font-size: 14px;
    color: #0a0a28;
    display: block;
    margin: 0 0 10px;
}

.footer_bottom {
    padding: 25px 0;
    font-size: 14px;
    color: #686666;
}

.footer_bottom .container {
    border-top: 1px solid #e3e3e3;
    background: linear-gradient(
            to bottom,
            rgba(51, 51, 51, 0.1),
            rgba(51, 51, 51, 0) 6px
    );
}

#subscribe_container {
    margin-bottom: 18px;
}
.subscribe_promotext {
    margin-top: 8px;
    line-height: 1.3;
    font-size: 12px;
    color: #827f7f;
}
.subscribe_form {
    position: relative;
    width: 315px;
    max-width: 100%;
    border: 1px solid #ccc;
    border-radius: 2px;
    font-weight: bold;
    font-size: 12px;
}
.subscribe_input {
    width: 100%;
    height: 32px;
    padding: 0 125px 0 10px;
    background-color: #fff;
    border: none;
    color: #827f7f;
}
.subscribe_button {
    position: absolute;
    top: 0;
    right: 0;
    height: 32px;
    width: 115px;
    border:none;
    background-color: #e62e04;
    text-align: center;
    color: #fff;
}
.foot .h3 {
    font-weight: normal;
    margin-bottom: 18px;
}
.foot_social a {
    display: inline-block;
    vertical-align: top;
    text-decoration: none;
    width: 32px;
    height: 32px;
    font-size: 0;
    background-image: url(../images/social.png);
    background-repeat: no-repeat;
}
.fb {
    background-position: 0 0;
}
.vk {
    background-position: 0 -32px;
}
.ok {
    background-position: 0 -64px;
}
.tw {
    background-position: 0 -96px;
}
.ins {
    background-position: 0 -128px;
}
.foot_item {
    margin-bottom: 5px;
}
.footer_contacts,
.foot_menu {
    margin-top: -5px;
}
.footer_contacts a {
    text-decoration: none;
}
.copyright {
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 12px;
    text-align: center;
    background: transparent;
    color: #3D3D3D;
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: normal;
}
/* Main page */
.advantages {
    background-color: #f2f6f7;
    font-weight: bold;
    line-height: 18px;
    font-size: 14px;
    color: #929faf;
}
.advantage {
    position: relative;
    padding-left: 55px;
    padding-top: 20px;
    padding-bottom: 15px;
}
.advantage::before {
    content: "";
    width: 32px;
    height: 32px;
    position: absolute;
    left: 0;
    background-image: url(../images/home_sprite.png);
    background-repeat: no-repeat;
}
.advantage_1::before {
    top: 17px;
    height: 23px;
    background-position: 0 -98px;
}
.advantage_2::before {
    top: 13px;
    background-position: 0 -65px;
}
.advantage_3::before {
    top: 15px;
    height: 31px;
    background-position: 0 -33px;
}
.advantage_4::before {
    top: 13px;
    background-position: 0 0;
}
.banners {
    font-size: 0;
    margin-bottom: 40px;
}
.look_all {
    font-size: 12px;
    color: #606060;
    text-align: center;
}
.main_text {
    padding-top: 12px;
    color: #606060;
    opacity: .7;
}
/* Blog */
.news {
    position: relative;
}
.blog_item {
    border-bottom: 1px solid #e8e8e1;
    box-shadow: inset -1px 0 0 #e8e8e1;
    background-color: #fff;
    margin-bottom: 0;
}
.news_content,
.blog_content {
    padding: 25px 23px 30px;
    color: #606060;
}
.news_image,
.blog_image {
    position: relative;
    display: block;
    width: 100%;
    height: 0;
    padding-bottom: 52%;
    background-color: #f5f6f7;
    background-image: url(../images/post_img.png);
    background-position: center center;
    background-repeat: no-repeat;
}
.news_img,
.blog_img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    bottom: 0;
    height: 100%;
    object-fit: cover;
}
.blog_annotation,
.news_annotation {
    opacity: .7;
    max-height: 105px;
    overflow: hidden;
}
.news_date,
.blog_date {
    margin: 12px 0 5px;
    opacity: .7;
}
/* Brands */
.all_brands {
    position: relative;
}
.brands {
    box-shadow: inset 0px -1px 0 #e8e8e1;
}
.all_brands_link,
.brand_link {
    display: block;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    color: #606060;
    padding: 30px 25px;
}
.all_brands_link {
    border-left: 1px solid #e8e8e1;
}
.slick-current .all_brands_link {
    border-left: none;
}
.brand_item {
    border-bottom: 1px solid #e8e8e1;
    border-right: 1px solid #e8e8e1;
}
.brand_image,
.brand_name {
    height: 100px; 
    overflow: hidden;
    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;
    text-align: center;
    text-decoration: none;
}
.brand_image {
    margin-bottom: 20px;
}
.brand_img {
    vertical-align: middle;
    max-height: 100%;
}

.brand .brand_item:hover,
.all_brands_link:hover,
#fn_content .products_item:hover {
    box-shadow: inset 0 0 0 1px #ccccc6;
}
/* Product preview */
.main_products {
    position: relative;
}
.preview {
    position: relative;
    padding: 15px 5px;
}
.products_item {
    border-bottom: 1px solid #e8e8e1;
    box-shadow: inset -1px 0 0 #e8e8e1;
    margin-bottom: 0;
    background-color: #fff;
}
.product_name {
    display: block;
    font-weight: bold;
    height: 63px;
    line-height: 21px;
    font-size: 13px;
    color: #3D3D3D;
    overflow: hidden;
    margin-bottom: 10px;
}
.preview_image {
    display: block;
    position: relative;
    height: 230px;
    line-height: 200px;
    text-align: center;
    padding: 0 0 30px;
}
.preview_img {
    /*width: 100%;*/
    vertical-align: middle;
    max-height: 100%;
}
.preview .price_container {
    float: left;
    width: calc(100% - 135px);
    font-weight: bold;
    line-height: 1.4;
    min-height: 42px;
}

.related_product .preview .price_container{
    float: none;
    width: 100%;
}

.related_product .preview_image{
    line-height: normal;
    height: 145px;
}

.preview_form {
    /*width: 100%;*/
    /*float: right;*/
    /*padding-top: 3px;*/
}

.related_product .preview_form{
    width: 100%;
}

.preview .button {
    width: 100%;
}
.preview .price {
    font-size: 16px;
}
.preview .hidden + .price {
    margin-top: 0px;
}
.old_price {
    font-size: 13px;
    color: #606060;
    opacity: .7;
    text-decoration: line-through;
}
.remove_link {
    display: block;
    margin: -15px 0 15px;
    font-size: 13px;
    text-decoration: none;
    text-align: center;
}
.remove_link .remove_icon {
    margin-top: -2px;
    color: #e62e04;
}
.remove_link span {
    text-decoration: underline;
}
.remove_link:hover span {
    text-decoration: none;
}
.sort {
    border-bottom: 1px solid #e8e8e1;
    line-height: 17px;
    background-color: #fff;
    padding-left: 3px;
}
.sort_title {
    display: block;
    padding: 14px 12px 0;
    font-weight: bold;
    font-size: 16px;
}
.sort_link {
    float: left;
    padding: 14px 5px 14px 10px;
    text-decoration: none;
    font-size: 13px;
}
.sort_link.active_up,
.sort_link.active_down {
    color: #f2bd0b;
    font-weight: bold;
}
.sort_link span {
    display: inline-block;
    position: relative;
    padding-right: 21px;
}
.sort_link span::after {
    content: "";
    width: 16px;
    height: 10px;
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -5px;
    background: url(../images/sprite.png) no-repeat -1px -303px;
}
.sort_link.no_after span::after {
    content: none;
}
/* Cart */
.purchase {
    width: 100%;
    margin-bottom: 0px;
}
.purchase th,
.purchase td {
    vertical-align: middle;
    text-align: center;
}
.purchase th {
    padding: 12px 8px;
    font-weight: bold;
    font-size: 13px;
    font-weight: bold;
    background-color: #fcfcfc;
}
.purchase td {
    border-top: 1px solid #e8e8e1;
    border-bottom: 1px solid #e8e8e1;
    padding: 8px;
    background-color: #fff;
}
.purchase_remove,
.purchase_image {
    font-size: 0;
}
.purchase_remove a {
    text-decoration: none;
}
.purchase_preorder,
.purchase_remove a:hover {
    color: #e62e04;
}
.remove_icon {
    width: 14px;
    height: 14px;
    vertical-align: middle;
}
.amount {
    width: 123px;
    display: inline-block;
    vertical-align: middle;
    border: 1px solid #e8e8e1;
    line-height: 34px;
}
.plus,
.minus {
    font-size: 16px;
    float: left;
    width: 28px;
    height: 34px;
    text-align: center;
    cursor: pointer;
    color: #707070;
}
.plus:hover,
.minus:hover {
    color: #030303;
}
.input_amount {
    display: block;
    float: left;
    font-size: 14px;
    text-align: center;
    background-color: #fff;
    border-top: none;
    border-bottom: none;
    border-left: 1px solid #e8e8e1;
    border-right: 1px solid #e8e8e1;
    background-color: #f7f7f7;
    padding: 0;
    margin: 0;
    height: 34px;
    width: 65px;
    text-align: center;
}
.purchase_total td {
    font-weight: bold;
    font-size: 16px;
    border-bottom: none;
}
.purchase_total {
    font-weight: bold;
    font-size: 16px;
}
.purchase_total .total_sum {
    color: #3D3D3D;
    font-size: 18px;
}
.purchase_name {
    font-weight: bold;
    font-size: 13px;
    color: #3D3D3D;
}
.purchase .coupon,
.purchase .purchase_total {
    padding: 10px;
}
.input_coupon {
    vertical-align: top;
    width: 165px;
    height: 34px;
    padding: 0 8px;
    border: 1px solid #e8e8e1;
    border-radius: 2px;
    font-size: 13px;
    font-family: inherit;
}
.coupon_button {
    height: 34px;
    padding: 0 25px;
    color: #fff;
    text-align: center;
    font-size: 13px;
    background: #f2bd0b;
    border: none;
    border-radius: 2px;
    cursor:pointer;
}
.coupon_button:hover {
    background: #d4a507;
}
.coupon .message_error {
    margin: 0 0 10px;
    width: 285px;
}
.delivery {
    font-size: 13px;
}
.delivery_item {
    margin-bottom: 15px;
}
.delivery_description {
    margin-left: 25px;
    display: none;
}
.active + .delivery_description {
    display: block;
}
.input_delivery {
    float: left;
    margin: 7px 0 0;
}
.delivery_item img {
    vertical-align: middle;
    margin-right: 4px;
}
.delivery_name {
    display: block;
    padding-left: 25px;
}
.delivery_label {
    display: block;
    overflow: hidden;
    margin-bottom: 5px;
    font-weight: 500;
}
.active.delivery_label {
    font-weight: bold;
}
.order_details    {
    width: 100%;
}
.order_details td {
    padding: 0 0 15px;
}
.order_notify{
    background-color: #fff;
    border: 2px solid rgb(56, 192, 243);
    margin-bottom: 25px;
    padding: 18px 20px 18px;
}
.order_heading{
    color: rgb(10, 10, 40);
    font-size: 22px;
    line-height: 1.2;
    font-weight: bold;
    font-family: inherit;
    margin-bottom: 10px;
}
.order_thank{
    color: rgb(10, 10, 40);
    font-size: 18px;
    line-height: 1.2;
    font-family: inherit;
    margin-top: 10px;
}
.order_tag{
    color: #fff;
    line-height: inherit;
    padding: 0px 8px;
    font-size: 16px;
    border-radius: 4px;
    display: inline-block;
    background-color: rgb(56, 192, 243);
}
.order_heading_promo{
    color: rgb(10, 10, 40);
    font-size: 16px;
    line-height: 1.3;
}
.method_name {
    font-weight: bold;
    font-size: 16px;
}
.method_form {
    margin: 15px 0;
}
.method_description {
    margin-bottom: 15px;
}
.feedback_form {
    background-color: #f5f6f7;
    border: 1px solid #e8e8e1;
}
.feedback_inner {
    padding-top: 25px;
}
/* Pagination */
.pagination {
    list-style: none;
    text-align: center;
    background: #fff;
    padding: 15px 10px 5px;
    margin: -40px 0 40px;
}
.page_item {
    display: inline-block;
    margin-right: 2px;
    margin-bottom: 10px;
}
.page_link {
    display: block;
    padding: 3px 7px;
    min-width: 30px;
    text-align: center;
    text-decoration: none;
    border: 1px solid #e8e8e1;
    background-color: #fff;
    color: #303030;
}
.page_link:hover,
.active .page_link {
    color: #fff;
    background-color: #009933;
    border-color: #009933;
}
/* Product Page */
.product_heading {
    font-size: 22px;
    color: #0a0a28;
    font-weight: bold;
    line-height: 1.1;
    margin: 5px 0 32px;
}
.sku {
    margin-top: -10px;
    margin-bottom: 16px;
    font-size: 13px;
}
.sku_nubmer {
    color: #adaaaa;
}
.product_brand_block{
    font-size: 13px;
    float: left;
    margin-right: 25px;
}
.product_image {
    position: relative;
    /*border: 1px solid #e8e8e1;*/
    text-align: center;
    height: 340px;
    margin-bottom: 23px;
}
.product_img {
    width: auto;
    max-height: 340px;
    position: relative;
    /* top: 50%;
    transform: translateY(-50%); */
}
.images {
    margin-left: -6px;
    margin-right: -6px;
    margin-bottom: 23px;
}
.images_item {
    float: left;
    width: 16.666667%;
    padding-left: 6px;
    padding-right: 6px;
}

.images_link {
    display: block;
    border: 1px solid #e8e8e1;
    height: 77px;
    line-height: 75px;
    text-align: center;
    font-size: 0;
}

.images_item img {
    vertical-align: middle;
}
.product_details {
    margin-bottom: 23px;
}
.product_wish {
    margin-bottom: 12px;
}
.product_wish,
.product_compare {
    position: relative;
    display: inline-block;
    color: #686666;
    font-size: 12px;
    padding-left: 27px;
}
.product_wish::before,
.product_compare::before {
    content: "";
    width: 16px;
    height: 14px;
    position: absolute;
    left: 0;
    top: 2px;
    background-repeat: no-repeat;
    background-image: url(../images/sprite.png);
}
.product_wish::before {
    background-position: -17px -15px;
}
.product_wish.selected::before {
    background-position: -34px -15px;
}
.product_compare::before {
    background-position: -17px 0;
}
.product_compare.selected::before {
    background-position: -34px 0;
}
.product_wish::after,
.product_compare::after {
    content: attr(title);
}
.details_label {
    position: relative;
    font-size: 13px;
    margin-right: 14px;
    display: inline-block;
    padding-left: 20px;
    padding-top: 2px;
}
.product_rating {
    display: inline-block;
    margin: 20px 0 16px;
    font-size: 13px;
}
.available {
    display: inline-block;
    font-size: 13px;
    font-weight: bold;
}
.in_stock,
.no_stock {
    position: relative;
    display: inline-block;
    padding-left: 20px;
}
.no_stock {
    padding-left: 18px;
}
.in_stock::before,
.no_stock::before {
    content: "";
    position: absolute;
    top: 6px;
    left: 0;
    width: 11px;
    height: 8px;
    background: url(../images/sprite.png) no-repeat -37px -33px;
}
.no_stock::before {
    height: 9px;
    background: url(../images/sprite.png) no-repeat -52px -33px;
}
.quontity_label {
    margin-top: 34px;
}
.product .amount {
    display: inline-block;
    vertical-align: top;
    margin-top: 26px;
    margin-bottom: 1px;
}
.product_btn {
    color: #fff;
    border: 2px solid #d4a507;
    background-color: #f2bd0b;
    min-width: 220px;
}
.info_delivery,
.info_payment    {
    margin-top: 25px;
}
.product_btn:hover {
    background-color: #d4a507;
    border-color: #d4a507;
}
.product .variant_select,
.products_item .variant_select{
    width: 100%;
    height: 39px;
    line-height: 35px;
    padding: 0 35px 0 15px;
    border: 2px solid #e1e8ed;
    border-radius: 2px;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-image: url(../images/select_arrow.png);
    background-position: right 12px center;
    background-repeat: no-repeat;
    cursor: pointer;
    margin-top: 5px;
}
.variant_select::-ms-expand {
    display: none;
}
.product .old_price {
    font-weight: bold;
    font-size: 16px;
    margin-top: 25px;
}
.product .price {
    font-weight: bold;
    font-size: 24px;
    line-height: 1.1;
    margin-top: 5px;
}
.product .hidden + .price {
    margin-top: 25px;
}
.product_buttons {
    margin-top: 25px;
}
.info_delivery,
.info_payment {
    border: 1px solid #e1e8ed;
    padding: 20px 18px 14px;
    font-size: 14px;
    position: relative;
}
.info_delivery::before,
.info_payment::before {
    content: "";
    position: absolute;
    bottom: 12px;
}
.info_delivery::before {
    width: 48px;
    height: 64px;
    right: 12px;
    background: url(../images/sprite.png) no-repeat 1px -178px;
}
.info_payment::before {
    width: 64px;
    height: 58px;
    right: 10px;
    background: url(../images/sprite.png) no-repeat 0px -243px;
}
.info_delivery .h5,
.info_payment .h5 {
    color: #030303;
    margin-bottom: 15px;
}
.info_delivery p,
.info_payment p {
    margin-bottom: 7px;
    opacity: .7;
}
.product_share {
    margin: 20px 0 25px;
}
.share_text {
    font-size: 13px;
    margin-right: 5px;
    margin-bottom: 5px;
}
.product_share > div {
    display: inline-block;
    vertical-align: middle;
}
.product .pager {
    padding: 0;
}
.tab_navigation {
    overflow: hidden;
    z-index: 1;
}
.tab_navigation a {
    display: block;
    padding: 7px 10px;

    background-color: #f7f7f7;
    font-weight: bold;
    text-decoration: none;
    border: 1px solid #e1e8ed;
}

.tab_navigation a.selected {
    background-color: #fff;
    box-shadow: inset 0 2px 0 0 #38c0f3;
}
.tab_container {
    overflow: hidden;
    margin: -1px 0 0;
}
.tab {
    display: none;
    padding: 15px;
}
.product_description {
    line-height: 1.65;
}
.features {
    list-style: none;
    margin: 0;
    padding: 0;
}
.features li {
    padding: 0;
    margin-bottom: 7px;
    overflow: hidden;
    background-color: #fff;
}
.features_name,
.features_value {
    display: block;
    float: left;
    padding-left: 7px;
}
.features_value {
    width: 50%;
    padding-right: 15px;
}
.features_name {
    width: 50%;
    position: relative;
}
.features_name span {
    position: relative;
    padding-right: 10px;
    z-index: 1;
    background-color: #fff;
}
.features_name::before {
    content: "";
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 1px;
    border-bottom: 1px dotted #e1e8ed;
}
/* Comments */
.comment_item {
    margin-bottom: 10px;
    border-bottom: 1px solid rgb(225, 232, 237);
    padding-bottom: 10px;
}
.admin_note {
    margin-top: 10px;
    margin-left: 15px;
    border-left: 3px solid rgba(56, 192, 243, 0.8);
    padding: 10px;
    border-bottom: none;
    padding-bottom: 10px;
    margin-bottom: 10px;
    background: rgb(248, 248, 248);
}
.comment_author {
    font-weight: bold;
    color: rgb(5, 72, 98);
    text-transform: uppercase;
    font-size: 13px;
}
.comment_date {
    opacity: .5;
    font-size: 12px;
    line-height: 1.4;
    margin-top: 8px;
    display: block;
}
.comment_content {
    color: rgb(50, 50, 50);
    font-size: 13px;
    line-height: 1.4;
}
.no_comments {
    border-left: 3px solid rgb(76, 154, 53);
    padding: 10px;
    background: rgb(248, 248, 248)
}
/* Post */
.post_date {
    opacity: .7;
    margin-bottom: 10px;
}
.post_share {
    margin: 20px 0;
}
.pager {
    margin-top: 0;
    margin-bottom: 0;
    padding: 15px 0;
    list-style: none;
    overflow: hidden;
}
.pager li {
    padding-top: 5px;
    padding-bottom: 5px;
}
.pager li:nth-child(even) {
    text-align: right;
}
.pager a,
.pager a:hover span {
    text-decoration: none;
}
.pager a span {
    text-decoration: underline;
}
.change_pass {
    margin-bottom: 10px;
}
.change_pass span {
    cursor: pointer;
    border-bottom: 1px dotted;
}
.change_pass span:hover {
    border-color: transparent;
}
.password_remind {
    float: right;
    margin-top: 6px;
    font-size: 13px;
}
/* Filters */

.sidebar_top {
    background-color: #fff;
    margin-bottom: 25px;
}
.sidebar .h2 {
    padding-bottom: 10px;
    padding-top: 12px;
}
.filter_group {
    padding: 23px 23px 0;
}
.catalog_menu{
    padding: 20px 23px 0;
}

.filters_heading {
    position: relative;
    font-weight: bold;
    font-size: 18px;
    padding: 9px 15px;
    cursor: pointer;
}
.filters_heading .angle_icon {
    position: absolute;
    right: 20px;
    top: 18px;
}
.filter_item {
    line-height: 24px;
    padding: 7px 0;
}
.catalog_item{
    padding: 0;
}
.filter_link {
    display: block;
    position: relative;
    padding-left: 36px;
    font-size: 14px;
    min-height: 24px;
    line-height: 16px;
    text-decoration: none;
    cursor: pointer;
}
.catalog_link {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: justify !important;
    -webkit-justify-content: space-between !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
    -webkit-box-align: center !important;
    -webkit-align-items: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    position: relative;
    padding-left: 0px;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    padding: 7px 0px;

}
.catalog_link.sub_cat::after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 16px;
    height: 16px;
    background-repeat: no-repeat;
    margin-left: 1px;
    background-image: url(../images/select_arrow.png);
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16px;
    -ms-flex: 0 0 16px;
    flex: 0 0 16px;
    max-width: 16px;
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}
.filter_indicator {
    position: absolute;
    width: 24px;
    height: 24px;
    top: -4px;
    left: 0;
    border: 1px solid #e8e8e1;
    border-radius: 1px;
}
.checked .filter_indicator {
    background: url(../images/sprite.png) no-repeat 3px -316px;
}
.price_range {
    overflow: hidden;
    margin-left: -12px;
    margin-right: -12px;
    margin-bottom: 15px;
}
.price_label {
    float: left;
    width: 50%;
    padding-left: 12px;
    padding-right: 12px;
}
.max_price {
    text-align: right;
}
.max_input,
.min_input {
    max-width: 100%;
    padding: 0 8px;
    line-height: 30px;
    height: 32px;
    border: 1px solid #e8e8e1;
}
/* Browsed products */
.browsed {
    padding-top: 10px;
    padding-bottom: 15px;
}
.browsed_item {
    line-height: 50px;
    height: 80px;
    padding-top: 15px;
    padding-bottom: 15px;
    text-align: center;
}
.browsed_item img {
    vertical-align: middle;
}
/* Product Rating */
.rating_starOff {
    display: inline-block;
    vertical-align: top;
}
.rating_starOff,
.rating_starOn {
    width: 90px;
    height: 18px;
    background: url(../images/rating.png) repeat-x left top;
}
.rating_starOn {
    display: block;
    background-position: left bottom;
}
.rating_text {
    vertical-align: middle;
    line-height: 18px;
    display: inline-block;
}
/* BREADCRUMBS */
.breadcrumbs {
    padding: 10px 15px;
    margin: 25px 0;
    list-style: none;
    font-size: 12px;
    background-color: #fff;
}
.breadcrumbs li {
    display: inline-block;
    padding: 0;
    margin: 3px 0;
}
.breadcrumbs li + li:before {
    padding: 0 2px;
    content: "/\00a0";
}
/* Scroll to top */
.to_top {
    width: 42px;
    height: 42px;
    border-radius: 100%;
    position: fixed;
    bottom: 20px;
    left: 10px;
    z-index: 99;
    display: none;
    background-color: #b8b7b7;
    background-image: url(../images/up-arrow.png);
    background-position: center center;
    background-repeat: no-repeat;
    cursor: pointer;
}
.to_top:hover {
    background-color: #009933;
}

/* POPUP WINDOW */
.popup {
    width: 320px;
    max-width: 100%;
    padding: 5px;
    text-align: center;
}
.popup_heading {
    margin-bottom: 12px;
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
}
/* Comparison_page */
.comparison_page {
    padding-bottom: 40px;
}
.comparison_left {
    float: left;
    width: 30%;
}
.comparison_products {
    float: right;
    width: 70%;
    position: relative;
    margin: 0;
    border-left: 1px solid #e8e8e1;
}
.comparison_item {
    border-right: 1px solid #e8e8e1;
}
.cell {
    padding: 10px 15px;
    border-bottom: 1px solid #e8e8e1;
}
.comparison_item .cell,
.comparison_item .cprs_rating {
    text-align: center;
}
.cprs_rating {
    padding: 10px 15px;
    border-bottom: 1px solid #e8e8e1;
    border-top: 1px solid #e8e8e1;
}
.cell:nth-child(odd) {
    background: #efefef;
}
.compare_controls {
    position: relative;
}
.compare_show {
    position: absolute;
    left: 0px;
    bottom: 25px;
}
.compare_show a {
    display: inline-block;
    padding: 6px 11px;
    text-decoration: none;
    margin: 0 5px 5px 15px;
}
.compare_show a:hover,
.compare_show .active {
    background: #fff;
    border: 1px solid #e8e8e1;
    padding: 5px 10px;
    color: #030303;
}
.compare_show a span {
    border-bottom: 1px dashed;
}
.compare_show a:hover span,
.compare_show .active span {
    border-color: transparent;
}
.preorder_label{
    padding: 0 5px;
    color: #fff;
    text-align: center;
    font-size: 10px;
    background: #f2bd0b;
    border: none;
    border-radius: 2px;
}
.callback_form .captcha{
    display: block;
    margin: 0 0px 20px 0;
}
.callback_form .captcha .secret_number{
    width: 95px;
}
.callback_form .captcha .form_captcha{
    width: calc(100% - 117px);
}
.callback_form .button{ 
    display: block;
    width: 100%;
}

.order_notify_v2{
    text-align: center;
    margin-top: 0px;
    margin-bottom: 0px;
    background: #fff;
    padding: 40px 0px;
}
.order_notify_v2 .o_notify_v2_head{
    vertical-align: middle;
    margin-bottom: 20px;
}
.order_notify_v2 svg{
    width: 44px;
    height: 44px;
    color: #74B636;
    margin-right: 12px;
    vertical-align: middle;
}
.order_notify_v2 .o_notify_v2_heading{
    font-size: 32px;
    font-weight: 600;
    vertical-align: middle;
}
.o_notify_v2_content{
    margin-bottom: 25px;
}
.o_notify_v2_content .o_notify_v2_content_inner{
    max-width: 660px;
    display: inline-block;
}
.o_notify_v2_order_id .o_notify_v2_order_id_box{
    display: inline-block;
    border: 2px solid #FFC007;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 10px;
    line-height: 1.2;
    background: #fff;
    text-transform: uppercase;
    font-weight: 600;
    color: #414141;
}
.o_notify_v2_order_id .o_notify_v2_order_id_box .o_notify_v2_order_id_bold{
    font-weight: bold;
    font-size: 17px;
    line-height: 1;
    margin-top: 3px;
    display: block;
    color: #000;
}

/* main menu */
.menu_group_header{
    float: left;
}

.menu_list_1{
    padding-left: 0px;
    list-style: none;
}
.menu_list_2,
.menu_list_3,
.menu_list_4{
    padding-left: 15px;
    list-style: none;
}
.menu_list{
    margin: 5px 0px 0px 0px;
}

.menu_item{
    margin-bottom: 5px;
}

/* menu 404 */

menu_group_404 .menu_list{
    margin: 0px;
    padding-left: 15px;
}
.menu_404{
    margin-top: 30px;
}
.menu_404 .text_404{
    margin: 0 0 40px;
}
.menu_404 .text_404 {
    font-weight: 500;
    font-family: inherit;
    color: rgb(89, 89, 89);
    font-size: 18px;
    line-height: 1.3;
}
.menu_group_404 .menu_list{
    padding: 0px;
    list-style: none;
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: row !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
    -webkit-flex-wrap: wrap !important;
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
    -webkit-box-align: center !important;
    -webkit-align-items: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    margin-right: -20px;
    margin-left: -20px;
}
.menu_group_404 .menu_list_2{
    display: none!important;
}
.menu_group_404 .menu_list .menu_item{
    -webkit-flex-basis: 0;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
    margin-bottom: 20px;
    min-height: 1px;
    padding-right: 10px;
    padding-left: 10px;
}
.menu_group_404 .menu_list .menu_link{
    text-align: center;
    color: rgb(255, 255, 255);
    background-color: #00C1F5;
    border: 1px solid rgb(0, 145, 185);
    display: inline-block;
    vertical-align: middle;
    padding: 10px 24px;
    font-size: 16px;
    font-weight: 600;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    border: none;
    text-decoration: none;
    cursor: pointer;
    border-radius: 20px;
    width: 100%;
}
.menu_group_404 .menu_list .menu_link:hover {
    color: rgb(255, 255, 255);
    background-color: rgb(4, 73, 92);
}

/* menu footer */



/* MY CSS*/
.fn_ajax_content .container, #fn_content .container, .footer_top .container, 
.fn_ajax_content .container, #fn_content .container, .footer_bottom .container{
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.header .container{
    position: relative;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 1500px) {
    .fn_ajax_content .container, #fn_content .container, .footer_top .container,
    .fn_ajax_content .container, #fn_content .container, .footer_bottom .container{
        max-width: 1400px;
    }

    .header .container{
        position: relative;
        max-width: 1400px;
    }
}

@media (max-width: 1200px) {
    .fn_ajax_content .container, #fn_content .container, .footer_top .container,
    .fn_ajax_content .container, #fn_content .container, .footer_bottom .container{
        max-width: 1000px;
    }

    .header .container{
        position: relative;
        max-width: 1000px;
    }
}

.header .container .logo{
    width: 235px;
}

.header .container{
    background: white;
}

.top_nav{
    height: auto;
}

/*.top_menu_right_list div:last-child{*/
/*    position: relative;*/
/*    */
/*}*/

.top_menu_right_list {
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

.login_btn_reg {
    display: inline-block;
    font-size: 1.2em;
    text-decoration: none;
}

.login_btn_reg svg {
    fill: #666;
    width: 24px;
    height: 24px;
}

.login_btn_reg--auth svg {
    fill: #009933;
}

.login_btn_reg:hover span, .login_btn:hover span{
    color: #009933;
}

.img-registration{
    width: 32px;
    height: auto;
    position: relative;
    top: 5px;
    left: 0px;
    margin-bottom: 4px;
}

.login-txt {
    color: #676767;
}

.login_btn {
    display: inline-block;
    font-size: 1.2em;
    text-decoration: none;
    color: #676767;
}

.login_btn i {
    color: #676767;
    font-size: 1.3em;
    /*position: relative;*/
    /*left: 0px;*/
    padding-bottom: 5px;
}

.login-txt-log{
    /*position: relative;*/
    /*bottom: 4px;*/
}


.fa.fa-caret-down.angle_icon.tablet-hidden{
    background: none;
    height: auto;
}

.languages .dropdown_item:hover{
    background-color: #e8e8e1;
}

.languages {
    position: relative;
}

.languages .dropdown {
    position: absolute;
    z-index: 2;
    background-color: #fff;
    border: 1px solid #e8e8e1;
    top: 100%;
    right: 0;
    min-width: 100%;
    font-size: 12px;
}

.languages .dropdown_item {
    display: block;
    padding: 5px 10px;
    white-space: nowrap;
}

.header_bottom .container{
    max-width: 1440px;
    margin: 0 auto;
}

.wrap-menu{
    margin: 0 auto;
    position: relative;
    width: 100%;
    height: 42px;
    /*border: 1px solid #009933;*/
}

.wrap-menu .menu_group.menu_group_header_bottom{
    height: 42px;
    position: relative;
    padding-left: 15px;
    padding-right: 15px;
    background: #e5e6e6;
}

.wrap-menu .menu_group.menu_group_header_bottom ul{
    display: grid;
    /*grid-template-columns: 0.4fr 0.3fr 0.1fr 0.1fr 0.1fr 0.1fr 0.1fr 0.5fr;*/
    grid-template-rows: 0.5fr;
    grid-template-areas: ". . . . . . . .";
    /*width: 1082px;*/
    /*position: absolute;*/
    /*left: 50%;*/
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 16px;
    /*transform: translate(-50%, 0%);*/
}

.wrap-menu .menu_group.menu_group_header_bottom ul li{
    position: relative;
    text-align: center;
    float: left;
    line-height: 42px;
    /* border-right: 1px solid #009933;
    border-top: 1px solid #009933;
    border-bottom: 1px solid #009933; */
    white-space: nowrap;
}

.wrap-menu .menu_group.menu_group_header_bottom ul li.active{
    background:#eff0f0;
    color: #3D3D3D;
}

.wrap-menu .menu_group.menu_group_header_bottom ul li:hover{
    /* background: #009933; */
    font-weight: bold;
}

.wrap-menu .menu_group.menu_group_header_bottom ul li:hover a{
    /* color: white; */
    color: #367c2b;
}

.wrap-menu .menu_group.menu_group_header_bottom ul li.menu_item{
    margin-bottom: auto;
}

.wrap-menu .menu_group.menu_group_header_bottom ul li.active a{
    /* color: #009933; */
    font-weight: bold;
    color: #367c2b;
}

.wrap-menu .menu_group.menu_group_header_bottom ul li a {
    text-decoration: none;
    height: 42px;
    display: block;
    color: #3D3D3D;
    padding-left: 14px;
    padding-right: 14px;
}

a.menu_link[href*="discounts"] {
    color: #ff0008 !important;
}

.wrap-menu .menu_group.menu_group_header_bottom ul li:last-child a{
    padding-left: 0;
    padding-right: 0;
}

.btn-back-call svg {
    width: 15px;
    position: relative;
    top: 1px;
}

.slide_one{
  height: 65px;
}

.slide_one img{
  width:146px; height: 46px; position: relative;top:5px;left: 10px;
}

.slide_two{
  height: 65px;
}

.slide_two img{
  width:149px; height: 50px; position: relative;top:4px;left: 8px;
}

.slide_three{
  height: 65px;
}

.slide_three img{
  width:147px; height: 39px; position: relative;top: 8px;left: 2px;
}

.slide_four{
  height: 65px;
}

.slide_four img{
  width:146px; height: 44px; position: relative;top: 6px;left: 4px;
}

.slide_five{
  height: 65px;
}

.slide_five img{
  width:145px; height: 39px; position: relative;top: 8px;left: 6px;
}

.slide_six{
  height: 65px;
}

.slide_six img{
  width:145px; height: 39px; position: relative;top: 8px;left: 10px;
}

.slide_seven{
  height: 65px;
  padding-left: 5px;
  padding-right: 10px;
}

.slide_seven img{
  width: 100%;
  height: 39px;
  position: relative;
  top: 8px;
}

.footer_bottom{
    padding: 0px !important;
}

#wrap_main_content{
    position: relative;
    background: white;
    width: 100%;
    min-height: 250px;

    padding: 20px 0;
    /*padding-bottom: 15px;*/
}

#filter_section {
    display: grid;
    grid-template-columns: 0.8fr 1.8fr 0.8fr;
    gap: 20px;
    padding: 0 55px;
}

@media (max-width:1200px){
    #filter_section {
        grid-template-columns: 0.9fr 1.8fr 0.9fr;
        padding: 0 25px;
    }
}

@media (max-width:481px){
    #filter_section {
        grid-template-columns: 2fr 0.9fr;
        padding: 0;
    }
    .hd_parts_ag {
        display: none;
    }
}

#catalog{
    position: relative;
}

.item-catalog{
    width: 206px;
    position: relative;
    display: block;
    height: auto;
    margin: 8px auto;
    z-index: 1;
    overflow: hidden;
    background: #FFFFFF;
    padding-bottom: 0px;
    border: 1px solid #CDCDCD;
    text-decoration: none;
    cursor: pointer;
    box-shadow: inset -1px 2px 8px 0px rgba(28, 43, 71, 0.14);
}

.img-catalog {
    height: 125px;
    overflow: hidden;
    position: relative;
}

.img-catalog img{
    width: 80%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.img-catalog img[src="files/categories/tretij.jpg"],
.img-catalog img[src="files/categories/98350956_w640_h640_prajs-produktsiya-loctite.jpg"],
.img-catalog img[src="files/categories/peredelat.png"],
.img-catalog img[src="files/categories/sch_easy-cut-ii.png"]{
    top: 58%;
}

.img-catalog img[src="design/rulen_theme/images/discount.jpg"]{
    width: 59%;
    top: 54%;
}

.item-catalog:hover {
    /* box-shadow: 0px 0px 40px rgba(46, 61, 85, 0.42); */
    box-shadow: 0px 2px 8px 0px #00882d;
    cursor: pointer;
    border: 1px solid #009933;
}

.item-catalog .footer-product{
    min-height: 64px;
}

.item-catalog .title-product {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: bold;
    line-height: 17px;
    font-size: 13px;
    text-transform: uppercase;
    color: #3D3D3D;
    padding: 15px;
    padding-left: 10px;
    padding-right: 10px;
    text-align: center;
}

.section-contact {
    color: #3D3D3D;
    height: 227px;
    overflow: hidden;
    border-bottom: 1px solid #009933;
    margin-bottom: 6px;
}

.section-contact .foto-manager img {
    width: auto;
    height: 227px;
}

.grid-container-contact-info {
    display: grid;
    height: 100%;
    grid-template-columns: 0.6fr 1.3fr;
    grid-template-rows: 1fr;
    grid-gap: 1px 1px;
    grid-template-areas: ". .";
}

.section-contact .foto-manager {
    text-align: center;
}

.section-contact .contact-info {
    padding-top: 10px;
    padding-left: 12px;
}

.section-contact .contact-info .title {
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 330px;
    display: block;
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    /* font-weight: bold; */
    line-height: 17px;
    font-size: 1em;
    text-transform: uppercase;
    color: #3D3D3D;
}

.section-contact .contact-info .name {
    padding-top: 60px;
    /* font-weight: bold; */
}

.section-contact .contact-info .phone {
    padding-top: 20px;
}

.section-contact .contact-info .email {
    padding-top: 20px;
}

.wrap_block{
    margin-bottom: 0px !important;
    padding-bottom: 40px;
}

.wrap-registartion-form {
    margin: 0 auto;
    max-width: 450px;
    width: 100%;
    min-height: 500px;
    position: relative;
    color: #3D3D3D;
}

.wrap-registartion-form input[type="submit"]{
    font-size: 1.1em;
}

.title-form {
    text-align: center;
    min-height: 40px;
    line-height: 40px;
    font-size: 1.2em;
}

.tab-content {
    padding: 10px;
}

.curr-tab {
    display: none;
}

.curr-tab.active {
    display: block;
}

.curr-tab .form-element:first-child {
    margin-top: 1.25rem;
}

.tab-group {
    width: 100%;
    height: 36px;
    display: grid;
    grid-template-columns: 0.5fr 0.5fr;
    grid-template-rows: 36px;
    grid-template-areas: ". .";
    text-align: center;
    line-height: 36px;
    margin-top: 10px;
    font-size: 1.1em;
}

.tab-parent.active {
    background: #F1F1F1;
}

.tab-group .tab-parent {
    cursor: pointer;
}

.form-btn,
.form-btn-cancel,
.form-btn-error {
  background: transparent;
  font-size: 1rem;
  color: #fff;
  cursor: pointer;
  border: 1px solid transparent;
  padding: 5px 24px;
  margin-top: 2.25rem;
  position: relative;
  z-index: 0;
  transition: transform 0.28s ease;
  will-change: transform;
}

.form-btn::before,
.form-btn::after,
.form-btn-cancel::before,
.form-btn-cancel::after,
.form-btn-error::before,
.form-btn-error::after {
  position: absolute;
  content: "";
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
}

.form-btn::before,
.form-btn-cancel::before,
.form-btn-error::before {
  background: #337ab7;
  z-index: -2;
}

.form-btn::after,
.form-btn-cancel::after,
.form-btn-error::after {
  background: #000;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.28s ease;
  will-change: opacity;
}

.form-btn:focus,
.form-btn-cancel:focus,
.form-btn-error:focus {
  outline: none;
}

.form-btn:focus::after,
.form-btn:hover::after,
.form-btn-cancel:focus::after,
.form-btn-cancel:hover::after,
.form-btn-error:focus::after,
.form-btn-error:hover::after {
  opacity: 0.3;
}

.form-btn:active,
.form-btn-cancel:active,
.form-btn-error:active {
  transform: translateY(1px);
}

.form-btn-error::before {
  background: #d9534f;
}

.form-btn-cancel {
  transition: color 0.28s ease, transform 0.28s ease;
  color: #b52b27;
  border-color: currentColor;
  will-change: color, transform;
}

.form-btn-cancel.-nooutline {
  border-color: transparent;
}

.form-btn-cancel::before {
  background: #b52b27;
  opacity: 0;
  transition: opacity 0.28s ease;
  will-change: opacity;
}

.form-btn-cancel::after {
  display: none;
}

.form-btn-cancel:focus,
.form-btn-cancel:hover {
  color: #fff;
}

.form-btn-cancel:focus::before,
.form-btn-cancel:hover::before {
  opacity: 1;
}

.form-btn-block {
  display: block;
  width: 100%;
  padding: 5px;
}

.form-checkbox,
.form-radio {
  position: relative;
  margin-top: 2.25rem;
  margin-bottom: 2.25rem;
  text-align: left;
}

.form-checkbox-inline .form-checkbox-label,
.form-radio-inline .form-radio-label {
  display: inline-block;
  margin-right: 1rem;
}

.form-checkbox-legend,
.form-radio-legend {
  margin: 0 0 0.125rem 0;
  font-weight: 500;
  font-size: 1rem;
  color: #333;
}

.form-checkbox-label,
.form-radio-label {
  position: relative;
  cursor: pointer;
  padding-left: 1.5rem;
  text-align: left;
  color: #333;
  display: block;
  margin-bottom: 0.5rem;
}

.form-checkbox-label:hover i,
.form-radio-label:hover i {
  color: #337ab7;
}

.form-checkbox-label span,
.form-radio-label span {
  display: block;
}

.form-checkbox-label input,
.form-radio-label input {
  width: auto;
  opacity: 0.0001;
  position: absolute;
  left: 0.25rem;
  top: 0.25rem;
  margin: 0;
  padding: 0;
}

.form-checkbox-button {
  position: absolute;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: block;
  color: #999;
  left: 0;
  top: 0.25rem;
  width: 1rem;
  height: 1rem;
  z-index: 0;
  border: 0.125rem solid currentColor;
  border-radius: 0.0625rem;
  transition: color 0.28s ease;
  will-change: color;
}

.form-checkbox-button::before,
.form-checkbox-button::after {
  position: absolute;
  height: 0;
  width: 0.2rem;
  background-color: #337ab7;
  display: block;
  transform-origin: left top;
  border-radius: 0.25rem;
  content: "";
  transition: opacity 0.28s ease, height 0s linear 0.28s;
  opacity: 0;
  will-change: opacity, height;
}

.form-checkbox-button::before {
  top: 0.65rem;
  left: 0.38rem;
  transform: rotate(-135deg);
  box-shadow: 0 0 0 0.0625rem #fff;
}

.form-checkbox-button::after {
  top: 0.3rem;
  left: 0;
  transform: rotate(-45deg);
}

.form-checkbox-field:checked ~ .form-checkbox-button {
  color: #337ab7;
}

.form-checkbox-field:checked ~ .form-checkbox-button::after,
.form-checkbox-field:checked ~ .form-checkbox-button::before {
  opacity: 1;
  transition: height 0.28s ease;
}

.form-checkbox-field:checked ~ .form-checkbox-button::after {
  height: 0.5rem;
}

.form-checkbox-field:checked ~ .form-checkbox-button::before {
  height: 1.2rem;
  transition-delay: 0.28s;
}

.form-radio-button {
  position: absolute;
  left: 0;
  cursor: pointer;
  display: block;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: #999;
}

.form-radio-button::before,
.form-radio-button::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  margin: 0.25rem;
  width: 1rem;
  height: 1rem;
  transition: transform 0.28s ease, color 0.28s ease;
  border-radius: 50%;
  border: 0.125rem solid currentColor;
  will-change: transform, color;
}

.form-radio-button::after {
  transform: scale(0);
  background-color: #337ab7;
  border-color: #337ab7;
}

.form-radio-field:checked ~ .form-radio-button::after {
  transform: scale(0.5);
}

.form-radio-field:checked ~ .form-radio-button::before {
  color: #337ab7;
}

.form-has-error .form-checkbox-button,
.form-has-error .form-radio-button {
  color: #d9534f;
}

.form-card {
  border-radius: 2px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: all 0.56s cubic-bezier(0.25, 0.8, 0.25, 1);
  max-width: 500px;
  padding: 0;
  margin: 50px auto;
}

.form-card:hover,
.form-card:focus {
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

.form-card:focus-within {
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

.form-fieldset {
  padding: 30px;
  border: 0;
}

.form-fieldset + .form-fieldset {
  margin-top: 15px;
}

.form-legend {
  padding: 1em 0 0;
  margin: 0 0 -0.5em;
  font-size: 1.5rem;
  text-align: center;
}

.form-legend + p {
  margin-top: 1rem;
}

.form-element {
  position: relative;
  margin-top: 2.25rem;
  margin-bottom: 2.25rem;
}

.form-element-hint {
  font-weight: 400;
  font-size: 0.6875rem;
  color: #a6a6a6;
  display: block;
}

.form-element-bar {
  position: relative;
  height: 1px;
  background: #999;
  display: block;
}

.form-element-bar::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #009933;
  height: 2px;
  display: block;
  transform: rotateY(90deg);
  transition: transform 0.28s ease;
  will-change: transform;
}

.form-element-label {
  position: absolute;
  top: 0.75rem;
  line-height: 1.5rem;
  pointer-events: none;
  padding-left: 0.125rem;
  z-index: 1;
  font-size: 1rem;
  font-weight: normal;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
  color: #a6a6a6;
  transform: translateY(-50%);
  transform-origin: left center;
  transition: transform 0.28s ease, color 0.28s linear, opacity 0.28s linear;
  will-change: transform, color, opacity;
}

.form-element-field {
  outline: none;
  height: 1.5rem;
  display: block;
  background: none;
  padding: 0.125rem 0.125rem 0.0625rem;
  font-size: 1rem;
  border: 0 solid transparent;
  line-height: 1.5;
  width: 100%;
  color: #333;
  box-shadow: none;
  opacity: 0.001;
  transition: opacity 0.28s ease;
  will-change: opacity;
}

.form-element-field:-ms-input-placeholder {
  color: #a6a6a6;
  transform: scale(0.9);
  transform-origin: left top;
}

.form-element-field::placeholder {
  color: #a6a6a6;
  transform: scale(0.9);
  transform-origin: left top;
}

.form-element-field:focus ~ .form-element-bar::after {
  transform: rotateY(0deg);
}

.form-element-field:focus ~ .form-element-label {
  color: #009933;
}

.form-element-field.-hasvalue,
.form-element-field:focus {
  opacity: 1;
}

.form-element-field.-hasvalue ~ .form-element-label,
.form-element-field:focus ~ .form-element-label {
  transform: translateY(-100%) translateY(-0.5em) translateY(-2px) scale(0.9);
  cursor: pointer;
  pointer-events: auto;
}

.form-has-error .form-element-label.form-element-label,
.form-has-error .form-element-hint {
  color: #d9534f;
}

.form-has-error .form-element-bar,
.form-has-error .form-element-bar::after {
  background: #d9534f;
}

.form-is-success .form-element-label.form-element-label,
.form-is-success .form-element-hint {
  color: #259337;
}

.form-is-success .form-element-bar::after {
  background: #259337;
}

input.form-element-field:not(:placeholder-shown),
textarea.form-element-field:not(:placeholder-shown) {
  opacity: 1;
}

input.form-element-field:not(:placeholder-shown) ~ .form-element-label,
textarea.form-element-field:not(:placeholder-shown) ~ .form-element-label {
  transform: translateY(-100%) translateY(-0.5em) translateY(-2px) scale(0.9);
  cursor: pointer;
  pointer-events: auto;
}

textarea.form-element-field {
  height: auto;
  min-height: 3rem;
}

select.form-element-field {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

.form-select-placeholder {
  color: #a6a6a6;
  display: none;
}

.form-select .form-element-bar::before {
  content: "";
  position: absolute;
  height: 0.5em;
  width: 0.5em;
  border-bottom: 1px solid #999;
  border-right: 1px solid #999;
  display: block;
  right: 0.5em;
  bottom: 0;
  transition: transform 0.28s ease;
  transform: translateY(-100%) rotateX(0deg) rotate(45deg);
  will-change: transform;
}

.form-select select:focus ~ .form-element-bar::before {
  transform: translateY(-50%) rotateX(180deg) rotate(45deg);
}

.form-element-field[type="number"] {
  -moz-appearance: textfield;
}

.form-element-field[type="number"]::-webkit-outer-spin-button,
.form-element-field[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.text-center{
  text-align: center;
}

.btn-reg{
  background: none;
  border: none;
  padding: 5px 20px;
  cursor: pointer;
  border-radius: 3px;
}

.btn-reg:hover{
  background: #009933;
  color: white;
}

.curr-tab{
  display: none;
}

.curr-tab .form-element:first-child{
  margin-top: 1.25rem;
}

.curr-tab.active{
  display: block;
}

.login_btn_my_account {
    position: relative;
    top: 13px;
    display: inline-block;
    font-size: 1.2em;
    text-decoration: none;
    color: #676767;
}

.login_btn_my_account svg {
    width: 24px;
    height: 24px;
    position: relative;
    top: 9px;
    fill: #009933;
}

#wrap-products{
    background: white;
    min-height: 500px;
    padding: 20px 0;
}

.products_container{
    float: none !important;
    width: calc(100%) !important;
}

.products{
    margin-bottom: 0px !important;
    box-shadow: none !important;
    padding-bottom: 10px;
}

.fn_pagination{
    padding-top: 40px;
    background: white;
}

.pagination{
    margin: -40px 0 0px;
}

#fn_products_content{
    margin-left: 27px;
}

.min-height_328 {
    min-height: 328px;
}

/*============================*/
#fn_products_content {
    position: relative;
    min-width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    margin: 0px;
    grid-auto-flow: dense;
    grid-gap: 20px;
}
/*============================*/

.item-product{
    position: relative;
    display: grid;
    width: 200px;
    margin: 6px auto;
    background: #FFFFFF;
    overflow: hidden;
    /* border: 1px solid #009933; */
    border: solid 1px #e9e9e9;
    z-index: 1;
}

.product-footer{
  display: grid;
  /*grid-template-columns: 1.15fr 0.85fr;*/
  /*grid-template-rows: 1fr;*/
  /*grid-template-areas: ". .";*/


    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto;
}

.product-content{
    display: block;
    min-height: 110px;
    height: 110px;
    overflow: hidden;
    cursor: pointer;
}

.product-footer{
    /*height: 46px;*/
    margin: 4px 10px 10px 10px;
    text-align: center;
}

.btn-add-product-to-cart {
    position: relative;
    /*left: -2px;*/
    /*top: 4px;*/
    border: solid 1px #009933;
    width: 100%;
    height: 30px;
    background: white;
    border-radius: 3px;
    color: #009933;
    font-style: normal;
    font-weight: bold;
    font-size: 12px;
    text-transform: uppercase;
    cursor: pointer;
    padding: 0;
    /*margin-top: 2px;*/
}

.btn-add-product-to-cart span {
    position: relative;
    top: -2px;
    /*position: absolute;
    top: 48%;
    left: 30px;
    transform: translate(0px, -50%);*/
}

.btn-add-product-to-cart svg {
    position: relative;
    width: 19px;
    top: 2px;
    left: -6px;
}

.btn-add-product-to-cart:hover {
    color: white;
    background: #009933;
}

.btn-add-product-to-cart:hover svg {
    fill: white;
}

.price{
    font-size: 14px;
    font-weight: bold;
    line-height: 40px;
    /*padding-left: 10px;*/
}

.price_recomended{
    font-size: 16px;
    font-weight: bold;
    line-height: 41px;
    padding-left: 0px;
}

.img-prod{
    display: block;
    text-align: center;
    width: 198px;
    height: 170px;
    overflow: hidden;
    line-height: 167px;
    border-bottom: 1px solid #00993314;
}

.wrap_product_name{
    text-align: center;
    /*padding-top: 10px;
    padding-left: 5px;
    padding-right: 5px;
    padding-bottom: 5px;*/
}

.wrap_product_name .product_name{
    font-size: 13px;
    text-transform: uppercase;
    text-decoration: none;
    color: #3D3D3D;
    height: auto;
    line-height: 17px;
    margin-bottom: 0px;
    padding-top: 10px;
    padding-bottom: 7px;
    padding-left: 5px;
    padding-right: 5px;
}

.wrap_product_name .product_name:hover{
    color: #009933;
}

.item-feature{
    text-align: center;
}

.item-feature span{
    font-size: 15px;
    color: #818181;
}

.product-content .item-feature:nth-of-type(1n+4){
    display: none;
}

.item-product:hover{
    /* box-shadow: 0px 0px 40px rgba(46, 61, 85, 0.42); */
    box-shadow: 0px 2px 8px 0px #00882d;
    border: 1px solid #009933;
    /*z-index: 20;
    padding-bottom: 10px;*/
}

/*.item-product:hover .product-footer{
    margin-top: 10px;
}

.item-product:hover .product-content{
    height: auto; 
}

.item-product:hover .product-content .item-feature:nth-of-type(1n+4){
    display: block;
}*/

img.preview_img[src="design/rulen_theme/images/no_image.png"]{
    width: auto;
}

.fn_not_preorder {
    position: relative;
}

.icon-text-block {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 10px;
    height: 29px;
    gap: 3px;
    gap: 2px;
}

.icon-text-block .icon {
    margin-right: 2px;
    /*display: flex;*/
    align-items: center;
    justify-content: center;
    display: none;
}

.icon-text-block .icon svg {
    /*fill: #F00000;*/
    width: 20px;
    height: auto;
}

.icon-text-block .text .p_in_stock {
    /*font-size: 11px;*/
    /*text-transform: uppercase;*/
    /*font-weight: bold;*/
    /*height: 14px;*/
}

.icon-text-block .text .p_expected {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: bold;
    height: 14px;
    color: #F00000;
}

.wrap_discounted{
    background: white;
    padding: 20px 0;
}

.wrap_discounted .products{
    padding-bottom: 0px;
}


.discount-item{
    /*height: 192px;*/
    border-bottom: 1px solid #009933;
}

.discount-item:first-child{
    border-top: 1px solid #009933;
}

.head-discount{
    display: grid;
    grid-template-columns: 0.2fr 1fr;
    grid-template-rows: 1fr;
    grid-template-areas: ". .";
    height: 160px;
}

.left-section-discount{
    position: relative;
}

.right-section-discount{
    position: relative;
    padding-left: 10px;
}

.img-product-discount{
    position: relative;
    height: 140px;
    text-align: center;
}

.img-product-discount img{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.name-discount{
    position: absolute;
    bottom: 0px;
    left: 50%;
    color: #e8583c;
    font-size: 1.2em;
    font-weight: bold;
    text-transform: uppercase;
    transform: translate(-50%, 0%);
}

.name-discount-product{
    text-transform: uppercase;
    color: #3D3D3D;
    min-height: 45px;
    padding-top: 8px;
    font-size: 1.1em;
}

.discount-section-add-to-cart{
    height: 42px;
}

.wrap-cart{
    display: grid;
    grid-template-columns: 174px 117px 115px 52px;
    grid-template-rows: 42px;
    grid-template-areas: ". . . .";
    font-size: 1.1em;
    text-align: center;
    line-height: 40px;
    width: 458px;
    float: right;
}

.wrap-cart:hover{
    background: #e6e6e6;
}

#fn_discount_content{
    padding-left: 20px;
    padding-right: 20px;
}

.stock-buy-cart{
    width: 52px;
    height: 42px;
    background: none;
    outline: none;
    cursor: pointer;
    border: 1px solid #009933;
}

.stock-buy-cart svg {
    width: 24px;
    height: auto;
    position: relative;
    top: 0px;
    left: -1px;
}

.stock-svg-check {
    position: relative;
    top: 14px;
    left: -10px;
    display: none;
}

.stock-svg-check svg {
    width: 20px;
    height: auto;
}

.stock-svg-check-coming-soon svg {
    fill: #F00000;
}

.stock-svg-check-yes svg {
    fill: #009933;
}

.amount{
    width: 106px;
    height: 30px;
    line-height: 28px;
    background: #e6e6e6;
    border: none;
}

.input_amount{
    position: relative;
    top: 3px;
    background-color: #ffffff;
    height: 24px;
    width: 42px;
    font-size: 0.8em;
}

.plus, .minus {
    font-size: 14px;
    height: 30px;
    width: 28px;
    font-weight: bold;
    padding-top: 2px;
}

.plus{
    margin-left: 4px;
}

.plus:hover{
    background: #009933;
    color: white;
}

.minus:hover{
    background: #e8583c;
    color: white;
}

.minus{
    margin-right: 4px;
}

.discount-article-section{
    font-size: 1.1em;
}

.sku_nubmer{
    color: #3D3D3D;
}

.footer-discount{
    display: grid;
    grid-template-columns: 0.5fr 0.5fr 0.4fr 1fr;
    grid-template-rows: 1fr;
    grid-template-areas: ". . .";
    height: 33px;
    line-height: 30px;
    font-size: 1.1em;
    position: relative;
    text-align: center;
    border-top: 1px solid #e1e8ed;
    border-bottom: 1px solid #e1e8ed;
}

.footer-discount div.active{
    background: #e6e6e6;
}

.footer-discount div:first-child{
    border-left: 1px solid #e1e8ed;
}

.about-discount-product, .coment-discount-product, .exclude-div, .discount-additional-offers{
    position: relative;
    /*border-right: 1px solid #e1e8ed;*/
}

.footer-discount div:last-child{
    border-right: 1px solid #e1e8ed;
    border-left: none;
}

.footer-discount div:first-child{
    border-right: none;
}


/*.exclude-div{
    border-right: none;
}*/

.about-discount-product:hover, .coment-discount-product:hover, .discount-additional-offers:hover{
    background: #e6e6e6;
    cursor: pointer;
}

.hidden-content-discount div{
    display: none;
    min-height: 200px;
}

.hidden-content-discount div div{
    display: block;
    min-height: auto;
}

.hidden-content-discount div.active{
    display: block;
}

span#features{
    display: block;
    padding-top: 15px;
}

.hidden-content-discount div div.secret_number{
    display: inline-block;
}

.hidden-content-discount div div.discount_related_wrap{
    display: grid;
}

.hidden-content-discount div div.amount.fn_product_amount{
    display: inline-block;
}

.discount_related_wrap{
    grid-template-columns: 0.2fr 1fr;
    grid-template-rows: 1fr;
    grid-template-areas: ". .";
    height: 124px;
    border-bottom: 1px solid #e5e5e5;
    overflow: hidden;
}

.related-img-product-discount{
    height: 124px;
    text-align: center;
}

.related.clearfix{
    display: inline-block;
    width: 85%;
    position: relative;
    left: 15%;
}

* {
  box-sizing: border-box;
}

.purchase_name{
    color: #009933;
}

.total_sum.nowrap{
    color: #009933;
}

.button.g-recaptcha[data-language="cart_checkout"]{
    border: 1px solid #009933;
}

.purchase_remove svg{
    width: 20px;
}

.block{
    min-height: 300px;
}

.related_product{
    width: 100%;
    background: white;
    padding-bottom: 12px;
}

.related_product .product_name{
    text-align: center;
}

.related_product .fn_not_preorder{
    position: relative;
    text-align: right;
    margin-bottom: 0;
    padding-top: 6px;
}

.related_product .stock-svg-check.stock-svg-check-coming-soon{
    left: 15px;
    top: 6px;
}

.annotation_section{
    border: 1px solid #e8e8e1;
    padding: 8px;
    min-height: 175px;
    margin-top: 10px;
}

.wrap_share_section{
    position: relative;
    height: 57px;
    border-bottom: 1px solid #e8e8e1;
    margin-bottom: 20px;
}

.boder_top{
    border-top: 1px solid #e1e8ed;
}

.fn_validate_cart .secret_number{
    font-size: 1.5em !important;
}

.john-deere-menu .footer-product .title-product{
    /*position: absolute;
    top: 53%;
    transform: translate(0%, -50%);
    color: #009933;*/
    padding-top: 0;
    padding-bottom: 0px;
}

.kombajny-traktora-zhatki-menu .img-catalog img{
    display: none;
}

.kombajny-traktora-zhatki-menu .footer-product .title-product{
    position: absolute;
    top: 53%;
    transform: translate(0%, -50%);
    color: #009933;
}

.fn_variants .info_stock_prod_opt, .fn_variants .info_stock_prod{
    position: relative;
}

.fn_variants .info_stock_prod .stock-svg-check, .fn_variants .info_stock_prod_opt .stock-svg-check{
    position: absolute;
    top: 8px;
    left: -4px;
    display: none;
}

span[data-language='products_not_found']{
    display: none;
}

.product_title_opt{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr;
    grid-template-areas: ". . . . .";
}

.product_price_opt{
    padding-left: 0px;
    line-height: 34px;
    font-size: 1.2em;
    font-weight: bold;
}

.related_product_price{
    display: grid;
    /*grid-template-columns: 1fr 1fr;*/
    /*grid-template-rows: 1fr;*/
    /*grid-template-areas: ". .";*/
    /*overflow: hidden;*/
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto;
    text-align: center;
    margin: 4px 10px 10px 10px;
}

#wrap_about_company{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 0fr 1fr;
    gap: 0px 0px;
    grid-template-areas:
        ". ."
        ". .";
    align-items: center;
}

#wrap_payment_page tbody tr td, #wrap_delivery_page tbody tr td{
    width: 50%;
}

#wrap_contact_page{
    height: auto;
    width: 551px;
}

.wrap_phone_and_name{
    width: 229.43px; 
    height: auto;
}

.wrap_email{
    width: 310.57px; 
    height: auto;
}

.control {
    font-family: arial;
    display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 5px;
    padding-top: 3px;
    cursor: pointer;
    font-size: 16px;
}
.control input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}
.control_indicator {
    position: absolute;
    top: 2px;
    left: 0;
    height: 20px;
    width: 20px;
    background: #e6e6e6;
    border: 0px solid #000000;
    border-radius: 0px;
}
.control:hover input ~ .control_indicator,
.control input:focus ~ .control_indicator {
    background: #cccccc;
}

.control.control-checkbox span{
    position: relative;
    top: -3px;
}

.control input:checked ~ .control_indicator {
    background:  #009933;
}
.control:hover input:not([disabled]):checked ~ .control_indicator,
.control input:checked:focus ~ .control_indicator {
    background: #0e6647;
}
.control input:disabled ~ .control_indicator {
    background: #e6e6e6;
    opacity: 0.6;
    pointer-events: none;
}
.control_indicator:after {
    box-sizing: unset;
    content: '';
    position: absolute;
    display: none;
}
.control input:checked ~ .control_indicator:after {
    display: block;
}
.control-checkbox .control_indicator:after {
    left: 8px;
    top: 4px;
    width: 3px;
    height: 8px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.control-checkbox input:disabled ~ .control_indicator:after {
    border-color: #7b7b7b;
}
.control-checkbox .control_indicator::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 4.5rem;
    height: 4.5rem;
    margin-left: -1.6rem;
    margin-top: -1.5rem;
    background: #009933;
    border-radius: 3rem;
    opacity: 0.6;
    z-index: 99999;
    transform: scale(0);
}
@keyframes s-ripple {
    0% {
        transform: scale(0);
    }
    20% {
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(1);
    }
}
@keyframes s-ripple-dup {
    0% {
        transform: scale(0);
    }
    30% {
        transform: scale(1);
    }
    60% {
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(1);
    }
}
.control-checkbox input + .control_indicator::before {
    animation: s-ripple 250ms ease-out;
}
.control-checkbox input:checked + .control_indicator::before {
    animation-name: s-ripple-dup;
}

.link_all_discount_products, .link_all_recommended_products{
    background: white;
    display: block;
    text-align: right;
    text-transform: lowercase;
    font-size: 0.9em;
    padding-right: 10px;
    color: #696a6a;
    font-weight: normal;
    padding-top: 2px;
}

.link_all_discount_products a, .link_all_recommended_products a{
    text-decoration: none; 
}

.link_all_discount_products a:hover{
    color:#F00000;
}

.link_all_recommended_products a:hover{
    color:#367c2b;
}

.badge{
    display: none;
    position: absolute;
    top: -40px;
    right: -40px;
    width: 100%;
    padding: 3px 0;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    transform: translateX(30%) translateY(0%) rotate(45deg);
    -ms-transform: translateX(30%) translateY(0%) rotate(45deg);
    -webkit-transform: translateX(30%) translateY(0%) rotate(45deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
}

.badge.show{
    display: block;
}

.badge.red{
    background: rgb(247 11 49);
    background-image: radial-gradient( circle farthest-corner at 50% 50%, rgb(247 11 49) 30%, rgb(70 1 1) 82.8% );
}

.text-color-white{
    color: white;
}

.font-weight-bold{
    font-weight: bold;
}





.header_main {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 10px;
}

.header_main .contact_list {
    display: flex;
    align-items: center;
}

.header_main .social_networks_links_wr {
    display: flex;
    align-items: center;
}

.contact_list img {
    width: 25px;
    margin-right: 10px;
    box-sizing: border-box;
}

.list_phone_num {
    display: flex;
    flex-wrap: wrap;
    gap: 0 20px;
    max-width: 392px;
}

.list_phone_num .company_phone {
    line-height: 24px;
}


.header-right {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.header-right .top_nav {
    margin-top: auto;
}

.header-right ul {
    padding: 0;
    margin: 0;
}

.header-right .header-contact {
    display: flex;
    justify-content: end;
    gap: 10px;
}

.hd_parts_ag {
    border: 1px solid #CDCDCD;
    box-shadow: inset -1px 2px 8px 0 rgba(28, 43, 71, 0.14);
}

.hd_parts_ag a {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}

.hd_parts_ag a img {
    max-height: 30px;
}

.hd_parts_ag a svg {
    max-height: 35px;
    fill: #0e9200;
}

.custom_page_container {
    display: flex;
    column-gap: 10px;
    row-gap: 10px;
    margin-bottom: 15px;
}

.custom_page_container_item {
    flex: 1;
}

.shipping_address_list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 15px;
}

.shipping_address_item {
    min-width: 630px;
    padding: 15px;
    background-color: #F1F1F1;
    border: solid 1px #ccc;
    border-radius: 5px;
}

.custom-checkbox {
    position: relative;
    padding-left: 25px;
    cursor: pointer;
    user-select: none;
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: #ffffff;
    border: 1px solid #ccc;
}

.custom-checkbox input:checked ~ .checkmark {
    background-color: #009933;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.custom-checkbox input:checked ~ .checkmark:after {
    display: block;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.buy_in_one_click {
    display: flex;
    justify-content: flex-end;
}

.btn_buy_in_one_click {
    width: 100%;
    height: 30px;
    background-color: #ffffff;
    color: #454545;
    border: solid 1px #009933;
    border-left: none;
    cursor: pointer;
    border-radius: 0 3px 3px 0;

    text-transform: uppercase;
    font-size: 12px;
    line-height: 30px;
}

.btn_buy_in_one_click:hover {
    background-color: #FDDA01;
    color: #454545;
}

.input_buy_in_one_click {
    width: 100%;
    height: 30px;
    line-height: 30px;
    border: solid 1px #009933;
    border-radius: 3px 0 0 3px;
    padding: 0;
    text-align: center;
}

.input_buy_in_one_click::placeholder {
    color: #999;
    opacity: 1;
}


.btn_buy_in_one_click:disabled {
    background-color: #e6e6e6;
    color: #3D3D3D;
    cursor: not-allowed;
}


@media (max-width: 991px) {
    .custom_page_container {
        flex-direction: column;
        margin-bottom: 30px;
    }

    .custom_page_container.column-reverse {
        flex-direction: column-reverse;
        margin-bottom: 30px;
    }
}

/* Desktop scroll hide - header elements */
/*.header-contact,*/
.slider-header {
    transition: opacity 0.3s ease, max-height 0.3s ease, margin 0.3s ease, padding 0.3s ease;
    overflow: hidden;
}

.header.desktop-scrolled .header-contact,
.header.desktop-scrolled .slider-header {
    opacity: 0;
    max-height: 0;
    margin: 0;
    padding: 0;
    pointer-events: none;
}

/* Desktop sticky header - fixed positioning */
.header.desktop-scrolled {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #fff;
}

/* Mobile sticky header - fixed positioning */
.header.mobile-scrolled {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #fff;
}

body.has-mobile-fixed-header {
    padding-top: var(--header-height, 158px);
}

.discount_type_tier {
    color: #009933;
}