body {
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: #777777;
    line-height: 1.4;
    background-color: #f2f2f2;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,.2)), color-stop(100%,rgba(0,0,0,0)));
    background-image: -webkit-linear-gradient(top, rgba(0,0,0,.2) 0%,rgba(0,0,0,0) 100%);
    background-image: -moz-linear-gradient(top, rgba(0,0,0,.2) 0%, rgba(0,0,0,0) 100%);
    background-image: -ms-linear-gradient(top, rgba(0,0,0,.2) 0%,rgba(0,0,0,0) 100%);
    background-image: -o-linear-gradient(top, rgba(0,0,0,.2) 0%,rgba(0,0,0,0) 100%);
    background-image: linear-gradient(to bottom, rgba(0,0,0,.2) 0%,rgba(0,0,0,0) 100%);
    min-width: 320px;
}
.main {
    flex: 1 0 auto;
}
.main_container {
    background-color: #fff;
    position: relative;
}
.header,
.footer {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
.h1,
.h2,
.h3 {
    line-height: 1.1;
    font-weight: bold;
    font-family: inherit;
    text-transform: uppercase;
    color: #2185d1;
}
.h1 {
    display: block;
    font-size: 20px;
    margin-bottom: 10px;
}
.h2 {
    font-size: 18px;
    margin-bottom:  15px;
}
.h3 {
    font-size: 14px;
    font-weight: normal;
}
a {
    color: #303030;
    text-decoration: none;
}
a:hover {
    color: #777777;
}
img {
    max-width: 100%;
}
.image img {
    max-height: 100%;
    vertical-align: middle;
}
.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,
.center_align {
    text-align: center;
}
.fleft {
    float: left;
}
.fright {
    float: right;
}
.nowrap {
    white-space: nowrap;
}
.table {
    width: 100%;
    max-width: 100%;
    border-bottom: 1px solid #c5c5c5;
    margin-bottom: 25px;
}
.table th,
.table td {
    padding: .75rem;
    line-height: 1.5;
    vertical-align: top;
    border-top: 1px solid #c5c5c5;
    text-align: left;
}
.table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #c5c5c5;
}
.table_bordered {
    border: 1px solid #c5c5c5;
}
.table_bordered th,
.table-bordered td {
    border: 1px solid #c5c5c5;
    padding: 5px;
}
.table_bordered thead th,
.table_bordered thead td {
    border-bottom-width: 2px;
}
.table_striped tbody tr:nth-of-type(odd) {
    background-color: #f9f9f9;
}
.table_hover tbody tr:hover {
    background-color: #f5f5f5;
}
.label {
    display: block;
    margin-bottom: 2px;
}
.block {
    margin-bottom: 20px;
}
/* Form */
.form_group {
    margin-bottom: 10px;
    position: relative;
}
.form_input {
    height: 37px;
    background-color: #fff;
    border: 1px solid #d7d7d7;
    border-radius: 4px;
    padding-left: 8px;
    padding-right: 8px;
    width: 100%;
    font-family: inherit;
    font-size: 13px;
    color: #555555;
}

.form_select {
    width: 100%;
    height: 37px;
    background-color: #fff;
    line-height: 35px;
    padding: 0 35px 0 8px;
    border: 2px solid #d7d7d7;
    border-radius: 4px;
    -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;
}

.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,
.filled .form_placeholder,
.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);
}

.placeholder_focus:-webkit-autofill,
.placeholder_focus:-webkit-autofill:hover,
.placeholder_focus:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 30px #fff inset;
    box-shadow: 0 0 0 30px #fff inset;
    -webkit-text-fill-color: inherit !important;
}

.form_placeholder.active,
.filled .form_placeholder,
.placeholder_focus.error ~ label ~ .form_placeholder,
.placeholder_focus:focus ~ .form_placeholder,
.placeholder_focus:-webkit-autofill ~ .form_placeholder,
.placeholder_focus:-webkit-autofill:focus ~ .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_placeholder{
    pointer-events:none;
}

