<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@font-face {
    font-family: 'PTRoubleSans';
    font-weight: normal;
    font-style: normal;

    font-display: swap;
    src: url('../fonts/PTRoubleSans.woff') format('woff'),
        url('../fonts/PTRoubleSans.ttf') format('truetype');
}


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

*:before,
*:after {
    box-sizing: border-box;
}

img {
    border: none;
}

textarea {
    overflow: auto;
}

input,
textarea,
input:active,
textarea:active {
    -webkit-border-radius: 0;
    border-radius: 0;
    outline: none transparent !important;
    box-shadow: none;

    -webkit-appearance: none;
    appearance: none;
    -moz-outline: none !important;
}

input[type=submit],
button[type=submit],
input[type=reset],
button[type=reset] {
    -webkit-border-radius: 0;
    border-radius: 0;

    -webkit-appearance: none;
    appearance: none;
}

:focus {
    outline: none;
}

:hover,
:active {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-touch-callout: none;
}


::-ms-clear {
    display: none;
}



/*---------------
    Main styles
---------------*/
:root {
    --scroll_width: 17px;
}



.clear {
    clear: both;
}


.left {
    float: left;
}


.right {
    float: right;
}


html {
    height: 100%;

    background: #fcfcfc;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}


body {
    color: #000;
    font: 17px/26px 'Open Sans';

    height: 100%;

    letter-spacing: .025em;

    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-overflow-scrolling: touch;
    text-rendering: optimizeLegibility;
    text-decoration-skip: objects;
}

body.lock {
    overflow: hidden;
}


.wrap {
    position: relative;

    display: flex;
    overflow: hidden;
    flex-direction: column;

    min-height: 100%;
}


.main {
    flex: 1 0 auto;
}


.cont {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}


.overlay {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;

    display: none;

    width: 100%;
    height: 100%;

    opacity: .65;
    background: #000;
}


.compensate-for-scrollbar {
    margin-right: var(--scroll_width) !important;
}


.lozad {
    transition: .5s linear;

    opacity: 0;
}

.lozad.loaded {
    opacity: 1;
}


.flex {
    display: flex;

    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}

.rub {
    font-family: 'PTRoubleSans';
    font-weight: normal !important;
    font-style: normal;
}



::-webkit-input-placeholder {
    color: #666;
}

:-moz-placeholder {
    color: #666;
}

:-ms-input-placeholder {
    color: #666;
}


.form .title_form {
    font-size: 26px;
    line-height: normal;

    margin-bottom: 24px;
}

.form .column {
    justify-content: space-between;
}

.form .column .col {
    width: calc(50% - 25px);
}

.form .label {
    color: #000;
    font-size: 16px;
    line-height: 22px;

    margin-bottom: 6px;
}

.form .label {
    justify-content: space-between;
}

.form .label a {
    color: #ff6d00;
    font-size: 13px;

    transition: .2s linear;
}

.form .label a:hover {
    color: #fb8612;
}

.form .line_flex {
    justify-content: space-between;
}

.form .line_form {
    margin-bottom: 22px;
}

.form .line_flex .line_form {
    width: calc(50% - 16px);
}

.form .line_form.flex .label {
    width: 112px;
    margin: 8px 0 0;
    padding-right: 5px;
}

.form .line_form.flex .field {
    width: calc(100% - 112px);
}

.form .desc_field {
    font-size: 14px;
    line-height: 20px;

    margin: 2px 0 18px;
}

.form .input {
    color: #000;
    font: 16px 'Open Sans';

    display: block;

    width: 100%;
    height: 40px;
    padding: 0 10px;

    transition: .2s linear;

    border: 1px solid #e4e2e2;
    background: #f9f8f8;
}

.form.white .input {
    background: #fff;
}

.form .input.small {
    max-width: 78px;
}

.form textarea {
    color: #000;
    font: 16px 'Open Sans';

    display: block;

    width: 100%;
    height: 111px;
    padding: 7px 10px;

    resize: none;
    transition: .2s linear;

    border: 1px solid #e4e2e2;
    background: #f9f8f8;
}

.form.white textarea {
    background: #fff;
}

.form .success,
.form .success+.nice-select .current {
    border-color: green;
}

.form .error,
.form .error+.nice-select .current {
    border-color: red;
}


.form .input:disabled,
.form textarea:disabled,
.checkbox .label_check input[type=checkbox]:disabled+.check_text,
.radio .label_check input[type=radio]:disabled+.check_text {
    cursor: default;
    pointer-events: none;

    opacity: .5;
}


.form .error_text {
    color: red;
    font-size: 12px;
    line-height: normal;

    margin-top: 6px;
}


.form .submit {
    margin-top: 26px;
}

.form .submit_btn {
    color: #fff;
    font: 700 14px 'Open Sans';

    position: relative;

    display: block;

    width: 100%;
    height: 57px;

    cursor: pointer;
    transition: .2s linear;
    text-transform: uppercase;

    border: none;
    border-radius: 3px;
    background: #fb8612;
}

.form .submit_btn:hover {
    background: #ff6d00;
}

.form .reset {
    margin-top: 16px;

    text-align: center;
}

.form .reset_btn {
    color: #999;
    font: 14px 'Open Sans';

    display: inline-block;

    cursor: pointer;
    transition: .2s linear;
    vertical-align: top;

    border: none;
    border-bottom: 1px solid transparent;
    background: none;
}

.form .reset_btn:hover {
    color: #ff6d00;

    border-bottom-color: #ff6d00;
}


.form .agree a {
    color: #666;

    transition: .2s linear;
    text-decoration: none;

    border-bottom: 1px solid;
}

.form .agree a:hover {
    color: #000;

    border-bottom-color: #000;
}


.checkbox+.checkbox {
    margin-top: 2px;
}

.checkbox input[type=checkbox] {
    display: none;
}

.checkbox .label_check {
    display: table-cell;

    height: 23px;

    cursor: pointer;
    vertical-align: middle;
}

.checkbox .label_check .check_text {
    color: #666;
    font-size: 13px;
    line-height: 18px;

    position: relative;

    display: block;

    padding-left: 22px;

    transition: .2s linear;
    letter-spacing: 0;
}

.checkbox.agree .label_check .check_text {
    color: #666;

    padding-left: 30px;
}

.checkbox .label_check input[type=checkbox]:checked+.check_text {
    color: #000;
}

.checkbox.agree .label_check input[type=checkbox]:checked+.check_text {
    color: #666;
}

.checkbox .label_check .check_text span {
    color: #ff6d00;
}

.checkbox .label_check .check_text:before {
    position: absolute;
    top: 2.5px;
    left: 0;

    width: 13px;
    height: 13px;

    content: '';
    transition: .2s linear;

    border: 1px solid #e4e2e2;
    border-radius: 1px;
}

.checkbox .label_check .check_text:after {
    position: absolute;
    top: 2.5px;
    left: 0;

    width: 13px;
    height: 13px;

    content: '';
    transition: .2s linear;

    opacity: 0;
    background: url(../images/ic_check.svg) 50% no-repeat;
}

.checkbox .label_check input[type=checkbox]:checked+.check_text:before {
    border-color: #000;
    background: #000;
}

.checkbox .label_check input[type=checkbox]:checked+.check_text:after {
    opacity: 1;
}

.checkbox.agree .label_check input[type=checkbox]:checked+.check_text:before {
    border-color: transparent;
    background: rgba(255, 153, 0, .5);
}


.line_radio {
    margin: 0 0 -22px -20px;
}

.line_radio .radio {
    max-width: calc(50% - 20px);
    margin-left: 20px;
}

.radio {
    margin-bottom: 22px;
}

.radio input[type=radio] {
    display: none;
}

.radio .label_check {
    display: table-cell;

    height: 23px;

    cursor: pointer;
    vertical-align: middle;
}

.radio .label_check .check_text {
    color: #000;
    font-size: 16px;
    line-height: 23px;

    position: relative;

    display: block;

    padding-left: 36px;
}

.radio .label_check .check_text b {
    font-weight: 600;
}

.radio .label_check .check_text:before {
    position: absolute;
    top: 1px;
    left: 0;

    width: 21px;
    height: 21px;

    content: '';
    transition: .2s linear;

    border: 2px solid #999;
    border-radius: 50%;
    background: #fff;
}

.radio .label_check input[type=radio]:checked+.check_text:before {
    border-color: #fb8612;
    background: #fb8612;
    box-shadow: inset 0 0 0 3px #fff;
}


.select_wrap {
    position: relative;
}

.select_wrap select {
    position: absolute;
    top: 0;
    left: 0;

    display: none;

    width: 100%;
    height: 100%;

    opacity: 0;
}

.select_wrap .nice-select {
    position: relative;

    display: block;
}

.select_wrap .nice-select.open {
    z-index: 20;
}

.select_wrap .nice-select .current {
    color: #000;
    font-size: 16px;
    line-height: 36px;

    position: relative;
    z-index: 10;

    display: block;
    overflow: hidden;

    width: 100%;
    height: 38px;
    padding: 0 35px 0 10px;

    cursor: pointer;
    transition: .2s linear;
    white-space: nowrap;
    text-overflow: ellipsis;

    border: 1px solid #e4e2e2;
    background: #f9f8f8;
}

.select_wrap .nice-select .current:after {
    position: absolute;
    top: 50%;
    right: 14px;

    width: 12px;
    height: 8px;
    margin-top: -4px;

    content: '';
    transition: .2s linear;

    background: url(../images/arrow3.svg) 50%/contain no-repeat;
}

.select_wrap .nice-select .list {
    position: absolute;
    z-index: 9;
    top: calc(100% - 1px);
    left: 0;

    visibility: hidden;
    overflow: hidden;

    min-width: 100%;

    transition: .2s linear;
    pointer-events: none;

    opacity: 0;
    border: 1px solid #e4e2e2;
    background: #fff;
    box-shadow: 0 0 24px rgba(102, 102, 102, .1);
}

.select_wrap .nice-select.open .list {
    visibility: visible;

    pointer-events: all;

    opacity: 1;
}

.select_wrap .nice-select .list .scrollbar {
    overflow-y: auto;

    max-height: 250px;
}

.select_wrap .nice-select .list .list_item {
    color: #666;
    font-size: 13px;
    line-height: normal;
    line-height: 24px;

    display: flex;

    min-height: 40px;
    padding: 5px 16px;

    cursor: pointer;
    transition: .2s linear;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.select_wrap .nice-select .list .list_item.selected {
    display: none;
}

.select_wrap .nice-select .list .list_item:empty {
    display: none;
}

.select_wrap .nice-select .list .list_item:hover,
.select_wrap .nice-select .list .list_item.selected {
    color: #333;

    background: #f0f3f7;
}


.form .cols {
    margin-top: 42px;

    justify-content: space-between;
    align-items: stretch;
    align-content: stretch;
}

.form .cols .col {
    display: flex;
    flex-direction: column;

    width: calc(33.333% - 45px);
}

.form .cols .col.middle {
    width: calc(35% - 45px);
}

.form .cols .col.small {
    width: calc(30% - 45px);
}

.form .cols .col&gt;.box {
    margin-bottom: 28px;
}

.form .cols .col&gt; :last-child {
    margin-bottom: 0 !important;
}

.form .important {
    color: #333;
    font-size: 13px;
    line-height: 16px;

    position: relative;

    margin-top: 12px;
    padding: 14px 0 0 4px;
}

.form .important:before {
    position: absolute;
    top: 0;
    left: 0;

    width: 84px;
    height: 1px;

    content: '';

    background: #999;
}


.section_text {
    padding-bottom: 60px;
}

.section_text .bg {
    padding: 40px 39px;

    background: #fff;
}

.text_block.small {
    font-size: 15px;
}

.text_block&gt; :last-child {
    margin-bottom: 0 !important;
}

.text_block h1,
.text_block&gt;.title {
    color: #000;
    font-size: 42px;
    font-weight: 300;
    line-height: normal;

    position: relative;

    margin-bottom: 34px;
}

.text_block h1:before,
.text_block&gt;.title:before {
    position: absolute;
    top: 50%;
    left: -39px;

    width: 13px;
    height: calc(100% - 26px);

    content: '';
    transform: translateY(-50%);

    background: #fb8612;
}

.section_seo .text_block h1,
.section_seo .text_block&gt;.title {
    font-size: 36px;

    position: relative;

    margin-bottom: 40px;
    padding-left: 0;
}

.section_seo .text_block h1:before,
.section_seo .text_block&gt;.title:before {
    display: none;
}

.text_block h2 {
    color: #262d34;
    font-size: 36px;
    font-weight: 300;
    line-height: normal;

    margin-bottom: 36px;
}

.text_block *+h2 {
    margin-top: 52px;
}

.text_block .slider_text+h2 {
    margin-top: 34px;
}

.text_block h3 {
    color: #262d34;
    font-size: 32px;
    font-weight: 300;
    line-height: normal;

    margin-bottom: 24px;
}

.text_block *+h3 {
    margin-top: 52px;
}


.text_block h4 {
    color: #262d34;
    font-size: 27px;
    font-weight: 400;
    line-height: normal;

    margin-bottom: 24px;
}

.text_block *+h4 {
    margin-top: 52px;
}


.text_block h5 {
    color: #262d34;
    font-size: 24px;
    font-weight: 300;
    line-height: normal;

    margin-bottom: 24px;
}

.text_block *+h5 {
    margin-top: 52px;
}


.text_block h6 {
    color: #262d34;
    font-size: 22px;
    font-weight: 300;
    line-height: normal;

    margin-bottom: 24px;
}

.text_block *+h6 {
    margin-top: 52px;
}


.text_block p,
.text_block ul,
.text_block ol {
    margin-bottom: 26px;
}

.text_block p.big {
    font-size: 18px;
    line-height: 28px;
}

.text_block img {
    display: block;

    max-width: 100%;
    margin-bottom: 28px;
}

.text_block img.left {
    width: calc(50% - 28px);
    margin-right: 28px;
}

.text_block img.right {
    width: calc(50% - 28px);
    margin-left: 28px;
}

.text_block blockquote {
    display: block;

    margin-bottom: 36px;
    padding: 44px 43px;

    background: #f9f8f7;
}

.text_block ul {
    margin-left: 20px;
}

.text_block ul&gt;li {
    font-size: 20px;
    line-height: normal;

    position: relative;

    display: block;

    padding-left: 28px;

    list-style-type: none;
}

.text_block ul li:before {
    position: absolute;
    top: 0;
    left: 5px;

    width: 12px;
    height: 18px;

    content: '';
    transform: rotate(45deg);

    border-right: 3px solid #ff6d00;
    border-bottom: 3px solid #ff6d00;
}

.text_block ul li ul {
    margin-top: 6px;
}

.text_block ul.level2 li {
    font-size: 18px;

    padding-left: 28px;
}

.text_block ul.level2 li:before {
    top: 1px;

    width: 10px;
    height: 16px;

    border-right-width: 3px;
    border-bottom-width: 3px;
}

.text_block ul.level2 li+li {
    margin-top: 4px;
}

.text_block ul.level3 li {
    font-size: 16px;

    padding-left: 26px;
}

.text_block ul.level3 li:before {
    top: 3px;

    width: 7px;
    height: 12px;

    border-right-width: 3px;
    border-bottom-width: 3px;
}

.text_block ul.level4 li {
    font-size: 14px;

    padding-left: 20px;
}

.text_block ul.level4 li+li {
    margin-top: 4px;
}

.text_block ul.level4 li:before {
    top: 5px;
    left: 0;

    width: 7px;
    height: 7px;

    transform: rotate(0);

    border: none;
    border-radius: 50%;
    background: #ff6d00;
}

.text_block ul.level5 li {
    padding-left: 16px;
}

.text_block ul.level5 li:before {
    top: 6px;
    left: 0;

    width: 6px;
    height: 6px;

    transform: rotate(0);

    border: none;
    border-radius: 0;
    background: #ff6d00;
}

.text_block ol {
    counter-reset: li;
}

.text_block ol li {
    font-size: 18px;
    line-height: normal;
    line-height: 30px;

    position: relative;

    display: block;

    padding-left: 40px;

    list-style-type: none;
}

.text_block ol li:before {
    color: #ff6d00;
    font-size: 20px;

    position: absolute;
    top: 0;
    left: 0;

    content: '';
    content: counter(li)'.';
    counter-increment: li;
}

.text_block ol li+li {
    margin-top: 10px;
}

.text_block a {
    color: #000;

    transition: .2s linear;
    text-decoration: none;

    border-bottom: 1px solid;
}

.text_block a:hover {
    color: #fb8612;
}


.text_block .table_wrap {
    overflow: auto;

    max-width: 100%;
}

.text_block .table_wrap::-webkit-scrollbar {
    width: 7px;
    height: 10px;

    border-radius: 0;
    background-color: #fafafa;

    -webkit-appearance: none;
}

.text_block .table_wrap::-webkit-scrollbar-thumb {
    border-radius: 0;
    background-color: #e9e9e9;
}

.text_block table {
    width: 100%;
    min-width: 540px;

    border-spacing: 0;
    border-collapse: collapse;
}

.text_block table tr th {
    color: #fff;
    font-weight: 700;

    padding: 11px 20px;

    text-align: center;
    vertical-align: middle;
    white-space: nowrap;

    border-right: 1px solid #fff;
    border-left: 1px solid #fff;
    background: #ff6d00;
}

.text_block table tr th:first-child {
    border-left-color: #ff6d00;
}

.text_block table tr th:last-child {
    border-right-color: #ff6d00;
}

.text_block table td {
    padding: 9px 20px;

    transition: .2s linear;
    text-align: left;
    text-align: center;
    vertical-align: top;

    border-right: 1px solid #ccc;
    border-left: 1px solid #ccc;
}

.text_block table tbody tr:nth-child(2n) td {
    background: #fafafa;
}

.text_block table tbody tr:hover td {
    background: #e9e9e9;
}

.text_block table tr:last-child td {
    border-bottom: 1px solid #ccc;
}

.text_block table td span {
    font-weight: 500;
}

.text_block table td b {
    font-weight: 700;
}

.text_block table td.text_left {
    text-align: left;
}

.text_block table td.nowrap {
    white-space: nowrap;
}


.text_block .columns {
    column-gap: 86px;
    column-count: 2;
}

.text_block .columns&gt;* {
    margin-bottom: 0;
    padding-bottom: 26px;

    --webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    break-inside: avoid;
}

.text_block blockquote .columns {
    margin-bottom: -26px;

    column-gap: 40px;
}


.breadcrumbs {
    color: #ff6d00;
    font-size: 13px;
    line-height: 23px;

    padding: 14px 0;

    border-bottom: 1px solid #ebebeb;
}

.breadcrumbs a {
    color: #000;

    transition: .2s linear;
    text-decoration: none;
}

.breadcrumbs a:hover {
    color: #ff6d00;
}

.breadcrumbs .sep {
    position: relative;
    top: 0;

    display: inline-block;

    width: 5px;
    height: 23px;
    margin: 0 20px;

    vertical-align: top;

    background: url(../images/arrow2.svg) 50% no-repeat;
}


.supports_error {
    font-family: 'Montserrat', 'Arial', sans-serif;
    font-size: 20px;
    line-height: 30px;

    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;

    display: none;

    width: 100%;
    height: 100%;
    padding: 20px;

    text-align: center;

    background: #fff;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.supports_error.show {
    display: flex;
}


.page_content {
    padding: 38px 0 74px;
}

.content_flex {
    margin-top: 16px;

    justify-content: space-between;
}

.content_flex .content {
    width: calc(100% - 247px);
}


.page_title {
    color: #000;
    font-size: 42px;
    font-weight: 300;
    line-height: normal;

    position: relative;

    margin-bottom: 34px;
    padding-left: 39px;
}

.page_title:before {
    position: absolute;
    top: 50%;
    left: 0;

    width: 13px;
    height: calc(100% - 26px);

    content: '';
    transform: translateY(-50%);

    background: #fb8612;
}

.page_title.blue:before {
    background: #72c1b9;
}

.page_title.green:before {
    background: #7fc583;
}


.main_title {
    color: #000;
    font-size: 36px;
    font-weight: 300;
    line-height: normal;

    position: relative;

    padding-left: 30px;
}

.main_title.white {
    color: #fff;
}

.main_title span {
    position: relative;

    border-bottom: 1px solid;
}

.main_title span:before {
    position: absolute;
    top: 50%;
    left: -30px;

    width: 13px;
    height: calc(100% - 21px);

    content: '';
    transform: translateY(-50%);

    background: #fb8612;
}

.main_title.blue span:before {
    background: #72c1b9;
}

.main_title.green span:before {
    background: #7fc583;
}


.subTitle {
    font-size: 14px;
    line-height: 24px;

    margin-top: 16px;
}

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



/*---------------
   Header
---------------*/
header {
    background: #fff;
    box-shadow: 0 1px 16px rgba(204, 204, 204, .38);
}

header .info {
    margin-bottom: 12px;
    padding: 32px 0 105px;

    background: url(../images/header_bg_new.png) 50% 100%/cover no-repeat;
}

header .info .cont {
    align-items: center;
    align-content: center;
    justify-content: space-between;
}

header .logo {
    margin-right: 45px;
}

header .logo a,
header .logo img {
    display: block;

    max-width: 100%;
}

header .phone {
    font-size: 18px;
    font-weight: 700;
    line-height: normal;

    letter-spacing: 0;
}

header .phone a {
    color: black;

    text-decoration: none;
}

header .callBback {
    line-height: 20px;
}

header .callBback_btn {
    color: #fff;
    font: 13px 'Open Sans';

    position: relative;

    display: inline-block;

    cursor: pointer;
    transition: .2s linear;
    vertical-align: top;

    border: none;
    border-bottom: 1px solid #fff;
    background: none;
}

header .callBback_btn:hover {
    border-bottom-color: transparent;
}

header .department {
    width: 122px;
    margin-left: 45px;
}

header .department a {
    display: block;

    background: #fff;
    border-radius: 2px;
    padding: 2px;

    box-shadow: 0 2px 4px rgba(0, 0, 0, .21);
}

header .department img {
    display: block;

    max-width: 100%;
}

header .user-links {
    width: 327px;
    justify-content: flex-end;
}

header .user {
    display: block;

   width: 26px;
    height: 25px;
    margin-left: 50px;

    cursor: pointer;

    border: none;
    background: url(../images/ic_user3.svg) 0 0 no-repeat;
}

header .compare {
    position: relative;

    display: block;

    width: 27px;
    height: 26px;
    margin-left: 48px;

    text-decoration: none;

    background: url(../images/ic_compare3.svg) 0 0 no-repeat;
}

header .compare .number {
    color: #000;
    font-size: 11px;
    line-height: 20px;

    position: absolute;
    top: -21px;
    left: 14px;

    width: 20px;
    height: 20px;

    text-align: center;

    border-radius: 50%;
    background: #fff;
}

header .cart {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    line-height: 23px;

    position: relative;

    display: block;

    margin-left: 52px;
    padding-left: 39px;

    text-decoration: none;
    text-transform: uppercase;
}

header .cart:before {
    position: absolute;
    top: 0;
    left: 0;

        width: 28px;
    height: 26px;

    content: '';

    background: url(../images/ic_cart3.svg) 0 0 no-repeat;
}

header .cart .price {
    width: 85px;
    display: inline-block;
}

header .cart .number {
    color: #000;
    font-size: 11px;
    line-height: 20px;

    position: absolute;
    top: -21px;
    left: 16px;

    width: 20px;
    height: 20px;

    text-align: center;

    border-radius: 50%;
    background: #fff;
}

header .search {
    width: 300px;
    margin-left: 45px;
}

header .search .input {
    color: #fff;
    font: 13px 'Open Sans';

    display: block;

    width: 100%;
    height: 50px;
    padding: 0 50px 0 20px;

    border: 1px solid rgba(255, 255, 255, .33);
    background: rgba(255, 255, 255, .28);
}

header .search .input::-webkit-input-placeholder {
    color: #fff;
}

header .search .input:-moz-placeholder {
    color: #fff;
}

header .search .input:-ms-input-placeholder {
    color: #fff;
}

header .search .submit_btn {
    position: relative;

    display: flex;

    width: 50px;
    height: 50px;
    margin-left: -50px;

    cursor: pointer;

    border: none;
    background: none;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

header .search .submit_btn .icon {
    width: 19px;
    height: 19px;

    transition: .2s linear;

    fill: black;
}

header .search .submit_btn:hover .icon {
    opacity: .7;
}


header .bottom .cont {
    position: relative;

    justify-content: space-between;
}


header .menu {
    width: calc(100% - 290px);

    justify-content: space-between;
}

header .menu .item a {
    color: #000;
    font-size: 14px;
    font-weight: 700;
    line-height: 50px;

    position: relative;

    display: block;

    transition: .2s linear;
    text-decoration: none;
    letter-spacing: .05em;
}

header .menu .item a:hover,
header .menu .item a.active {
    color: #ff6d00;
}

header .menu .item a:before {
    position: absolute;
    bottom: 0;
    left: 0;

    width: 100%;
    height: 0;

    content: '';
    transition: .2s linear;

    background: #ff6d00;
}

header .menu .item a:hover:before,
header .menu .item a.active:before {
    height: 4px;
}

header .cats {
    width: 248px;

    justify-content: space-between;
}

header .cats .openCats {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 50px;

    position: relative;

    display: block;

    transition: .2s linear;
    text-align: center;
    text-decoration: none;
    letter-spacing: .05px;
    text-transform: uppercase;

    background: #fb8612;
}

header .cats .openCats span {
    position: absolute;
    top: 50%;
    left: 18px;

    width: 12px;
    height: 12px;
    margin-top: -6px;
}

header .cats .openCats span i {
    display: block;

    height: 2px;

    background: #fff;
}

header .cats .openCats span i+i {
    margin-top: 3px;
}

header .cats:hover .openCats {
    background: #ff6d00;
}

header .cats .box_cats {
    position: absolute;
    z-index: 100;
    top: calc(100% + 15px);
    left: 20px;

    visibility: hidden;

    width: calc(100% - 40px);
    padding: 12px 30px 70px;

    transition: .3s linear;
    pointer-events: none;

    opacity: 0;
    background: #fff;
    box-shadow: 0 0 24px rgba(102, 102, 102, .1);

    justify-content: space-between;
}

header .cats:hover&gt;.openCats.touch_link .box_cats {
    top: calc(100% + 15px);

    visibility: hidden;

    pointer-events: none;

    opacity: 0;
}

header .cats:hover .box_cats,
header .cats&gt;.openCats.touch_link .box_cats.show {
    top: 100%;

    visibility: visible;

    pointer-events: all;

    opacity: 1;
}

header .cats .box_cats .box {
    width: calc(50% - 15px);
}

header .cats .item {
    line-height: 23px;
}

header .cats .item+.item {
    margin-top: 8px;
}

header .cats .item&gt;a {
    color: #000;
    font-size: 15px;
    font-weight: 700;

    position: relative;

    display: block;

    padding-left: 53px;

    transition: .2s linear;
    text-decoration: none;
}

header .cats .item&gt;a:before {
    position: absolute;
    top: 0;
    left: 0;

    width: 26px;
    height: 23px;

    content: '';
    transition: .2s linear;

    background: url(../images/ic_cart.svg) 0 0 no-repeat;
}

header .cats .item&gt;a:hover:before,
header .cats .item.active&gt;a:before {
    transform: scale(1.2);
}

header .cats .item&gt;a:hover,
header .cats .item.active&gt;a {
    color: #ff6d00;
}

header .cats .item&gt;a.open_btn span {
    position: relative;

    display: inline-block;

    padding-right: 10px;

    vertical-align: top;
}

header .cats .item&gt;a.open_btn span:before {
    position: absolute;
    top: 50%;
    right: 2px;

    width: 5px;
    height: 5px;
    margin-top: -4px;

    content: '';
    transition: .2s linear;
    transform: rotate(45deg);

    border-right: 2px solid #6c4375;
    border-bottom: 2px solid #6c4375;
}

header .cats .data {
    display: none;

    padding: 14px 0 14px 53px;
}

header .cats ul li {
    list-style: none;
}

header .cats ul li a {
    color: #000;
    font-size: 14px;

    transition: .2s linear;
    text-decoration: none;

    border-bottom: 1px solid transparent;
}

header .cats ul li a:hover {
    color: #ff6d00;

    border-bottom-color: #ff6d00;
}


.close_header {
    position: fixed;
    z-index: 101;
    top: 0;
    left: 270px;

    display: none;

    width: 50px;
    height: 50px;
    padding: 13px;

    cursor: pointer;

    border: none;
    background: none;
}

.close_header span {
    position: relative;

    display: block;

    width: 100%;
    height: 2px;

    background: #fff;
}

.close_header span:nth-child(1) {
    top: 1px;

    transform: rotate(45deg);
}

.close_header span:nth-child(2) {
    top: -1px;

    transform: rotate(-45deg);
}


.mob_header {
    display: none;

    padding: 15px 0;

    background: #fff;
}

.mob_header .cont {
    align-items: center;
    align-content: center;
}

.mob_header .logo {
    margin-right: auto;
}

.mob_header .logo a,
.mob_header .logo img {
    display: block;

    max-width: 100%;
}

.mob_header .phone {
    font-size: 18px;
    font-weight: 600;
    line-height: normal;

    letter-spacing: 0;
}

.mob_header .phone a {
    color: #000;

    text-decoration: none;
}

.mob_header .callBback {
    line-height: 20px;
}

.mob_header .callBback_btn {
    color: #ff6d00;
    font: 600 14px 'Open Sans';

    position: relative;

    display: inline-block;

    cursor: pointer;
    transition: .2s linear;
    vertical-align: top;

    border: none;
    border-bottom: 1px dashed transparent;
    background: none;
}

.mob_header .callBback_btn:hover {
    color: #000;

    border-bottom-color: #000;
}

.mob_header .user {
    display: block;

    width: 26px;
    height: 25px;
    margin-left: 60px;

    cursor: pointer;

    border: none;
    background: url(../images/ic_user.svg) 0 0 no-repeat;
}

.mob_header .compare {
    position: relative;

    display: block;

    width: 25px;
    height: 23px;
    margin-left: 48px;

    text-decoration: none;

    background: url(../images/ic_compare.svg) 0 0 no-repeat;
}

.mob_header .compare .number {
    color: #000;
    font-size: 11px;
    line-height: 20px;

    position: absolute;
    top: -21px;
    left: 14px;

    width: 20px;
    height: 20px;

    text-align: center;

    border-radius: 50%;
    background: #f7f5f5;
}

.mob_header .cart {
    position: relative;

    display: block;

    width: 26px;
    height: 23px;
    margin-left: 52px;

    background: url(../images/ic_cart.svg) 0 0 no-repeat;
}

.mob_header .cart .number {
    color: #000;
    font-size: 11px;
    line-height: 20px;

    position: absolute;
    top: -21px;
    left: 16px;

    width: 20px;
    height: 20px;

    text-align: center;

    border-radius: 50%;
    background: #f7f5f5;
}

.mob_header .mob_menu_link {
    position: relative;

    display: block;

    width: 44px;
    height: 40px;
    margin: 0 -10px 0 50px;
    padding: 10px;

    cursor: pointer;

    border: none;
    background: none;
}

.mob_header .mob_menu_link span {
    position: relative;

    display: block;

    width: 100%;
    height: 2px;
    margin: 0 auto;

    transition: .2s linear;

    background: #564826;
}

.mob_header .mob_menu_link span+span {
    margin-top: 6px;
}


/*---------------
   Main section
---------------*/
.owl-carousel .owl-stage {
    white-space: nowrap;
}

.owl-carousel .owl-item {
    display: inline-block;
    float: none;

    vertical-align: top;
    white-space: normal;
}

.owl-carousel .slide .lozad {
    transition: .3s linear;
}


.stikers {
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;

    pointer-events: none;
}

.stiker+.stiker {
    margin-top: 5px;
}

.stiker span {
    color: #fff;
    font-size: 11px;
    line-height: 24px;

    position: relative;

    display: inline-block;

    min-width: 62px;
    padding: 0 12px;

    text-align: center;
    vertical-align: top;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.stiker span:before {
    position: absolute;
    top: 0;
    right: -2px;

    width: 6px;
    height: 100%;

    content: '';
    transform: skewX(-10deg);
}

.stiker.new span {
    background: #ffb36f;
}

.stiker.new span:before {
    background: #ffb36f;
}

.stiker.sale span {
    background: #b5d68b;
}

.stiker.sale span:before {
    background: #b5d68b;
}

.stiker.stock span {
    background: #fb8056;
}

.stiker.stock span:before {
    background: #fb8056;
}

.stiker.discount span {
    background: #72c1b9;
}

.stiker.discount span:before {
    background: #72c1b9;
}

.stiker.hit span {
    background: #8dbbdf;
}

.stiker.hit span:before {
    background: #8dbbdf;
}


.main_slider {
    margin-top: 8px;
}

.main_slider .cont {
    position: relative;
}

.main_slider .numbers_slider {
    color: #fff;
    font-size: 20px;
    line-height: 46px;

    position: absolute;
    z-index: 10;
    right: 175px;
    bottom: 36px;
}

.main_slider .numbers_slider .active:before,
.main_slider .numbers_slider .all:before {
    display: inline;

    content: '0';
}

.main_slider .numbers_slider.big .active:before,
.main_slider .numbers_slider.big .all:before {
    display: none;
}

.main_slider .slide {
    position: relative;

    display: none;

    height: 409px;
    padding: 30px 0 60px;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.main_slider .slide:first-child,
.main_slider .owl-loaded .slide {
    display: flex;
}

.main_slider .slide .bg {
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.main_slider .slide .box {
    position: relative;

    max-width: 454px;
    padding-left: 60px;
}

.main_slider .slide .cat {
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    line-height: 24px;

    position: relative;

    display: inline-block;

    padding: 0 14px 0 16px;

    vertical-align: top;
    text-transform: uppercase;

    background: #000;
}

.main_slider .slide .cat:before {
    position: absolute;
    top: 0;
    right: -2px;

    width: 6px;
    height: 100%;

    content: '';
    transform: skewX(-10deg);

    background: #000;
}

.main_slider .slide .cat span {
    position: relative;
}

.main_slider .slide .title {
    font-size: 30px;
    font-weight: 700;
    line-height: 42px;

    margin-top: 12px;

    text-transform: uppercase;
}

.main_slider .slide .title a {
    color: #000;

    transition: .2s linear;
    text-decoration: none;
}

.main_slider .slide .title a:hover {
    color: #fb8612;
}

.main_slider .slide .desc {
    font-size: 22px;
    line-height: 33px;

    margin-top: 10px;
}


.products {
    padding-top: 33px;
}

.main_products {
    padding-top: 58px;
}

.inner_products {
    padding: 54px 0 80px;
}

.products .slider {
    margin-top: 16px;
    padding-right: 1px;
}

.products .slider .owl-stage-outer {
    overflow: visible;
}

.products .grid {
    padding-left: 1px;

    --products_count: 4;
}

.products .owl-item:hover {
    z-index: 2;
}

.products .product {
    position: relative;

    padding: 43px 17px 18px;

    transition: .2s linear;

    border: 1px solid #eee;
    background: #fff;
}

.products .product:hover {
    z-index: 11;

    border-color: transparent;
    box-shadow: 0 0 24px rgba(0, 0, 0, .05);
}

.products .slider .product {
    visibility: hidden;

    width: calc(100% + 1px);

    pointer-events: none;

    opacity: 0;
}

.products .slider .active .product {
    visibility: visible;

    pointer-events: all;

    opacity: 1;
}

.products .grid .product_wrap {
    width: calc(25% + 1px);
    margin: -1px 0 0 -1px;
}

.products .product .inCompare {
    position: absolute;
    z-index: 10;
    top: 9px;
    right: 12px;

    display: flex;

    width: 39px;
    height: 39px;

    cursor: pointer;
    transition: .2s linear;

    border: none;
    border-radius: 50%;
    background: #fff;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.products .product .inCompare:hover,
.products .product .inCompare.active {
    background: #999;
}

.products .product .inCompare svg {
    display: block;

    width: 25px;
    height: 17px;

    transition: .2s linear;

    fill: #999;
}

.products .product .inCompare:hover svg,
.products .product .inCompare.active svg {
    fill: #fff;
}

.products .product .thumb {
    position: relative;

    display: block;

    padding-bottom: 88.73%;
}

.products .product .thumb .img {
    position: absolute;
    top: 0;
    left: 0;

    display: flex;

    width: 100%;
    height: 100%;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.products .product .thumb .img img {
    display: block;

    max-width: 100%;
    max-height: 100%;
}

.products .product .code {
    color: #999;
    font-size: 13px;
    line-height: normal;

    margin-top: 22px;

    transition: .2s linear;
    text-align: right;
}

.products .product:hover .code {
    color: #000;
}

.products .product .name {
    font-size: 14px;
    line-height: 23px;

    margin-top: 10px;
}

.products .product .name a {
    color: #000;

    transition: .2s linear;
    text-decoration: none;

    border-bottom: 1px solid transparent;
}

.products .product .name a:hover {
    color: #ff6d00;

    border-bottom-color: #ff6d00;
}

.products .product .box_price {
    display: flex;

    margin-top: 10px;

    justify-content: flex-start;
    align-items: flex-end;
    align-content: flex-end;
    flex-wrap: wrap;
}

.products .product .old_price {
    color: #44525d;
    font-size: 16px;
    line-height: 20px;

    width: 100%;

    text-decoration: line-through;
}

.products .product .price {
    color: #000;
    font-size: 20px;
    font-weight: 600;
    line-height: 27px;

    width: 100%;
}

.products .product .bot {
    overflow: hidden;

    height: 0;

    transition: .2s linear;

    justify-content: space-between;
}

.products .product:hover .bot {
    height: 41px;
    margin-top: 20px;
}

.products .product .amount {
    width: 90px;
}

.products .product .inCart {
    width: calc(100% - 100px);
    max-width: 104px;
}

.products .product .inCart_btn {
    color: #fff;
    font: 15px/41px 'Open Sans';

    position: relative;

    width: 100%;
    height: 41px;
    padding: 0;

    cursor: pointer;
    transition: .2s linear;

    border: none;
    border-radius: 3px;
    background: #fb8612;
}

.products .product .inCart_btn:hover {
    background: #ff6d00;
}

.products .product .inCart_btn.disabled {
    pointer-events: none;
}


.amount .val {
    justify-content: space-between;
}

.amount .input {
    color: #000;
    font: 15px 'Open Sans';

    display: block;

    width: calc(100% - 42px);
    height: 41px;

    text-align: center;

    border: 1px solid #e4e2e2;
    background: #f7f5f5;
}

.amount .minus,
.amount .plus {
    position: relative;

    display: block;

    width: 13px;
    height: 41px;

    cursor: pointer;

    border: none;
    background: none;
}

.amount .minus:before,
.amount .plus:before {
    position: absolute;
    top: 50%;
    left: 0;

    width: 100%;
    height: 3px;
    margin-top: -1.5px;

    content: '';
    transition: .2s linear;

    background: #999;
}

.amount .minus:hover:before,
.amount .plus:hover:before {
    background: #000;
}

.amount .plus:after {
    position: absolute;
    top: 50%;
    left: 50%;

    width: 3px;
    height: 13px;
    margin: -6.5px 0 0 -1.5px;

    content: '';
    transition: .2s linear;

    background: #999;
}

.amount .plus:hover:after {
    background: #000;
}


.advantages {
    margin-top: 60px;
    padding: 55px 0;

    background: #f9f9f9;
}

.advantages .cont {
    justify-content: space-between;
    align-items: center;
    align-content: center;
}

.advantages .logo {
    width: 262px;
    margin-left: 38px;
}

.advantages .logo img {
    display: block;

    max-width: 100%;
}

.advantages .grid {
    width: calc(100% - 340px);
    max-width: 838px;
    margin-top: -42px;

    justify-content: space-between;
    align-items: center;
    align-content: center;
}

.advantages .item {
    width: calc(50% - 15px);
    max-width: 386px;
    margin-top: 42px;

    justify-content: space-between;
    align-items: center;
    align-items: center;
}

.advantages .item .icon {
    width: 110px;
    height: 110px;
    padding: 10px;

    border-radius: 50%;
    background: rgba(255, 255, 255, .6);
}

.advantages .item .icon .bg {
    display: flex;

    width: 100%;
    height: 100%;
    padding: 5px;

    border-radius: 50%;
    background: #fff;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.advantages .item .icon img {
    display: block;

    max-width: 100%;
    max-height: 100%;
}

.advantages .item .desc {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;

    width: calc(100% - 145px);

    letter-spacing: 0;
}


.partners {
    padding: 48px 0 64px;

    background: #f9f9f9;
}

.partners .slider {
    margin-top: 16px;
}

.partners .partner {
    display: flex;

    height: 144px;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.partners .partner img {
    display: block;

    max-width: 100%;
    max-height: 100%;
}


.main_cats {
    padding: 54px 0 80px;

    background: #fff;
}

.main_cats .slider {
    margin-top: 16px;
}

.main_cats .owl-carousel .owl-stage-outer {
    overflow: visible;
}

.main_cats .slider .item {
    visibility: hidden;

    pointer-events: none;

    opacity: 0;
}

.main_cats .slider .active .item {
    visibility: visible;

    pointer-events: all;

    opacity: 1;
}

.main_cats .item {
    color: #000;
    font-size: 15px;
    line-height: 22px;

    display: block;

    padding: 23px 10px 12px;

    transition: .2s linear;
    text-align: center;
    text-decoration: none;

    border-radius: 4px;
    background: #fff;
}

.main_cats .item:hover {
    color: #ff6d00;

    box-shadow: 0 0 24px rgba(0, 0, 0, .1);
}

.main_cats .item .img {
    display: flex;

    height: 139px;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.main_cats .item .img img {
    display: block;

    max-width: 100%;
    max-height: 100%;
}

.main_cats .item .name {
    margin-top: 26px;
}


.articles {
    padding: 54px 0 70px;

    background: #17191c;
}

.articles .slider {
    margin-top: 16px;
}

.articles .owl-carousel .owl-stage-outer {
    overflow: visible;
}

.articles .article {
    transition: .2s linear;

    background: #fff;
}

.articles .article:hover {
    box-shadow: 0 0 16px rgba(255, 255, 255, .5);
}

.articles .article:before {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    content: '';
    transition: .2s linear;
    pointer-events: none;

    opacity: 0;
    border: 2px solid #fb8612;
}

.articles .article:hover:before {
    opacity: 1;
}

.articles .slider .article {
    visibility: hidden;

    pointer-events: none;

    opacity: 0;
}

.articles .slider .active .article {
    visibility: visible;

    pointer-events: all;

    opacity: 1;
}

.articles .article .img {
    position: relative;

    display: block;

    padding-bottom: 72%;

    background: #bbb;
}

.articles .article .img img {
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.articles .article .box {
    padding: 24px 22px 36px;
}

.articles .article .date {
    color: #999;
    font-size: 13px;
    line-height: normal;
}

.articles .article .name {
    font-size: 17px;
    font-weight: 600;
    line-height: 26px;

    margin-top: 16px;
}

.articles .article .name a {
    color: #000;

    transition: .2s linear;
    text-decoration: none;
}

.articles .article .name a:hover {
    color: #ff6d00;
}

.articles .article .desc {
    font-size: 15px;
    line-height: 23px;

    margin-top: 16px;
}


.section_seo {
    padding: 72px 0 80px;

    background: #fff;
}

.main_seo {
    padding-bottom: 54px;
}


.sort {
    justify-content: flex-end;
    align-items: center;
    align-content: center;
}

.sort .name {
    color: #666;
    font-size: 13px;
    line-height: 23px;

    margin-right: 12px;
}

.sort .select_wrap {
    width: 260px;
}

.sort .select_wrap .nice-select .current {
    color: #666;
    line-height: 38px;

    height: 40px;
    padding-left: 16px;

    background: #fff;
}


.pagination {
    margin-top: 50px;
    margin-left: -8px;

    justify-content: center;
    align-items: center;
    align-content: center;
}

.pagination a {
    color: #000;
    font-size: 18px;
    font-weight: 600;
    line-height: 46px;

    display: block;

    width: 48px;
    height: 48px;
    margin-left: 8px;

    transition: .2s linear;
    text-align: center;
    text-decoration: none;

    border: 1px solid #e4e2e2;
    background: #f7f5f5;
}

.pagination a:hover,
.pagination a.active {
    border-color: #feca7e;
    background: #feca7e;
}

.pagination .prev {
    color: #333;
    font-size: 20px;

    width: auto;
    margin-right: 24px;

    border-color: transparent;
    background: transparent;
}

.pagination .prev:hover {
    color: #feca7e;

    border-color: transparent;
    background: transparent;
}

.pagination .prev span {
    color: #000;
    font-size: 16px;

    transition: .2s linear;
}

.pagination .prev:hover span {
    color: #feca7e;
}

.pagination .next {
    color: #333;
    font-size: 20px;

    width: auto;
    margin-left: 32px;

    border-color: transparent;
    background: transparent;
}

.pagination .next:hover {
    color: #feca7e;

    border-color: transparent;
    background: transparent;
}

.pagination .next span {
    color: #000;
    font-size: 16px;

    transition: .2s linear;
}

.pagination .next:hover span {
    color: #feca7e;
}

.pagination .hide {
    display: none;
}


.section_question {
    padding: 50px 0 60px;
}

.section_question .bg {
    padding: 50px;

    border: 1px solid #f90;
    background: #fff;

    justify-content: space-between;
}

.section_question .block_l {
    width: 368px;
}

.section_question .title {
    font-size: 30px;
    line-height: normal;

    letter-spacing: 0;
}

.section_question .desc {
    font-size: 19px;
    line-height: 27px;

    margin-top: 6px;

    letter-spacing: 0;
}

.section_question .form {
    width: calc(100% - 400px);
    padding-top: 10px;
}

.section_question .form .line_flex {
    margin-left: -14px;
}

.section_question .form .line_flex .line_form {
    width: calc(33.333% - 10px);
    margin: 0 0 10px 14px;
}

.section_question .form .line_flex .submit {
    width: calc(33.333% - 22px);
    margin: 0 0 10px 14px;
}

.section_question .form .line_flex .agree {
    width: calc(100% - 14px);
    margin: 0 0 0 14px;
}

.section_question .form .submit_btn {
    font-size: 18px;
    font-weight: 400;

    height: 40px;

    text-transform: none;
}


.product_info .bg {
    padding: 40px 0 60px;

    background: #fff;
}

.product_info .block_flex {
    margin-top: 42px;

    justify-content: space-between;
}

.product_info .images {
    position: relative;

    width: calc(41% - 15px);
    max-width: 466px;
    margin-top: 20px;
}

.product_info .images .slider .slide {
    position: relative;

    padding-bottom: 98%;
}

.product_info .images .slider .slide .img {
    position: absolute;
    top: 0;
    left: 0;

    display: flex;

    width: 100%;
    height: 100%;
    padding: 0 10px;

    justify-content: center;
    align-items: center;
}

.product_info .images .slider .slide img {
    display: block;

    max-width: 100%;
    max-height: 100%;
}


.product_info .thumbs {
    width: calc(100% - 20px);
    margin: 28px 0 0 20px;
    padding: 0 49px;
}

.product_info .thumbs .slide {
    position: relative;

    padding-bottom: 100%;
}

.product_info .thumbs .slide a {
    position: absolute;
    top: 0;
    left: 0;

    display: flex;

    width: 100%;
    height: 100%;
    padding: 2px;

    transition: .2s linear;

    border: 1px solid transparent;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.product_info .thumbs .slide img {
    display: block;

    max-width: 100%;
    max-height: 100%;
}

.product_info .thumbs .slide a:hover,
.product_info .thumbs .slide a.active {
    border-color: #fb8612;
}


.product_info .data {
    width: calc(59% - 15px);
    padding-right: 20px;
}

.product_info .data .top {
    justify-content: space-between;
    align-items: flex-end;
    align-content: flex-end;
    flex-wrap: nowrap;
}

.product_info .box_price {
    align-items: flex-end;
    align-content: flex-end;
}

.product_info .price {
    font-size: 35px;
    font-weight: 600;
    line-height: 34px;
}

.product_info .price i {
    font-size: 26px;
}

.product_info .old_price {
    color: #44525d;
    font-size: 22px;
    line-height: normal;

    margin-left: 30px;

    text-decoration: line-through;
}

.product_info .in_stock {
    color: #390;
    line-height: 17px;

    position: relative;

    margin-top: 18px;
    padding-left: 30px;
}

.product_info .in_stock:before {
    position: absolute;
    top: 0;
    left: 0;

    width: 17px;
    height: 17px;

    content: '';

    border-radius: 50%;
    background: #390 url(../images/ic_check.svg) 50% no-repeat;
}

.product_info .not_available {
    color: #c33;
    line-height: 17px;

    position: relative;

    margin-top: 18px;
    padding-left: 30px;
}

.product_info .not_available:before {
    position: absolute;
    top: 0;
    left: 0;

    width: 17px;
    height: 17px;

    content: '';

    border-radius: 50%;
    background: #c33;
}

.product_info .not_available:after {
    position: absolute;
    top: 7px;
    left: 5px;

    width: 7px;
    height: 3px;

    content: '';

    background: #fff;
}

.product_info .under_order {
    color: #fb8612;
    line-height: 17px;

    position: relative;

    margin-top: 18px;
    padding-left: 30px;
}

.product_info .under_order:before {
    position: absolute;
    top: 0;
    left: 0;

    width: 17px;
    height: 17px;

    content: '';

    border-radius: 50%;
    background: #fb8612 url(../images/ic_check.svg) 50% no-repeat;
}

.product_info .block_r {
    text-align: right;
}

.product_info .code {
    color: #666;
    font-size: 15px;
    line-height: 30px;
}

.product_info .inCompare {
    color: #000;
    font: 15px 'Open Sans';

    position: relative;

    display: inline-block;

    min-width: 145px;
    height: 39px;
    padding-left: 52px;

    cursor: pointer;
    text-align: left;
    vertical-align: top;

    border: none;
    background: none;
}

.product_info .inCompare span {
    transition: .2s linear;

    border-bottom: 1px dashed;
}

.product_info .inCompare:hover span,
.product_info .inCompare.active span {
    border-color: transparent;
}

.product_info .inCompare:before {
    position: absolute;
    top: 0;
    left: 0;

    width: 39px;
    height: 39px;

    content: '';
    transition: .2s linear;

    border-radius: 50%;
    background: #f5f5f5 url(../images/ic_compare.svg) 50% no-repeat;
}

.product_info .inCompare:hover:before,
.product_info .inCompare.active:before {
    background-color: #ccc;
}

.product_info .data .info_flex {
    justify-content: space-between;
}

.product_info .data .info {
    font-size: 15px;
    line-height: 26px;

    max-width: 476px;
    margin-top: 30px;
}

.product_info .data .info_flex .info {
    width: calc(100% - 250px);
}

.modal_cont {
    position: relative;
}

.mini_modal {
    font-size: 14px;
    line-height: 20px;

    position: absolute;
    z-index: 100;
    top: calc(100% + 30px);
    right: -15px;

    visibility: hidden;

    width: 280px;
    padding: 20px;

    transition: .2s linear;

    opacity: 0;
    background: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, .2);
}

.mini_modal.active {
    top: calc(100% + 15px);

    visibility: visible;

    opacity: 1;
}

.mini_modal .close {
    position: absolute;
    top: 4px;
    right: 4px;

    display: block;

    width: 14px;
    height: 14px;

    cursor: pointer;

    border: none;
    background: none;
}

.mini_modal .close:before {
    position: absolute;
    top: 50%;
    left: 50%;

    display: block;

    width: 100%;
    height: 2px;

    content: '';
    transition: .2s linear;
    transform: translate(-50%, -50%) rotate(-45deg);

    background: #999;
}

.mini_modal .close:after {
    position: absolute;
    top: 50%;
    left: 50%;

    display: block;

    width: 100%;
    height: 2px;

    content: '';
    transition: .2s linear;
    transform: translate(-50%, -50%) rotate(45deg);

    background: #999;
}

.mini_modal .close:hover:before,
.mini_modal .close:hover:after {
    background: #fb8612;
}

.mini_modal .desc b {
    color: #fb8612;
}

.mini_modal .desc a {
    color: #000;

    transition: .2s linear;
    text-decoration: none;

    border-bottom: 1px solid;
}

.mini_modal .desc a:hover {
    color: #fb8612;
}

.modal_cont .icon {
    color: #fff;
    font: 700 16px 'Open Sans';

    width: 25px;
    height: 25px;

    cursor: pointer;
    transition: .2s linear;

    border: none;
    background: #fb8612;
}

.modal_cont .icon:hover,
.modal_cont .icon.active {
    background: #ff6d00;
}


.product_info .data .portal {
    width: 220px;
    margin-top: 30px;
    padding: 10px 15px;

    border: 1px solid #000;
}

.product_info .data .portal&gt;img {
    display: block;

    max-width: 100%;
}

.product_info .data .portal&gt;.flex {
    margin-top: 15px;

    justify-content: space-between;
    align-items: center;
    align-content: center;
}

.product_info .data .portal .link button {
    color: #000;
    font: 16px 'Open Sans';

    cursor: pointer;
    transition: .2s linear;

    border: none;
    border-bottom: 1px dashed;
    background: none;
}

.product_info .data .portal .link button:hover {
    color: #fb8612;
}

.product_info .box_btn {
    margin-top: 34px;

    align-items: center;
    align-content: center;
}

.product_info .amount {
    width: 90px;
}

.product_info .inCart {
    margin-left: 34px;
}

.product_info .inCart_btn {
    color: #fff;
    font: 700 14px 'Open Sans';

    display: block;
    display: inline-block;

    height: 57px;
    padding: 0 20px 0 32px;

    cursor: pointer;
    transition: .2s linear;
    vertical-align: top;
    text-transform: uppercase;

    border: none;
    border-radius: 3px;
    background: #fb8612;
}

.product_info .inCart_btn:hover {
    background: #ff6d00;
}

.product_info .inCart_btn span {
    position: relative;

    display: inline-block;

    padding-right: 51px;

    vertical-align: top;
}

.product_info .inCart_btn span:after {
    position: absolute;
    top: 50%;
    right: 0;

    width: 26px;
    height: 26px;
    margin-top: -13px;

    content: '';

    background: url(../images/ic_cart2.svg) 0 0 no-repeat;
}

.product_info .fastBuy {
    margin-left: 55px;
}

.product_info .fastBuy_btn {
    color: #000;
    font: 16px 'Open Sans';

    position: relative;

    padding-left: 30px;

    cursor: pointer;
    transition: .2s linear;

    border: none;
    background: none;
}

.product_info .fastBuy_btn svg {
    position: absolute;
    top: 0;
    left: 0;

    width: 21px;
    height: 21px;

    transition: .2s linear;

    fill: #000;
}

.product_info .fastBuy_btn:hover svg {
    fill: #ff6d00;
}

.product_info .fastBuy_btn span {
    border-bottom: 1px dashed;
}

.product_info .fastBuy_btn:hover {
    color: #ff6d00;
}


.product_info .feature {
    margin-top: 46px;
}

.feature .title {
    font-size: 18px;
    font-weight: 600;

    margin-bottom: 12px;
}

.feature .items {
    display: table;

    width: 100%;

    border-top: 2px solid #999;
}

.product_info .feature .items {
    width: auto;
    min-width: 406px;
}

.feature .item {
    font-size: 15px;
    line-height: 22px;

    display: table-row;

    letter-spacing: 0;
}

.feature .item.hide {
    display: none;
}

.feature .item .name {
    display: table-cell;

    padding: 7px 10px 7px 0;

    vertical-align: top;

    border-bottom: 1px solid #a3a3a3;
}

.feature .item .val {
    font-size: 14px;
    font-weight: 700;

    display: table-cell;

    padding: 7px 0;

    vertical-align: top;

    border-bottom: 1px solid #a3a3a3;
}

.feature .item:last-child .name,
.feature .item:last-child .val {
    border-bottom-color: #999;
}

.feature .more {
    position: relative;

    margin-top: 20px;

    text-align: center;
}

.feature .more:before {
    position: absolute;
    top: 50%;
    left: 0;

    width: 100%;
    height: 2px;
    margin-top: -2px;

    content: '';

    background: #999;
}

.feature .more_btn {
    color: #000;
    font: 700 15px 'Open Sans';

    position: relative;

    display: inline-block;

    height: 22px;
    padding: 0 7px 0 14px;

    cursor: pointer;
    transition: .2s linear;
    vertical-align: top;

    border: none;
    background: #fff;
}

.feature .more_btn:hover {
    color: #fb8612;
}

.feature .more_btn span {
    position: relative;

    padding-right: 23px;
}

.feature .more_btn span:before {
    position: absolute;
    top: 50%;
    right: 0;

    width: 9px;
    height: 6px;
    margin-top: -2px;

    content: '';

    background: url(../images/arrow1.svg) 50%/contain no-repeat;
}


.information .cont {
    justify-content: space-between;
    align-items: stretch;
    align-content: stretch;
}

.information .col {
    width: calc(50% - 12px);
    margin-top: 24px;
    padding: 60px 50px;

    background: #fff;
}

.information .title {
    font-size: 24px;
    line-height: 39px;

    margin-bottom: 26px;
}

.information .block_del .title {
    position: relative;

    padding-left: 82px;
}

.information .block_del .title:before {
    position: absolute;
    top: 0;
    left: 0;

    width: 57px;
    height: 39px;

    content: '';

    background: url(../images/ic_del.png) 0 0 no-repeat;
}

.information .desc {
    font-size: 15px;
    line-height: 26px;

    margin-bottom: 32px;
}


.cart_info .bg {
    padding: 40px 0 54px;

    background: #fff;
}

.cart_info table {
    width: 100%;

    border-collapse: collapse;
}

.cart_info table tr th {
    color: #1f1f1f;
    font-size: 14px;
    font-weight: 700;
    line-height: 22px;

    padding: 0 0 10px 20px;

    text-align: center;

    border-bottom: 1px solid #ccc;
}

.cart_info table tr th:nth-child(2) {
    padding-left: 100px;

    text-align: left;
}

.cart_info table tr td {
    color: #1f1f1f;
    font-size: 16px;
    line-height: 23px;

    height: 102px;
    padding: 10px 0 10px 20px;

    vertical-align: middle;

    border-bottom: 1px solid #ccc;
}

.cart_info table tr td.thumb {
    width: 132px;
    padding-left: 46px;

    table-layout: fixed;
}

.cart_info table tr td.thumb a,
.cart_info table tr td.thumb img {
    display: block;

    max-width: 100%;
    max-height: 74px;
    margin: 0 auto;
}

.cart_info table tr td.info {
    width: 40%;
    padding-left: 100px;
}

.cart_info table tr td .name {
    font-size: 14px;
    line-height: 18px;
}

.cart_info table tr td .name a {
    color: #000;

    transition: .2s linear;
    text-decoration: none;

    border-bottom: 1px solid transparent;
}

.cart_info table tr td .name a:hover {
    color: #ff6d00;

    border-bottom-color: #ff6d00;
}

.cart_info table tr td .code {
    color: #929292;
    font-size: 14px;
    line-height: 18px;

    margin-top: 10px;
}

.cart_info table tr td.amount {
    width: 110px;
}

.cart_info table tr td.td_price {
    text-align: center;
    white-space: nowrap;
}

.cart_info table tr td .oldPrice {
    text-decoration: line-through;
}

.cart_info table tr td .price {
    font-size: 20px;
    font-weight: 600;
}

.cart_info table tr td .price .rub {
    font-size: 19px;
}

.cart_info table tr td.delete {
    width: 70px;
    padding-left: 0;
}

.cart_info table tr td.delete a {
    position: relative;

    display: block;

    width: 14px;
    height: 14px;
    margin: 0 auto;
}

.cart_info table tr td.delete a:before {
    position: absolute;
    top: 50%;
    left: 50%;

    display: block;

    width: 100%;
    height: 2px;

    content: '';
    transition: .2s linear;
    transform: translate(-50%, -50%) rotate(-45deg);

    background: #999;
}

.cart_info table tr td.delete a:after {
    position: absolute;
    top: 50%;
    left: 50%;

    display: block;

    width: 100%;
    height: 2px;

    content: '';
    transition: .2s linear;
    transform: translate(-50%, -50%) rotate(45deg);

    background: #999;
}

.cart_info table tr td.delete a:hover:before,
.cart_info table tr td.delete a:hover:after {
    background: #fb8612;
}

.cart_info .bot {
    padding: 0 70px 0 39px;

    flex-wrap: nowrap;
    justify-content: space-between;
}

.cart_info .block_r {
    padding-top: 14px;

    text-align: right;

    border-top: 4px solid #000;
}

.cart_info .cart_total {
    font-size: 35px;
    font-weight: 600;
    line-height: 40px;

    white-space: nowrap;
}

.cart_info .cart_total .title {
    font-size: 24px;

    display: inline;
}

.cart_info .cart_total i {
    font-size: 26px;
}

.cart_info .link {
    margin-top: 18px;
}

.cart_info .link button {
    color: #fff;
    font: 700 14px 'Open Sans';

    display: inline-block;

    min-width: 244px;
    height: 57px;
    padding: 0 30px;

    cursor: pointer;
    transition: .2s linear;
    vertical-align: top;
    text-transform: uppercase;

    border: none;
    border-radius: 3px;
    background: #fb8612;
}

.cart_info .link button:hover {
    background: #ff6d00;
}

.cart_info .block_l {
    padding-top: 16px;
}

.cart_info .important {
    font-size: 13px;
    line-height: 20px;
}

.cart_info .empty_trash {
    margin-top: 40px;
}

.cart_info .empty_trash a {
    color: #000;
    font-size: 15px;
    line-height: 39px;

    display: inline-block;

    padding: 0 28px 0 18px;

    transition: .2s linear;
    vertical-align: top;
    text-decoration: none;

    border: 1px solid #e4e2e2;
    border-radius: 3px;
}

.cart_info .empty_trash a:hover {
    color: #fff;

    background: #333;
}

.cart_info .empty_trash a span {
    position: relative;

    display: inline-block;

    padding-left: 39px;

    vertical-align: top;
}

.cart_info .empty_trash a .icon {
    position: absolute;
    top: 50%;
    left: 0;

    display: block;

    width: 18px;
    height: 18px;
    margin-top: -9px;

    transition: .2s linear;

    fill: #000;
}

.cart_info .empty_trash a:hover .icon {
    fill: #fff;
}


.checkout_info {
    padding: 46px 0 60px;
}

.checkout_info .page_title {
    margin-bottom: 0;
}

.checkout_info .bg {
    padding: 40px 0 45px;

    background: #fff;
}

.checkout_info .pad {
    padding: 14px 39px 0;
}

.checkout_info .info_login {
    align-items: center;
    align-content: center;
}

.checkout_info .info_login .title {
    font-size: 16px;
    line-height: 23px;

    max-width: calc(100% - 294px);
    margin-right: 50px;
}

.checkout_info .login {
    color: #000;
    font-size: 14px;
    font-weight: 700;
    line-height: 55px;

    display: block;

    width: 244px;
    padding: 0 27px 0 10px;

    transition: .2s linear;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;

    border: 1px solid #e4e2e2;
    border-radius: 3px;
}

.checkout_info .login:hover {
    color: #fff;

    border-color: #ff6d00;
    background: #ff6d00;
}

.checkout_info .login span {
    position: relative;

    display: inline-block;

    padding-left: 46px;

    vertical-align: top;
}

.checkout_info .login svg {
    position: absolute;
    top: 50%;
    left: 0;

    display: block;

    width: 23px;
    height: 23px;

    transform: translateY(-50%);
}

.checkout_info .login svg path,
.checkout_info .login svg circle {
    transition: .2s linear;
}

.checkout_info .login:hover svg path,
.checkout_info .login:hover svg circle {
    stroke: #fff;
}

.checkout_info .login:hover svg path:first-child {
    fill: #fff;
}

.checkout_info .box_adres {
    font-size: 16px;
    line-height: 24px;

    margin: -4px 0 32px;
    padding-left: 36px;

    flex-wrap: nowrap;
}

.checkout_info .name {
    padding-right: 8px;
}

.checkout_info .form {
    margin-top: 38px;
}

.checkout_info .form .input {
    height: 38px;
}

.checkout_info .form .cols .col {
    position: relative;
}

.checkout_info .form .cols .col:before {
    position: absolute;
    top: 0;
    right: -33.75px;

    width: 1px;
    height: 100%;

    content: '';

    background: #ccc;
}

.checkout_info .form .cols .col:nth-child(3n):before {
    display: none;
}

.checkout_info .form .line_form {
    margin-bottom: 9px;
}

.checkout_info .form .line_flex {
    justify-content: space-between;
}

.checkout_info .form .line_flex .line_form {
    width: auto;
    max-width: calc(50% - 10px);
}

.checkout_info .form .marg {
    margin-bottom: 30px;
}

.checkout_info .form .line_form.flex .label {
    width: 85px;
    margin: 7px 0 0;
}

.checkout_info .form .line_form.flex .field {
    width: calc(100% - 85px);
}

.checkout_info .data {
    display: none;
}


.slider_text {
    margin: 56px -39px 0;
    padding: 70px 0;

    background: #fcfcfc;
}

.slider_text .slide .img {
    position: relative;

    display: block;

    padding-bottom: 72%;
}

.slider_text .slide .img img {
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.slider_text .slide .name {
    color: #1f1f1f;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;

    margin-top: 26px;
    padding: 0 9px;

    letter-spacing: 0;
}

.slider_text .slide .name a {
    color: #000;

    text-decoration: none;

    border: none;
}

.slider_text .slide .name a:hover {
    color: #ff6d00;
}

.slider_text .slide .desc {
    color: #333;
    font-size: 15px;
    line-height: 26px;

    margin-top: 22px;
    padding: 0 9px;
}


.section_compare {
    padding-bottom: 60px;
}

.section_compare .bg {
    padding: 40px 0 50px;
    padding-bottom: 50px;

    background: #fff;
}

.section_compare .page_title {
    margin-bottom: 0;
}

.compare_info {
    overflow: hidden;

    width: calc(100% - 78px);
    margin: 0 auto;
    padding-right: 38px;

    align-items: flex-end;
    align-content: flex-end;
}

.compare_features {
    width: 273px;
	margin-top: 407px;
	float: left;
}

.compare_carousel {
	float: right;
}



.compare_features .title {
    color: #000;
    font-size: 18px;
    font-weight: 700;
    line-height: normal;

    padding: 25px 0;
}

.compare_features .features {
    font-size: 15px;
    line-height: 28px;
}

.compare_features .features .box {
    position: relative;

    display: flex;

    padding: 0 14px;

    background: #f7f9fb;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.compare_features .features .box:before {
    position: absolute;
    top: 0;
    left: 100%;

    width: 1000px;
    height: 100%;

    content: '';

    background: #f7f9fb;
}

.compare_features .features .box:nth-child(2n) {
    background: #fff;
}

.compare_features .features .box:nth-child(2n):before {
    background: #fff;
}

.compare_carousel {
    position: relative;

    width: calc(100% - 273px);
}

.compare_carousel .carousel {
    display: block;
    overflow: hidden;

    width: 100%;
}

.compare_carousel.not .carousel {
    display: flex;

    align-items: stretch;
    justify-content: flex-start;
}

.compare_carousel .product_wrap {
    position: relative;

    display: block;
    float: left;

    width: 33.333%;

    list-style: none;
}

.compare_carousel .product {
    padding-top: 20px;
}

.compare_carousel .product .top {
    position: relative;

    width: calc(100% - 34px);
    margin: 0 auto 74px;
    padding: 29px 20px 14px;

    transition: .2s linear;

    border: 1px solid #eee;
    background: #fff;
}

.compare_carousel .product:hover .top {
    border-color: transparent;
    box-shadow: 0 0 15px rgba(0, 0, 0, .05);
}

.compare_carousel .product .delete {
    position: absolute;
    z-index: 10;
    top: 11px;
    right: 11px;

    width: 22px;
    height: 22px;

    cursor: pointer;

    border: none;
    background: none;
}

.compare_carousel .product .delete span {
    position: relative;
    left: -2px;

    display: block;

    width: calc(100% + 4px);
    height: 3px;

    background: #999;
}

.compare_carousel .product .delete span:nth-child(1) {
    top: 2px;

    transform: rotate(45deg);
}

.compare_carousel .product .delete span:nth-child(2) {
    top: -1px;

    transform: rotate(-45deg);
}


.compare_carousel .product .thumb {
    position: relative;

    display: block;

    padding-bottom: 90.39%;
}

.compare_carousel .product .thumb .img {
    position: absolute;
    top: 0;
    left: 0;

    display: flex;

    width: 100%;
    height: 100%;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.compare_carousel .product .thumb img {
    display: block;

    max-width: 100%;
    max-height: 100%;
}

.compare_carousel .product .name {
    font-size: 14px;
    line-height: 23px;

    margin-top: 40px;
}

.compare_carousel .product .name a {
    color: #000;

    transition: .2s linear;
    text-decoration: none;

    border-bottom: 1px solid transparent;
}

.compare_carousel .product .name a:hover {
    color: #ff6d00;

    border-bottom-color: #ff6d00;
}

.compare_carousel .features {
    font-size: 15px;
    line-height: 28px;
}

.compare_carousel .features .box {
    display: flex;

    min-height: 26px;
    padding: 0 17px;

    background: #f7f9fb;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.compare_carousel .features .box:nth-child(2n) {
    background: #fff;
}

.compare_carousel .product .price {
    font-size: 20px;
    font-weight: 600;
}

.compare_carousel .product .price i {
    font-size: 19px;
}

.compare_carousel .product .in_stock {
    color: #390;

    position: relative;

    padding-left: 18px;
}

.compare_carousel .product .in_stock:before {
    position: absolute;
    top: 50%;
    left: 0;

    width: 9px;
    height: 9px;

    content: '';
    transform: translateY(-50%);

    border-radius: 50%;
    background: #390;
}

.compare_carousel .product .not_available {
    color: #c33;

    position: relative;

    padding-left: 18px;
}

.compare_carousel .product .not_available:before {
    position: absolute;
    top: 50%;
    left: 0;

    width: 9px;
    height: 9px;

    content: '';
    transform: translateY(-50%);

    border-radius: 50%;
    background: #c33;
}

.compare_carousel .product .under_order {
    color: #fb8612;

    position: relative;

    padding-left: 18px;
}

.compare_carousel .product .under_order:before {
    position: absolute;
    top: 50%;
    left: 0;

    width: 9px;
    height: 9px;

    content: '';
    transform: translateY(-50%);

    border-radius: 50%;
    background: #fb8612;
}

.compare_carousel .product .check {
    position: relative;

    width: 20px;
    height: 20px;

    background: url(../images/ic_check2.svg) 50% no-repeat;
}

.compare_carousel .product .noCheck {
    position: relative;

    width: 21px;
    height: 20px;
}

.compare_carousel .product .noCheck:before {
    position: absolute;
    top: 50%;
    left: 0;

    width: 100%;
    height: 2px;
    margin-top: -1px;

    content: '';

    background: #000;
}

.compare_carousel .scrollbar {
    position: absolute;
    top: 0;
    left: 17px;

    display: none;

    width: calc(100% - 34px);
    height: 11px;
    margin-top: 54px;

    background: #efefef;
}

.compare_carousel.active .scrollbar {
    display: block;
}

.compare_carousel .scrollbar .handle {
    width: 100px;
    height: 23px;
    margin-top: -6px;

    cursor: pointer;
}

.compare_carousel .scrollbar .handle .mousearea {
    position: absolute;
    top: 0;
    left: 0;

    display: flex;

    width: 100%;
    height: 100%;

    background: #999;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.compare_carousel .scrollbar .handle .mousearea span {
    display: block;

    width: 2px;
    height: 10px;

    background: #fff;
}

.compare_carousel .scrollbar .handle .mousearea span+span {
    margin-left: 3px;
}

.compare_carousel .controls button {
    position: absolute;
    z-index: 2;
    top: 0;

    display: block;

    width: 46px;
    height: 46px;
    margin-top: -3px;

    cursor: pointer;
    transition: .2s linear;

    border: none;
    border-radius: 50%;
    background: #efefef;
}

.compare_carousel .controls button:not(.disabled):hover {
    background: #fb8612;
}

.compare_carousel .controls button.prevPage {
    left: -38px;
}

.compare_carousel .controls button.nextPage {
    right: -38px;
}

.compare_carousel .controls button.prevPage:before,
.compare_carousel .controls button.nextPage:before {
    position: absolute;
    top: 50%;

    display: block;

    width: 16px;
    height: 16px;
    margin-top: -8px;

    content: '';
    transition: .2s linear;
    transform: rotate(-45deg);
}

.compare_carousel .controls button.prevPage:before {
    left: 50%;

    margin-left: -3.5px;

    border-top: 2px solid #000;
    border-left: 2px solid #000;
}

.compare_carousel .controls button.nextPage:before {
    right: 50%;

    margin-right: -3.5px;

    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
}

.compare_carousel .controls button:not(.disabled):hover:before,
.compare_carousel .controls button:not(.disabled):hover:before {
    border-color: #fff;
}


.section_lk {
    padding-bottom: 60px;
}

.section_lk .bg {
    padding: 40px 0;

    background: #fff;
}

.section_lk .content_flex {
    padding: 0 39px;
}

.section_lk .content {
    width: calc(100% - 216px);
}

.section_lk .main_title span {
    border-bottom: none;
}

.section_stock {
    margin: 10px 0 0 -25px;

    align-items: stretch;
    align-content: stretch;
}

.section_stock .item {
    width: calc(33.333% - 25px);
    margin: 25px 0 0 25px;

    transition: .2s linear;

    border: 1px solid #eee;
    background: #fff;
}

.section_stock .item .img {
    position: relative;

    display: block;

    padding-bottom: 72%;
}

.section_stock .item .img img {
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.section_stock .item .name {
    font-size: 17px;
    font-weight: 600;
    line-height: 26px;

    padding: 17px 16px;
}

.section_stock .item .name a {
    color: #000;

    transition: .2s linear;
    text-decoration: none;
}

.section_stock .item .name a:hover {
    color: #ff6d00;
}



.personal {
    margin-top: 40px;
    padding-left: 22px;
}

.password_form {
    display: none;
}

.personal .form .bord {
    height: 1px;
    margin: 15px 0 30px;

    background: #ccc;
}

.personal .form .line_flex {
    margin-left: -34px;

    justify-content: flex-start;
}

.personal .form .line_flex .line_form {
    width: calc(33.333% - 34px);
    margin-left: 34px;
}

.personal .personal_form .box_btn {
    display: none;
}

.personal .personal_form .box_btn.view {
    display: flex;
}

.personal .form .submit {
    margin-top: 0;
}

.personal .form .submit_btn {
    height: 41px;
    padding: 0 45px;
}

.personal .cancel {
    color: #fff;
    font: 15px 'Open Sans';

    display: block;

    height: 41px;
    margin-left: 34px;
    padding: 0 45px;

    cursor: pointer;
    transition: .2s linear;

    border: none;
    border-radius: 3px;
    background: #000;
}

.personal .cancel:hover {
    background: #ff6d00;
}

.personal .links {
    margin-top: 14px;
}

.personal .edit_personal {
    color: #fff;
    font: 15px 'Open Sans';

    display: block;

    min-width: 285px;
    height: 41px;
    padding: 0 45px;

    cursor: pointer;
    transition: .2s linear;

    border: none;
    border-radius: 3px;
    background: #000;
}

.personal .edit_personal:hover,
.personal .edit_personal.active {
    background: #ff6d00;
}

.personal .edit_password {
    color: #000;
    font: 15px 'Open Sans';

    display: block;

    height: 41px;
    margin-left: 34px;
    padding: 0 30px 0 18px;

    cursor: pointer;
    transition: .2s linear;

    border: 1px solid #e4e2e2;
    border-radius: 3px;
    background: #fff;
}

.personal .edit_password:hover,
.personal .edit_password.active {
    color: #fff;

    border-color: #ff6d00;
    background: #ff6d00;
}

.personal .edit_password span {
    position: relative;

    display: inline-block;

    padding-left: 42px;

    vertical-align: top;
}

.personal .edit_password svg {
    position: absolute;
    top: 50%;
    left: -2px;

    width: 21px;
    height: 21px;

    transition: .2s linear;
    transform: translateY(-50%);

    fill: #000;
}

.personal .edit_password:hover svg,
.personal .edit_password.active svg {
    fill: #fff;
}

.personal .form .column {
    max-width: 818px;
}


.history {
    margin-top: 16px;
}

.history .titles {
    color: #1f1f1f;
    font-size: 14px;
    font-weight: 700;
    line-height: 22px;

    margin-bottom: 1px;
    padding: 12px 0 4px;

    border-top: 1px solid #cbcbcb;
    border-bottom: 1px solid #cbcbcb;

    justify-content: space-between;
}

.history .titles .col {
    max-width: 25%;
    margin-bottom: 8px;

    text-align: center;
}

.history .titles .number {
    width: 110px;
}

.history .titles .date {
    width: 150px;
}

.history .titles .status {
    width: 150px;
}

.history .titles .price {
    width: 200px;
    padding-right: 50px;
}

.history .item {
    position: relative;

    width: calc(100% + 4px);
    margin: -3px 0 0 -2px;

    transition: .2s linear;

    border: 2px solid transparent;
}

.history .item.active {
    z-index: 1;

    border-color: #d5d5d5;
}

.history .head {
    color: #1f1f1f;
    font-size: 16px;
    line-height: 24px;

    position: relative;

    padding: 19px 0 11px;

    cursor: pointer;
    transition: .2s linear;

    border-bottom: 1px solid #cbcbcb;

    justify-content: space-between;
}

.history .item .head:hover,
.history .item.active .head {
    border-bottom-color: #fafafa;
    background: #fafafa;
}

.history .head:after {
    position: absolute;
    top: 50%;
    right: 26px;

    width: 13px;
    height: 10px;
    margin-top: -5px;

    content: '';

    background: url(../images/arrow3.svg) 50%/contain no-repeat;
}

.history .item.active .head:after {
    transform: rotate(180deg);
}

.history .head .col {
    max-width: 25%;
    margin-bottom: 8px;

    text-align: center;
}

.history .head .number {
    font-weight: 600;

    width: 110px;
}

.history .head .date {
    width: 150px;
}

.history .head .status {
    color: #390;

    width: 150px;
}

.history .head .cancel {
    color: #ff5d4c;
}

.history .head .price {
    font-size: 20px;
    font-weight: 600;

    width: 200px;
    padding-right: 50px;
}

.history .head .price .rub {
    font-size: 19px;
}

.history .data {
    display: none;
}

.history .cart {
    width: 100%;

    border-collapse: collapse;
}

.history .cart tr th {
    color: #1f1f1f;
    font-size: 14px;
    font-weight: 700;
    line-height: 22px;

    padding: 15px 0 15px 20px;

    border-top: 1px solid #cbcbcb;
}

.history .cart tr th:nth-child(2) {
    text-align: left;
}

.history .cart tr th:last-child {
    padding-right: 20px;
}

.history .cart tr th.total {
    width: 220px;
    padding-right: 50px;

    table-layout: fixed;
}

.history .cart tr td {
    color: #1f1f1f;
    font-size: 16px;
    line-height: 22px;

    height: 100px;
    padding: 8px 0 8px 20px;

    vertical-align: middle;

    border-top: 1px solid #cbcbcb;
}

.history .cart tr td:last-child {
    padding-right: 20px;
}

.history .cart tr td.thumb {
    width: 110px;

    table-layout: fixed;
}

.history .cart tr td.thumb a,
.history .cart tr td.thumb img {
    display: block;

    max-width: 100%;
    margin: 0 auto;
}

.history .cart tr td .name {
    font-size: 14px;
    line-height: 18px;
}

.history .cart tr td .name a {
    color: #000;

    transition: .2s linear;
    text-decoration: none;
}

.history .cart tr td .name a:hover {
    color: #ff6d00;
}

.history .cart tr td .code {
    color: #929292;
    font-size: 14px;
    line-height: 18px;

    margin-top: 4px;
}

.history .cart tr td.number {
    text-align: center;
}

.history .cart tr td.box_price {
    text-align: center;
    white-space: nowrap;
}

.history .cart tr td.total {
    width: 220px;
    padding-right: 50px;

    table-layout: fixed;
}

.history .cart tr td .oldPrice {
    text-decoration: line-through;
}

.history .cart tr td .price {
    font-size: 20px;
    font-weight: 600;
}

.history .cart tr td .price .rub {
    font-size: 19px;
}


.files {
    padding: 25px 25px 0 0;

    background: #f9f9f9;
}

.files .file {
    display: block;

    width: calc(20% - 25px);
    margin: 0 0 25px 25px;

    text-align: center;
    text-decoration: none;

    border: none;
}

.files .file .icon {
    display: flex;

    height: 33px;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.files .file .icon .icon {
    display: block;

    max-width: 100%;
    max-height: 100%;
    margin: 0;

    transition: .2s linear;

    fill: #000;
}

.files .file:hover .icon .icon {
    fill: #ff6d00;
}

.files .file .name {
    color: #000;
    font-size: 16px;
    line-height: 24px;

    margin-top: 8px;

    transition: .2s linear;
}

.files .file:hover .name {
    color: #ff6d00;
}

.files .file .size {
    color: #666;
    font-size: 14px;
    line-height: 22px;

    margin-top: 4px;

    transition: .2s linear;
}

.files .file:hover .size {
    color: #ff6d00;
}

/*---------------
   Sidebar
---------------*/
aside {
    width: 229px;
    margin-top: 72px;
}

.openFilter {
    color: #fff;
    font: 700 14px 'Open Sans';

    position: relative;

    display: block;

    width: 100%;
    height: 50px;

    cursor: pointer;
    transition: .2s linear;
    text-transform: uppercase;

    border: none;
    border-radius: 3px;
    background: #fb8612;
}

.openFilter.active {
    background: #ff6d00;
}

.filter {
    background: #fff;
}

.filter .title {
    color: #000;
    font-size: 14px;
    font-weight: 700;
    line-height: 24px;

    padding: 8px 16px;

    text-align: center;

    background: #f7f5f5;
	position: relative;
	cursor: pointer;
}

.filter .data {
    padding: 20px 16px;
}

.filter .bot {
    padding: 20px 16px 18px;
}

.filter .submit {
    margin-top: 0;

    text-align: center;
}

.filter .submit_btn {
    font-weight: 400;

    display: inline-block;

    width: auto;
    height: 41px;
    padding: 0 16px;

    vertical-align: top;
    text-transform: none;
}




.filter .title:after
{
    position: absolute;
    top: 50%;
    right: 6px;

    display: block;
	
    width: 9px;
    height: 5px;

    margin-top: -2px;

    content: '';

    background: url(../images/ic_sub_link.png) 0 0 no-repeat;
}

.filter .title:hover:after {
	background: url(../images/ic_sub_link_h.png) 0 0 no-repeat;
}

.filter .title:hover
{
    color: #ff7f00;
}

.filter .title.active:after
{
    -webkit-transform: rotate(-180deg);
        -ms-transform: rotate(-180deg);
            transform: rotate(-180deg);
}




.range&gt;.flex {
    justify-content: space-between;
    align-items: center;
    align-content: center;
}

.range&gt;.flex .input {
    color: #666;
    font-size: 14px;

    width: calc(50% - 20px);
    height: 31px;
    padding: 0;

    text-align: center;

    border-color: #e2e1e1;
    background: #fff;
}

.range .sep {
    width: 8px;
    height: 1px;

    background: #666;
}


.slimScrollDiv {
    width: calc(100% + 10px) !important;
}

.slimScrollDiv .custom_scroll,
.slimScrollDiv .custom_scrollBig {
    padding-right: 20px;
}

.slimScrollBar {
    opacity: 1 !important;
    border-radius: 0 !important;
}

.slimScrollRail {
    border-radius: 0 !important;
}


.section_lk aside {
    width: 195px;
    margin: 0;
}


.list_lk div {
    font-size: 14px;
    line-height: normal;
}

.list_lk div+div {
    margin-top: 22px;
}

.list_lk a {
    color: #000;
    font-weight: 700;

    transition: .2s linear;
    text-decoration: none;

    border-bottom: 4px solid transparent;
}

.list_lk a:hover,
.list_lk a.active {
    color: #ff6d00;

    border-bottom-color: #ff6d00;
}


aside .important {
    position: relative;

    margin-top: 56px;
    padding: 44px 12px 24px;

    border: 2px solid #fc6;
    background: #fdfdf4;
}

aside .important:before {
    color: #000;
    color: #fff;
    font-size: 21px;
    font-weight: 700;
    line-height: 40px;

    position: absolute;
    top: -20px;
    left: 50%;

    width: 40px;
    height: 40px;
    margin-left: -20px;

    content: '!';
    text-align: center;

    border-radius: 50%;
    background: #ff6d00;
}

aside .important&gt; :last-child {
    margin-bottom: 0 !important;
}

aside .important .desc {
    font-size: 13px;
    line-height: 20px;

    margin-bottom: 20px;
}

/*---------------
   Footer
---------------*/
footer {
    position: relative;

    flex: 0 0 auto;
}

footer .info {
    padding: 62px 0 70px;

    background: #f3f3f2;
    position: relative;
}

footer .info:before {
    content: '';
    position: absolute;
    left: 50%;
    width: 599px;
    height: 84px;
    bottom: -3px;
    margin-left: 334px;
    background: url(../images/footer_bg.png) 0 0 no-repeat;
}

footer .info .cont {
    position: relative;

    justify-content: space-between;
}


footer .contact {
    width: 333px;
    padding-top: 14px;
    padding-left: 12px;
}

footer .title {
    font-size: 14px;
    line-height: 24px;
}

footer .item+.item {
    margin-top: 20px;
}

footer .item.time {
    margin-top: 32px;
}

footer .item .title {
    width: 84px;
    padding-right: 5px;
}

footer .item.time .title {
    width: 130px;
    padding-right: 5px;
}

footer .item .box {
    font-size: 14px;
    line-height: 24px;

    width: calc(100% - 84px);
}

footer .item.time .box {
    width: calc(100% - 130px);
}

footer .mail {
    color: #000;

    transition: .2s linear;
    text-decoration: none;

    border-bottom: 1px solid;
}

footer .mail:hover {
    border-bottom-color: transparent;
}

footer .phone {
    color: #000;
    font-size: 25px;
    font-weight: 700;

    text-decoration: none;
}


footer .block_center {
    width: 265px;
    padding-top: 18px;
}

footer .logo img {
    display: block;

    max-width: 100%;
    margin: 0 auto;
}

footer .callBback {
    margin-top: 28px;
}

footer .callBback_btn {
    color: #000;
    font: 13px 'Open Sans';

    position: relative;

    display: block;

    width: 100%;
    height: 44px;

    cursor: pointer;
    transition: .2s linear;
    text-transform: uppercase;

    border: 1px solid #1a1b1b;
    background: transparent;
}

footer .callBback_btn:hover {
    color: #fff;

    background: #1a1b1b;
}


footer .list {
    width: 333px;
}

footer .list a {
    color: #000;
    font-size: 13px;
    font-weight: 700;
    line-height: 44px;

    display: inline-block;

    padding: 0 22px;

    transition: .2s linear;
    text-decoration: none;
    text-transform: uppercase;

    border-radius: 3px;
}

footer .list a:hover {
    color: #fff;

    background: #1a1b1b;
}


footer .bottom {
    padding: 23px 0;

    background: #1a1b1b;
}

footer .bottom .cont {
    justify-content: space-between;
    align-items: center;
    align-content: center;
}

footer .copy {
    color: #666;
    font-size: 12px;
    line-height: normal;
}

footer .public {
    color: #666;
    font-size: 12px;
    line-height: normal;
}

footer .public a {
    color: #666;

    transition: .2s linear;
    text-decoration: none;
}

footer .public a:hover {
    color: #fff;
}

footer .policy {
    color: #666;
    font-size: 12px;
    line-height: normal;

    margin-top: 8px;
}

footer .policy a {
    color: #666;

    transition: .2s linear;
    text-decoration: none;
}

footer .policy a:hover {
    color: #fff;
}

footer .created {
    color: #666;
    font-size: 11px;
    line-height: 16px;
}

footer .created a {
    color: #666;

    position: relative;

    display: inline-block;

    padding-right: 16px;

    transition: .2s linear;
    text-decoration: none;
}

footer .created a:after {
    position: absolute;
    top: 100%;
    right: 0;

    width: 66px;
    height: 15px;

    content: '';

    background: url(../images/ic_created.png) 0 0 no-repeat;
}

footer .created a:hover {
    color: #fff;
}

/*---------------
   PopUp
---------------*/
.modal {
    display: none;
    visibility: visible !important;

    width: 406px;
    max-width: 100%;
    padding: 34px 60px;

    border: 1px solid #fb8612;
    background: #fff;
    box-shadow: 0 0 24px rgba(102, 102, 102, .1);
}

.callBback_modal,
.fastBuy_modal {
    width: 440px;
}

.offer_modal {
    width: 470px;
}

.modal_title {
    color: #000;
    font-size: 36px;
    font-weight: 300;
    line-height: normal;

    position: relative;

    padding-left: 28px;
}

.modal_title:before {
    position: absolute;
    top: 11px;
    left: -7px;

    width: 13px;
    height: calc(100% - 21px);

    content: '';

    background: #b5d68b;
}

.reg_modal .modal_title:before {
    background: #fb8612;
}

.modal_desc {
    font-size: 14px;
    line-height: 20px;

    margin-top: 14px;
}

.modal .form {
    margin-top: 20px;
}

.login_modal .form {
    margin-top: 32px;
}

.modal .reg {
    margin-top: 30px;

    text-align: center;
}

.modal .reg .regBtn {
    color: #000;
    font: 600 18px 'Open Sans';

    display: inline-block;

    cursor: pointer;
    transition: .2s linear;
    vertical-align: top;

    border: none;
    background: none;
}

.modal .reg .regBtn:hover {
    color: #ff6d00;
}

.modal .radio {
    margin-bottom: 18px;
}

.modal_small {
    color: #000;
    font-size: 18px;
    line-height: 28px;

    position: fixed;
    z-index: 280;
    top: 50%;
    left: 50%;

    display: none;

    width: 340px;
    padding: 15px;

    transform: translate(-50%, -50%);
    text-align: center;

    border: 1px solid #eee;
    background: #fff;
    box-shadow: 0 0 24px rgba(0, 0, 0, .05);
}


@media (max-width: 1111px) {

    header .search {
        width: 214px !important;
    }

    header .user-links {
        width: 200px !important;
    }
}

.show_filer_variants{
	margin-top: 11px;
/*	display: block; */
	display: none;
	text-align: center;
	font-size: 13px;
	text-decoration: underline;
	cursor: pointer;
}

.show_filer_variants:hover{
	text-decoration: none;
}

.b-more-btn {
	    color: #fff;
    font: 700 14px 'Open Sans';
    position: relative;
    display: block;
    width: 100%;
    height: 50px;
    cursor: pointer;
    transition: .2s linear;
    text-transform: uppercase;
    border: none;
    border-radius: 3px;
    background: #fb8612;
	max-width: 200px;
    margin: 45px auto;
}

.error-block {
	padding-top: 30px;
	color: red;
}


.feature_items .title {
    font-size: 18px;
    font-weight: 600;

    margin-bottom: 12px;
}

.feature_items .items {
    display: table;

    width: 100%;

    border-top: 2px solid #999;
}

.feature_items .items {
    width: auto;
}

.feature_items .item {
    font-size: 15px;
    line-height: 22px;

    display: table-row;

    letter-spacing: 0;
}

.feature_items .item.hide {
    display: none;
}

.feature_items .item .name_item {
    display: table-cell;

    padding: 7px 10px 7px 0;

    vertical-align: top;

    border-bottom: 1px solid #a3a3a3;
	font-size: 11px;
	line-height: 13px;
}

.feature_items .item .val {
    font-size: 14px;
    font-weight: 700;

    display: table-cell;

    padding: 7px 0;

    vertical-align: top;

    border-bottom: 1px solid #a3a3a3;
	
	white-space: break-spaces;
word-break: break-word;
font-size: 11px;
text-align: right;
line-height: 13px;
}

.feature_items .item:last-child .name_item,
.feature_items .item:last-child .val {
    border-bottom-color: #999;
}


.feature_items .item .name_item :after,
.feature_items .item .val:after { 
	content:'..................................................';
  display: block;
  white-space: nowrap;
  overflow: hidden;
}



.feature_items2 {
  width: 100%;
  font-size: 11px;
  line-height: 13px;
  margin: 10px 0;
}
.feature_items2 p {
    overflow: hidden;
	margin-bottom: 6px;
}
.feature_items2 p:after {
	content:'..................................................';
  display: block;
  white-space: nowrap;
  overflow: hidden;
  color: grey;
}
.feature_items2 p span:first-of-type {
  float:left;
  margin-right: 2px;
  color: grey;
}
.feature_items2 p span:last-of-type {
  float:right;
  margin-left: 2px;
  font-weight: 600;
}

.sertifikat_block .main_title {
	margin-bottom: 20px;
}
</pre></body></html>