.form_textarea {
    display: block;
    width: 100%;
    border: 1px solid #d7d7d7;
    border-radius: 4px;
    background-color: #fff;
    padding: 6px 8px;
    font-family: inherit;
    font-size: 13px;
}
.captcha {
    display: inline-block;
    vertical-align: top;
    margin-right: 5px;
    margin-bottom: 10px;
}
.form_captcha{
    display: inline-block;
    position: relative;
    margin: 0 0 0 17px;
    vertical-align: top;
}
.popup .captcha {
    margin: 0;
}
.input_captcha {
    width: 150px;
}
.secret_number {
    border: 1px solid #e8e8e1;
    padding: 9px;
    line-height: 17px;
    border-radius: 2px;
    background: #f5f8f9;
    display: inline-block;
    position: relative;
    text-shadow: 1px 1px #38c0f3, -1px 1px mediumturquoise, -1px -1px mediumturquoise, 1px -1px mediumturquoise;
    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: 20px;
    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;
}
.popup {
    min-width: 260px;
    border: 1px solid #d7d7d7;
    padding: 12px 15px;
    text-align: center;
    font-size: 14px;
}
.popup_heading {
    font-size: 16px;
    text-align: center;
    color: #2185d1;
    font-weight: normal;
    line-height: normal;
    text-transform: uppercase;
    margin: 0 0 10px;
}
#sm_logo {
    float: right;
    margin-left: 25px;
    line-height: 0;
}
.promo_img {
    position: absolute;
    max-width: 80px;
    max-height: 80px;
    top: 0;
    left: 0;
}
#map {
    width:100%;
}
#left,
#content {
    position: relative;
    padding-bottom: 30px;
}
#logo b,
#logo span,
.cart_info span,
.product_name,
#catalog_menu li,
#catalog_menu a,
.blog_name{
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -ms-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}
/* Иконки */
.cart_icon {
    display: inline-block;
    width: 22px;
    height: 22px;
    background: url(../images/sprite.svg) no-repeat -100px -219px;
    vertical-align: middle;
}
.button .cart_icon {
    margin: -4px 0 0 4px;
}
#cart_informer .cart_icon {
    margin: -6px 3px 0 0;
}
/* @group Header */
#wish_compare,
#wish_compare a {
    color: #2185d1;
    text-transform: uppercase;
    font-size: 14px;
}
#wish_compare a:hover,
.callback_link:hover {
    color: #303030;
}
#phones a {
    display: block;
    line-height: 24px;
}
.top_phone  {
    font-size: 20px;
}
.callback_link {
    font-size: 14px;
    color: #2185d1;
    text-transform: uppercase;
}
#header {
    padding-top: 10px;
    padding-bottom: 10px;
}
.head_container {
    background-color: #fff;
}
#logo a {
    display: block;
}
#logo b {
    font-size: 44px;
    line-height: 1em;
    color: #2185d1;
    letter-spacing: -1px;
    font-weight: bold;
}
#logo span{
    display: block;
    margin: 5px 0 0 0;
    font-size: 18px;
    text-align: center;
    line-height: 1em;
    color: #303030;
    text-transform: uppercase;
    opacity: 1.0
}
#logo:hover b {
    color: #303030;
}
#logo:hover span {
    opacity: 0.5;
}
.cart_info {
    display: inline-block;
    color: #2185d1;
    font-size: 18px;
    text-transform: uppercase;
}
a.cart_info:hover {
    color: #303030;
}
.cart_info span {
    text-transform: none;
    font-size: 14px;
    white-space: nowrap;
}
#cart_informer {
    margin-top: 7px;
}
#search {
    margin: 8px 0 0 0;
}
.search {
    position: relative;
    padding: 0;
    background: #f2f2f2;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -webkit-box-shadow: inset 2px 2px 10px 0 rgba(0,0,0,.6);
    box-shadow: inset 2px 2px 10px 0 rgba(0,0,0,.6);
}
.input_search {
    width: 100%;
    max-width: 100%;
    height: 38px;
    padding: 0 58px 0 12px;
    background: none;
    border: none;
    margin-bottom: 0;
}
.button_search {
    position: absolute;
    top: 0;
    right: 0;
    width: 58px;
    height: 38px;
    border: none;
    margin: 0;
    color: #ffffff;
    background: #3d97dc;
    -webkit-border-radius: 0 5px 5px 0;
    -moz-border-radius: 0 5px 5px 0;
    border-radius: 0 5px 5px 0;
    -webkit-box-shadow: inset -1px -1px 0 0 rgba(0,0,0,.1), inset 1px 0 0 0 rgba(0,0,0,.1);
    box-shadow: inset -1px -1px 0 0 rgba(0,0,0,.1), inset 1px 0 0 0 rgba(0,0,0,.1);
    cursor: pointer;
}
.button_search:hover {
    background: #232323;
}
/*Меню для мобильных*/
#top {
    z-index: 101;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    background: #232323;
    height: 50px;
    overflow: hidden;
}
#mobile_control,
#top_search {
    width: 55px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    float: left;
    color: #fff;
}
#top_search  {
    border-left: 1px solid #363636;
}
.menu_icon {
    width: 36px;
    height: 36px;
    vertical-align: middle;
}
.search_icon {
    width: 26px;
    height: 34px;
    vertical-align: middle;
}
/* @group Левый сайдбар */
.side_heading,
.filter_control {
    position: relative;
    margin: 0;
    padding: 8px 15px 6px;
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    text-transform: uppercase;
    background: #9d9f9e;
}
.filter_control::after {
    content: "";
    display: block;
    position: absolute;
    top: 8px;
    right: 15px;
    width: 20px;
    height: 20px;
    background: url(../images/sprite.svg);
    background-position: -116px 0px;
    -webkit-transition: transform .3s ease-in-out;
    -moz-transition: transform .3s ease-in-out;
    -ms-transition: transform .3s ease-in-out;
    -o-transition: transform .3s ease-in-out;
    transition: transform .3s ease-in-out;
}
.filter_control.active::after  {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}
.main_banner {
    margin-top: 30px;
}
#catalog_list {
    position: relative;
}
.category_item {
    position: relative;
}
.category_link {
    display: block;
    text-transform: uppercase;
}
.cat_switch {
    content: "";
    display: block;
    position: absolute;
    right: 5px;
    top: 8px;
    width: 20px;
    height: 20px;
    background: url(../images/sprite.svg) no-repeat -36px 0px ;
    cursor: pointer;
    -webkit-transition: transform .3s ease-in-out;
    -moz-transition: transform .3s ease-in-out;
    -ms-transition: transform .3s ease-in-out;
    -o-transition: transform .3s ease-in-out;
    transition: transform .3s ease-in-out;
}
.submenu .cat_switch {
    background-position: 5px -180px ;
}
.cat_switch:hover {
    background-position: -76px 0px ;
}
.submenu .cat_switch:hover  {
    background-position: -31px -180px ;
}
.cat_switch.active {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}
.submenu {
    display: none;
}
.opened > .submenu {
    display: block;
}
/*Товары в сайдбаре*/
.side_product {
    overflow: hidden;
    padding: 15px 0;
}
.side_product:last-child {
    padding-bottom: 0;
}
.side_product ~ .side_product {
    border-top: 1px solid #c6c6c6;
}
.side_product .image {
    height: 120px;
    line-height: 100px;
    padding: 10px;
    text-align: center;
    background: #fff;
    border-radius: 3px;
    position: relative;
    margin-bottom: 5px;
}
.side_product .product_name {
    margin: 0 0 5px 0;
    line-height: normal;
}
.page_title {
    margin-top: 30px;
    padding: 10px 20px 10px 20px;
    border-bottom: 2px solid #c6c6c6;
    font: 500 18px Roboto;
    color: #303030;
    text-transform: uppercase;
    background: #dfdfdf;
    background: -webkit-linear-gradient(top, #e6e6e6 0%,#dfdfdf 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e6e6e6), color-stop(100%,#dfdfdf));
    background: -moz-linear-gradient(top, #e6e6e6 0%, #dfdfdf 100%);
    background: -ms-linear-gradient(top, #e6e6e6 0%,#dfdfdf 100%);
    background: -o-linear-gradient(top, #e6e6e6 0%,#dfdfdf 100%);
    background: linear-gradient(to bottom, #e6e6e6 0%,#dfdfdf 100%);
}
.breadcrumb + .page_title {
    margin: 0 0 15px;
}
/* Хлебные крошки */
.breadcrumb {
    margin: 0;
    padding: 15px 0;
    color: #777;
}
.breadcrumb li {
    list-style: none;
    display: inline-block;
}
.breadcrumb li ~ li::before {
    content: "/";
    margin-right: 3px;
}
.breadcrumb a {
    color: #777;
}
.breadcrumb a:hover {
    color: #303030;
}
/*Просмотренные товары*/
.browsed_list {
    margin: 5px -5px 25px;
    overflow: hidden;
}
.browsed_item {
    padding: 5px;
    float: left;
    width: 25%;
}
.browsed_item a {
    display: block;
    height: 56px;
    padding: 2px;
    line-height: 50px;
    text-align: center;
    border: 1px solid #e5e5e5;
    font-size: 0;
    overflow: hidden;
    background-color: #fff;
}
.browsed_item img {
    vertical-align: middle;
    max-height: 100%;
}
.news .page_title {
    margin-bottom: 30px;
}
.news_image {
    display: block;
    height: 125px;
    position: relative;
    overflow: hidden;
    margin-bottom: 10px;
}
.news_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.news_date {
    margin: 0 0 5px;
}
.all_news {
    text-decoration: none;
    text-transform: none;
    border-bottom: 1px dotted;
    font-weight: normal;
    font-size: 14px;
}
.all_news:hover {
    color: #303030;
    border-bottom-color: transparent;
}
.news_name {
    margin-bottom: 6px;
}
.news_name a {
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
}
.news_name a:hover {
    text-decoration: underline;
}
.news_annotation {
    height: 57px;
    overflow: hidden;
}
.news_annotation p {
    margin: 0;
}
.main_body .page_title {
    margin: 30px 0 22px;
}
/* Каталоги */
.products {
    margin-top: 10px;
    margin-left: -10px;
    margin-right: -10px;
}
.products .product {
    width: 33.3333333%;
    float: left;
    padding-left: 10px;
    padding-right: 10px;
    position: relative;
    overflow: hidden;
}
.list .products .product {
    width: 100%;
    float: none;
}
.products .image,
.compar_product .image {
    padding: 15px;
    background: #fff;
    border-radius: 5px;
    border: 2px solid #c6c6c6;
    text-align: center;
    overflow: hidden;
    position: relative;
}
.compar_product .details {
    padding-bottom: 20px;
}
.products .image::before,
.products .image::after {
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    background: rgba(48,48,48,.1);
    position: absolute;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -ms-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    pointer-events: none;
}
.products .image::before {
    left: -100%;
    top: -100%;
}
.products .image::after {
    right: -100%;
    bottom: -100%;
}
.products .card:hover .image::before,
.products .card.hover .image::before {
    left: 0;
    top: 0;
}
.products .card:hover .image::after,
.products .card.hover .image::after {
    right: 0;
    bottom: 0;
}
.select_overlay {
    opacity: 0;
    position: absolute;
    width: 150px;
    height: 34px;
    left: 50%;
    margin-left: -75px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    cursor: pointer;
    outline: none;
    border: 2px solid #c6c6c6;
    border-radius: 5px;
}
.card:hover .select_overlay,
.card.hover .select_overlay {
    opacity: 1;
}
.products .product_name,
.compar_product .product_name {
    display: block;
    margin: 5px 0;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: normal;
    color: #2185d1;
}
.product_name:hover,
.compar_product .product_name:hover {
    color: #303030;
}
.products .details {
    text-align: center;
}
.products .annotation {
    line-height: 18px;
    max-height: 144px;
    overflow: hidden;
    color: #777777;
    margin-bottom: 10px;
}
.grid .annotation {
    display: none;
}
.annotation p {
    margin-bottom: 0;
}
.price {
    font-weight: bold;
    font-size: 15px;
    color: #1f1f1f;
    white-space: nowrap;
    margin-right: 5px;
}
.old_price {
    text-decoration: line-through;
    font-size: 15px;
    color: #777777;
    white-space: nowrap;
}
.list .product {
    border-bottom: 1px solid #ececec;
    padding-bottom: 20px;
}
.list .product,
.grid .product,
.wishlist_page .product {
    margin-bottom: 20px;
}
.list .product:last-child {
    border-bottom: none;
}
.list .image {
    float: left;
    width: 250px;
    height: auto;
    margin-right: 30px;
}
.list .details {
    text-align: left;
}
.list .product_name {
    margin-top: 0;
}
.card {
    position: relative;
}
/*Кнопки*/
.button {
    display: inline-block;
    position: relative;
    height: 37px;
    line-height: 37px;
    padding: 0 15px;
    border: none;
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
    background: #0b6cb6;
    background: -webkit-linear-gradient(top, #278cd9 0%,#0b6cb6 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#278cd9), color-stop(100%,#0b6cb6));
    background: -moz-linear-gradient(top, #278cd9 0%, #0b6cb6 100%);
    background: -ms-linear-gradient(top, #278cd9 0%,#0b6cb6 100%);
    background: -o-linear-gradient(top, #278cd9 0%,#0b6cb6 100%);
    background: linear-gradient(to bottom, #278cd9 0%,#0b6cb6 100%);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -webkit-box-shadow: inset -1px -1px 0 0 rgba(0,0,0,.2), inset 1px 0 0 0 rgba(0,0,0,.2);
    box-shadow: inset -1px -1px 0 0 rgba(0,0,0,.2), inset 1px 0 0 0 rgba(0,0,0,.2);
    cursor: pointer;
}
.button:hover {
    color: #fff;
    background: #232323;
}
.product .button {
    padding: 0 41px 0 15px;
}
.products .button,
.compar_product .button{
    margin-top: 7px;
}
.product .button:after {
    content: "";
    display: block;
    position: absolute;
    top: 6px;
    right: 13px;
    width: 22px;
    height: 22px;
    background: url(../images/sprite.svg) no-repeat 0 -219px;
}
/* Сортировка */
.cat_descr {
    margin-bottom: 25px;
}
.category_toolbar {
    margin-bottom: 15px;
}
.view {
    float: right;
    padding-top: 2px;
}
.view span {
    display: block;
    float: left;
    width: 24px;
    height: 24px;
    cursor: pointer;
}
.view span:hover,
.view span.selected {
    color: #2185d1;
}
.products_sort {
    float: left;
}
.sort_label {
    display: inline-block;
    margin-right: 3px;
}
.sort_select {
    display: inline-block;
    padding: 4px;
    cursor: pointer;
    border: 1px solid #c6c6c6;
    font: normal 13px 'Arial';
    color: #777777;
    border-radius: 5px;
    background: transparent;
}
/* Фильтры*/
.sel_heading {
    text-transform: uppercase;
    font-size: 12px;
    margin-bottom: 5px;
}
.filter_reset {
    -webkit-appearance: none;
    display: block;
    font-family: inherit;
    padding: 2px 4px;
    background: #d2d2d2;
    border: 1px solid #c6c6c6;
    border-radius: 4px;
    cursor: pointer;
    color: #2185d1;
}
.filter_reset:hover {
    border-color: #2185d1;
}
.selected_filter_boxes {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-bottom: 20px;
}
.selected_filter_item {
    display: inline-flex;
    vertical-align: top;
    margin-right: 15px;
    margin-top: 5px;
    margin-bottom: 5px;
}
.s_filter_link {
    -webkit-appearance: none;
    background: none;
    border: none;
    display: block;
    text-decoration: none;
    cursor: pointer;
    font-family: inherit;
    padding: 0;
    font-size: 14px;
    color: inherit;
}
.s_filter_link:hover {
    color: #2185d1;
}
.s_filter_link .remove_icon {
    width: 14px;
    height: 14px;
    vertical-align: top;
    margin-left: 2px;
    margin-top: 2px;
}
.s_filter_link:hover .remove_icon {
    color: #fe2a2a;
}
.filter_heading {
    display: block;
    border-top: 1px solid #c6c6c6;
    text-transform: uppercase;
    padding-top: 15px;
}
.filter_group {
    display: block;
    padding: 10px 0 10px 10px;
    margin-bottom: 5px;
}
.filter_list {
    padding: 0 0 3px;
    overflow: hidden;
}
.filter_link {
    -webkit-appearance: none;
    display:  block;
    position: relative;
    background: none;
    border: none;
    padding: 0;
    padding-left: 15px;
    line-height: 20px;
    text-decoration: none;
    text-align: left;
    cursor: pointer;
}
.angle_right {
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 18px;
}
.filter_link.checked {
    color: #2185d1;
}
.min_input,
.max_input {
    width: 47%;
    border: none;
    background: none;
    margin-top: 10px;
}
.max_input {
    text-align: right;
}
/* @group Карточка товара */
#flypage {
    padding-bottom: 20px;
}
.gallery {
    text-align: center;
    margin-bottom: 25px;
}
.gallery .image {
    background: #fff;
    border: 2px solid #d7d7d7;
    padding: 15px;
    border-radius: 5px;
    line-height: 300px;
}
.images {
    margin-top: 20px;
    padding: 0 20px;
}
.images_item {
    padding: 0 3px;
}
.images a {
    display: block;
    position: relative;
    border: 1px solid #d7d7d7;
    border-radius: 5px;
    padding: 3px;
    text-align: center;
    font-size: 0;
    height: 100px;
}
.images img {
    vertical-align: middle;
    max-height: 100%;
}
.product_info {
    margin-bottom: 25px;
}
#flypage .price_container {
    margin-bottom: 15px;
}
#flypage .button {
    margin-right: 22px;
    vertical-align: top;
}
.remove_link {
    display: block;
    text-align: center;
    padding: 15px 0 7px;
    color: #fe2a2a;
}
.remove_link .remove_icon {
    vertical-align: top;
    margin-top: -2px;
}
.product_compare,
.product_wish {
    color: #2185d1;
}
.product_compare:hover,
.product_wish:hover,
.remove_link:hover {
    color: #303030;
        }
.product_compare::after,
.product_wish:after {
    content: attr(title);
}
.adding_link {
    display: inline-block;
    vertical-align: top;
    line-height: 16px;
}
.adding_link div:first-child {
    margin-bottom: 5px;
}
.add_to {
    margin: 15px 0;
}
#flypage .amount {
    display: inline-block;
    vertical-align: top;
    margin-right: 30px;
}
.product_var {
    display: inline-block;
    vertical-align: top;
}
.product_var select {
    height: 37px;
    padding: 0 8px;
    border: 1px solid #d7d7d7;
    color: #777777;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
.product_details {
    padding: 10px 0;
    border-top: 1px solid #d7d7d7;
    border-bottom: 1px solid #d7d7d7;
    margin-bottom: 10px;
}
.sku + .available {
    margin-top: 5px;
}
.in_stock {
    color: #65bc54;
}
.not_in_stock {
    color: #f00;
}
.product_description {
    margin-bottom: 20px;
}
.product_description .h2 {
    margin-bottom: 10px;
}
.product_details label {
    color: #777;
}
.features {
    list-style: none;
    width: 100%;
    display: block;
    clear: both;
    margin: 0 0 20px;
    padding: 0;
    border-left: 1px solid #d7d7d7;
    border-right: 1px solid #d7d7d7;
    border-bottom: 1px solid #d7d7d7;
}
.features li {
    overflow: hidden;
    border-top: 1px solid #d7d7d7;
    padding: 10px 5px 10px 5px;
}
.features label {
    font-style: normal;
    display: block;
    width: 30%;
    float: left;
    font-weight: 500;
    margin: 0;
    color: #303030;
}
.features span {
    float: left;
    display: block;
    width: 70%;
    padding-left: 15px;
}
.rel_blog {
    margin-top: 20px;
}
.footer {
    padding: 24px 0 26px 0;
    background: #232323;
}
.foot_item {
    display: inline-block;
    margin: 0 20px 0 0;
}
.copyright a {
    color: #777777;
}
.copyright a:hover {
    color: #fff;
}
.foot_menu {
    margin: 15px 0;
}
#subscribe_container {
    overflow: hidden;
}
.subscribe_title{
    margin-bottom: 3px;
    line-height: 1;
}
.subscribe_form {
    width: 290px;
    position: relative;
    display: inline-block;
}
.subscribe_input {
    width: 100%;
    padding-right: 140px;
    max-width: 100%;
    height: 34px;
    border-radius: 4px;
}
.subscribe_button {
    position: absolute;
    top: 0;
    right: 0;
    height: 34px;
    width: 135px;
    padding: 0 5px;
    text-align: center;
    line-height: 34px;
    border-radius: 0  4px 4px 0;
    background: #777;
}
.subscribe_button:hover {
    background: #0b6cb6;
}
/**Кнопка вверх**/
.to_top {
    width: 42px;
    height: 26px;
    position: fixed;
    bottom: 30px;
    right: 0;
    z-index: 9999;
    display: block;
    margin-bottom: 7px;
    background: url(../images/up-arrow.png) no-repeat left 0px;
    cursor: pointer;
}
.to_top:hover {
    background-position: left bottom;
}
/* Блог */
.blog_item {
    margin-bottom: 20px;
}
.blog_name,
.blog_date {
    margin: 0 0 5px;
}
.blog_name a {
    color: #2185d1;
    font-size: 18px;
    text-transform: uppercase;
}
.blog_name a:hover {
    color: #ff9c00;
}
.blog_image {
    position: relative;
    margin: 0 25px 10px 0;
    float: left;
    width: 150px;
    height: 110px;
    padding: 0;
}
.blog_image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.post {
    margin-bottom: 25px;
}
.comment_list {
    margin-bottom: 15px;
}
.comment_header {
    color: #303030;
}
.author {
    font-weight: bold;
}
.comment_text {
    padding-left: 20px;
}
.admin_note {
    padding-left: 20px;
}
.no_comments {
    margin-bottom: 15px;
}
/* Бренды */
.brand_link {
    display: flex;
    height: 100px;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    text-align: center;
}
.brand_item {
    margin-bottom: 20px;
}
/* @group Постраничная навигация */
.pagination {
    margin: 0 0 10px;
    padding: 0;
    list-style: none;
    display: inline-block;
    overflow: hidden;
    background: #232323;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    overflow: hidden;
}
.page_item {
    float: left;
}
.page_link {
    display: block;
    padding: 7px 10px;
    min-width: 30px;
    text-align: center;
    color: #ffffff;
    -webkit-box-shadow: inset 1px 0 0 0 rgba(255,255,255,.1);
    box-shadow: inset 1px 0 0 0 rgba(255,255,255,.1);
}
.page_link:hover {
    color: #2185d1;
}
.active .page_link:hover,
.active .page_link {
    font-weight: bold;
    cursor: default;
    background: #0b6cb6;
    background: -webkit-linear-gradient(top, #278cd9 0%,#0b6cb6 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#278cd9), color-stop(100%,#0b6cb6));
    background: -moz-linear-gradient(top, #278cd9 0%, #0b6cb6 100%);
    background: -ms-linear-gradient(top, #278cd9 0%,#0b6cb6 100%);
    background: -o-linear-gradient(top, #278cd9 0%,#0b6cb6 100%);
    background: linear-gradient(to bottom, #278cd9 0%,#0b6cb6 100%);
    color: #fff;
}
/* Корзина */
.purchases,
#order_purchase {
    margin-bottom: 25px;
}
.purchase_item {
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 2px solid #d7d7d7;
    overflow: hidden;
}
.purchase_image {
    width: 120px;
    float: left;
    background: #fff;
    border-radius: 5px;
    border: 1px solid #d7d7d7;
}
.purchase_image a {
    display: block;
    text-align: center;
    font-size: 0;
    height: 120px;
    line-height: 100px;
    padding: 10px;
}
.purchase_image img {
    vertical-align: middle;
}
.purchase_details {
    margin-left:  150px;
}
.purchase_remove {
    float: right;
    width: 20px;
    text-align: right;
    overflow: hidden;
    margin: 0 5px 0 30px;
}
.purchase_remove a {
    color: #fe2a2a;
}
.purchase_remove a:hover,
.purchase_name a:hover {
    color: #303030;
}
.purchase_name {
    margin: 15px 0;
    padding-bottom: 15px;
    border-bottom: 1px solid #d7d7d7;
}
.purchase_name a {
    font-size: 15px;
    font-weight: 500;
    color: #2185d1;
    text-transform: uppercase;
}
.download_attachment {
    white-space: nowrap;
    border-bottom: 1px dotted green;
    background-color: #ccff72;
}
.purchase_price,
.purchase_amount,
.purchase_sum {
    float: left;
    width: 33.333%;
    margin: 0;
}
.purchase_price,
.purchase_sum,
#order_purchase .purchase_amount {
    line-height: 37px;
}
.purchase_price span,
.purchase_sum span {
    font-weight: bold;
    font-size: 15px;
    color: #1f1f1f;
}
.purchase_price label,
.purchase_sum label {
    font-size: 12px;
    margin-right: 5px;
}
.purchase_amount {
    text-align:center;
}
.purchase_amount .amount {
    width: 100px;
    display: inline-block;
}
.purchase_sum {
    text-align: right;
    padding-right: 3px;
}
.input_amount {
    width: 50px;
    height: 37px;
    border: 1px solid #d7d7d7;
    border-radius: 5px;
    padding:  0 6px;
    text-align: center;
    vertical-align: middle;
}
.plus,
.minus {
    display: inline-block;
    width: 20px;
    font-size: 20px;
    vertical-align: middle;
    font-weight: 300;
    cursor: pointer;
    text-align: center;
}
.plus:hover,
.minus:hover {
    color: #303030;
}
.purchase_total {
    display: table;
    float: right;
}
.total_row {
    display: table-row;
}
.total_row > span {
    display: table-cell;
    padding: 5px 3px;
}
.input_coupon {
    display: inline-block;
    vertical-align: top;
    width: 200px;
    height: 37px;
    border: 1px solid #d7d7d7;
    border-radius: 5px;
    padding:  0 6px;
    margin: 0 7px 10px;
}
.coupon_btn {
    vertical-align: top;
    margin: 0 0 15px;
}
#total {
    padding: 5px 0;
    border-bottom: 2px solid #d7d7d7;
    border-top: 2px solid #d7d7d7;
    color: #303030;
    text-align: right;
    overflow: hidden;
}
#order_total {
    padding: 0 0 10px;
    border-bottom: 2px solid #d7d7d7;
    color: #303030;
    text-align: right;
    overflow: hidden;
}
.total_sum {
    font-weight: bold;
}
.total_name {
    font-size: 12px;
}
.price_total .total_sum {
    font-size: 18px;
}
.price_total .total_name {
    text-transform: uppercase;
    font-size: 18px;
    font-weight: bold;
}
.delivery {
    margin-top: 20px;
    margin-bottom: 25px;
    border-radius: 5px;
    border: 1px solid #d7d7d7;
    padding: 20px 20px 0 20px;
}
.delivery_item {
    margin-bottom: 20px;
}
.radio_input {
    position: absolute;
    top: 3px;
    left: 0;
}
.delivery_label {
    position: relative;
    display: block;
    margin-bottom: 5px;
}
.delivery_label,
.delivery_description {
    display: block;
    padding-left: 25px;
}
.delivery_label img {
    vertical-align: bottom;
    margin-right: 3px;
}
.delivery_name {
    color: #1f1f1f;
    font-size: 14px;
    font-weight: normal;
    text-transform: uppercase;
}
.pass_remind {
    text-decoration: underline;
}
.pass_remind:hover {
    text-decoration: none;
}
.method .button {
    margin: 5px 0 10px;
}
.user_form {
    margin-bottom: 20px;
}
.change_pass span {
    display: inline-block;
    color: #2185d1;
    cursor: pointer;
    border-bottom: 1px dashed;
}
.change_pass span:hover {
    border-color: transparent;
}
/* Рейтинг товара */
.products .rating {
    margin-bottom: 10px;
}
#products .rating {
    margin-bottom: 8px;
}
.product_rating {
    position:relative;
    margin: 0px 0 15px;
}
.rating_starOff,
.rating_starOn {
    display:inline-block;
    vertical-align: top;
    width: 90px;
    height:18px;
    background:url(../images/rating.png) repeat-x left top;
}
.rating_starOn {
    display: block;
    background-position: left bottom;
}

/* Comparison_page */
.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;
}
.comparison_page {
    background-color: #fff;
}
.compar_product {
    padding-left: 15px;
    padding-right: 15px;
    text-align: center;
}
.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;
}
.order_notify_v2{
    text-align: center;
    padding: 20px 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 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 */
.menu_group_footer .menu_list .menu_item {
    display: inline-block;
    margin-right: 25px;
}
.menu_group_footer .menu_list .menu_item .menu_link {
    font-size: 14px;
    color: #ffffff;
    text-transform: uppercase;
}
.menu_group_footer .menu_list .menu_item .menu_link:hover {
    color: #2185d1;
}
