@charset "utf-8";

html,
body {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    min-width: 320px;
}

body {
    margin: 0;
    padding: 0;
    background: #fff;
    /* font: normal 15px/20px "PT Sans", Arial, Helvetica, " sans-serif"; */
    font: normal 14px/20px Arial, Helvetica, " sans-serif";
    letter-spacing: -0.008em;
    color: #000;
    -webkit-text-size-adjust: none;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

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

form,
fieldset {
    margin: 0;
    padding: 0;
    border: 0;
}

input,
select,
textarea,
button,
.jcf-select {
    /* font: normal 15px "PT Sans", Arial, Helvetica, " sans-serif"; */
    font: normal 14px Arial, Helvetica, " sans-serif";
    color: #000;
    outline: none;
}

input[type="text"],
input[type="password"],
textarea,
select,
.jcf-select-text {
    -webkit-appearance: none;
    border: 1px solid #c8c8c8;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    background: #fff;
    margin: 0;
    padding: 16px 10px 13px 10px;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
     -ms-transition: all 0.2s linear;
     -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

input[type="text"].error,
input[type="password"].error,
textarea.error,
.error .jcf-select-text {
    border-color: #d83d42;
}

input[type="text"]:focus,
input[type="password"]:focus,
textarea:focus,
.jcf-focus .jcf-select-text {
    border-color: #1860d6;
}

input.readonly,
textarea.readonly {
    border-color: #c8c8c8 !important;
    border-style: dotted;
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
    color: #a0a0a0;
    opacity: 1;
}

input::-moz-placeholder, textarea::-moz-placeholder {
    color: #a0a0a0;
    opacity: 1;
}

input:-moz-placeholder, textarea:-moz-placeholder, {
    color: #a0a0a0;
    opacity: 1;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
    color: #a0a0a0;
    opacity: 1;
}

input:focus::-webkit-input-placeholder, textarea:focus::-webkit-input-placeholder {
    color: #fff !important;
}

input:focus::-moz-placeholder, textarea:focus::-moz-placeholder {
    color: #fff !important;
}

input:focus:-moz-placeholder, textarea:focus:-moz-placeholder {
    color: #fff !important;
}

input:focus:-ms-input-placeholder, textarea:focus:-ms-input-placeholder {
    color: #fff !important;
}

button::-moz-focus-inner {
    border: 0;
}

.jcf-select {
    display: block;
    position: relative;
}

.jcf-select select,
.jcf-select .jcf-select-text {
    font: inherit;
    color: inherit;
    z-index: 5;
    cursor: pointer;
}

.jcf-select .jcf-select-text {
    position: relative;
    z-index: 4;
    display: block;
    padding-right: 30px !important;
}

.jcf-select .jcf-select-text:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 10px;
    border-style: solid;
    border-width: 5px 5px 0 5px;
    border-left-color: transparent !important;
    border-right-color: transparent !important;
    margin: -2px 0;
}

textarea {
    resize: none;
}

.outtaHere {
    position: absolute !important;
    left: -10000px !important;
}

header,
nav,
section,
article,
aside,
footer,
menu,
time,
figure,
figcaption {
    display: block;
}

img {
    border: 0;
    vertical-align: top;
}

a,
.link {
    color: #1860d6;
    text-decoration: none;
    outline: none;
    cursor: pointer;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
     -ms-transition: all 0.2s linear;
     -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

a:hover,
.link:hover {
    text-decoration: none;
}

.opt-link {
    cursor: pointer;
}

a > span,
.opt-link > span,
.link > span {
    position: relative;
    border-bottom-width: 1px;
    border-bottom-color: transparent;
    border-bottom-style: solid;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
     -ms-transition: all 0.2s linear;
     -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

a:hover > span,
.link:hover > span {
    border-bottom-color: inherit;
}

.un > span,
.link.un > span {
    border-bottom-color: inherit;
}

.un:hover > span,
.link.un:hover > span {
    border-bottom-color: transparent;
}

.opt-link > span {
    border-bottom-style: dotted;
}

.dark {
    color: #000;
}

.white {
    color: #fff;
}

strong {
    font-weight: bold;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 18px;
    line-height: 24px;
    font-weight: bold;
    margin: 33px 0 11px 0;
}

h1 {
    font-size: 21px;
    text-transform: uppercase;
    margin: 20px 0 25px 0;
}

h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child {
    margin-top: 3px;
}

p,
ol,
ul {
    margin: 0;
}

p + p {
    margin-top: 11px;
}

ol,
ul {
    padding: 0 0 0 15px;
}

.red {
    color: #d83d42 !important;
}

.green {
    color: #00ae24 !important;
}

.grey {
    color: #a0a0a0 !important;
}

.grey2 {
    color: #8c8c8c !important;
}

.nowrap {
    white-space: nowrap;
}

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

.nofloat {
    height: 100%;
    overflow: hidden;
}

.cell {
    display: table-cell;
    vertical-align: middle;
}

.inline {
    display: inline-block;
}

.hr {
    height: 1px;
    overflow: hidden;
    background: #e0e0e0;
}

a[href^=tel] {
    color: inherit !important;
    cursor: inherit;
    text-decoration: none !important;
}

.clearfix {
    zoom: 1
}

.clearfix:after {
    content: ' ';
    clear: both;
    display: block;
    width: 0;
    height: 0;
    overflow: hidden;
    font-size: 0;
}

.wrapper {
    max-height: 9001em;
    min-width: 320px;
    position: relative;
    overflow: hidden;
    text-align: left;
    flex: 1 0 auto;
}

.container {
    /*width: 1141px;*/
    /*margin: 0 auto;*/
    /*position: relative;*/
    max-width: 1180px;
    margin: 0 auto;
    position: relative;
    width: auto;
    padding: 0 20px;
}



.sides-hold:after {
    content: ' ';
    clear: both;
    display: block;
    width: 0;
    height: 0;
    overflow: hidden;
    font-size: 0;
}

.sides-hold {
    padding: 0 20px 0 306px;
}

.sides-hold:after {
    content: ' ';
    clear: both;
    display: block;
    width: 0;
    height: 0;
    overflow: hidden;
    font-size: 0;
}

.sides-hold .mainContent {
    float: right;
    width: 100%;
}

.sides-hold .aside {
    float: left;
    width: 306px;
    margin: 0 0 0 -306px;
    padding: 0 36px 0 20px;
}

.logo {
    font-size: 0;
    width: 250px;
    margin-right: 36px;
}

/*.logo > * {
    display: inline-block;
    vertical-align: middle;
    height: 61px;
    width: 100%;
    background: url(../img/logo.png) no-repeat 0 50%;
    background-size: 100% auto;
}*/

.logo > a{
    display: inline-block;
    vertical-align: middle;
    height: 61px;
    width: 100%;
}

.logo img{    
    width: 100%;
    height: auto;
}

.check {
    position: relative;
    padding: 0 0 0 25px;
}

.check label {
    cursor: pointer;
}

.check .checkbox {
    position: absolute;
    top: 2px;
    left: 0;
}

.checkbox {
    cursor: pointer;
    position: relative;
    display: inline-block;
    width: 15px;
    height: 15px;
    border: 1px solid #c8c8c8;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
     -ms-transition: all 0.2s linear;
     -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.checkbox:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: url(../img/checkbox.png) no-repeat 50% 50%;
    background-size: auto 7px;
    opacity: 0;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
     -ms-transition: all 0.2s linear;
     -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

input:checked + .checkbox {
    border-color: #1565c0;
}

input:checked + .checkbox:before {
    opacity: 1;
}

.open-block .to-hide,
.open-block.open .to-show {
    display: none;
}

.open-block.open .to-hide {
    display: inline;
}

.btn {
    -webkit-appearance: none;
    border: 0;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
    text-overflow: ellipsis;
    text-decoration: none;
    cursor: pointer;
    color: #fff;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    font-weight: bold;
    font-size: 16px;
    letter-spacing: normal;
    height: 50px;
    line-height: 50px;
    display: block;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
     -ms-transition: all 0.2s linear;
     -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    padding: 0 20px;
}

.btn.small {
    font-size: 15px !important;
    height: 40px;
    line-height: 40px;
}

input.btn {
    line-height: normal !important;
}

.btn input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    background: none;
    cursor: pointer;
}

.btn.bg-blue {
    background-color: #1565c0;
}

.btn.bg-blue:hover {
    background-color: #2578d7;
}

.btn.bg-red {
    background-color: #d83d42;
}

.btn.bg-red:hover {
    background-color: #ef4b50;
}

.btn.bg-grey {
    background-color: #dfdfdf;
    color: #000;
}

.btn.bg-grey:hover {
    background-color: #fff;
    box-shadow: inset 0 0 0 1px #dfdfdf;
    -webkit-box-shadow: inset 0 0 0 1px #dfdfdf;
}

.btn.bg-disabled,
.btn.bg-disabled:hover {
    background-color: #d2d2d2;
    color: rgba(0, 0, 0, 0.35);
    cursor: default;
}
.order-submit{
    font-size:19px;
    font-weight: bold;
    color: white;
    background-color: #d83d42;

    -webkit-appearance: none;
    border: 0;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
    text-overflow: ellipsis;
    text-decoration: none;
    cursor: pointer;
    width:35%;
    min-width:330px;
/*    border-radius: 2px;
    -webkit-border-radius: 2px;*/
    font-weight: bold;
    font-size: 16px;
    letter-spacing: normal;
    height: 50px;
    line-height: 50px;
    display: block;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    padding: 0 20px
}
.order-submit[disabled] {
    color:#B0B3B6;
    background-color: #EEEFF2;
}
.btn.with-icon {
    padding-left: 40px;
}

.btn.with-icon img {
    position: absolute;
    top: 50%;
    left: 0;
    height: 20px;
    width: auto;
    margin: -10px 12px;
}

.btn.with-rarr {
    padding-right: 40px;
}

.btn.with-rarr:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 17px;
    background: url(../img/arr-white.png) no-repeat 50% 50%;
    width: 6px;
    height: 9px;
    margin: -4.5px 0;
    background-size: 100% 100%;
}

.header {
    color: #000;
}

.header .line1 {
    letter-spacing: 0.02em;
    padding: 9px 0 11px 0;
    background: #191919;
    color: #fff;
}

.header .line1 a {
    color: inherit;
}

.header .line1 .container {
    display: flex;
}

.header .line1 .l {
    flex: 0 0 auto;
    margin-right: auto;
    width: 286px;
    margin: 0;
    padding-right: 36px
}

@media(max-width: 1100px) {
    .header .line1 .l {
        width: auto;
        margin-right: auto;
        padding-right: 0;
    }
}

.header .line1 .r > * {
    margin-left: 23px;
}

.header .line1 .rind {
    font-size: 14px;
}

.header .line1 .rind + .rind {
    margin-left: 20px;
}

.header .line1 .r {
    flex: 0 0 auto;
}

.header .line1 .menu {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    /*justify-content: center;*/
}

.header .line1 .menu > * {
    margin-right: 40px;
}

.header .line1 .menu .link-back:before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    margin: 0 10px 0 0;
    position: relative;
    top: -1px;
    background: url(../img/icon-back-white.png) no-repeat;
    background-size: 100% 100%;
    width: 15px;
    height: 15px;
}

.header .line2, .header .line3 {
    border-bottom: 1px solid #e0e0e0;
}

.header .line2 {
    padding: 33px 0 32px 0;
}

.header .line2 .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.header .line2 .el.logo {
    margin: -20px 0 -20px 0;
    line-height: 80px;
    padding: 0;
    width: 285px;
}

.header .line2 .el {
    position: relative;
    padding-left: 20px;
}

.header .line2 .pic {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    top: 10px;
    left: 0;
    width: 16px;
    height: 16px;
    margin: -8px 0;
}

.header .line2 .pic img {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}

.header .line2 .phone {
    font-weight: bold;
    font-size: 18px;
    white-space: nowrap;
}

.header .line3 {
    padding: 19px 0;
}

.header .line3 .container {
    display: flex;
    flex-flow: row nowrap;
}

.header .line3 .catalog-menu {
    flex: 0 0 250px;
    margin: 0 36px 0 0;
    position: relative;
}

.header .line3 .catalog-menu .toggle:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 10px;
    margin: -2px 0;
    border-style: solid;
    border-width: 5px 5px 0 5px;
    border-left-color: transparent !important;
    border-right-color: transparent !important;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
     -ms-transition: all 0.2s linear;
     -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.header .line3 .catalog-menu.open .toggle:after {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
}

.header .line3 .catalog-menu .side-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 100;
    max-height: 390px;
    overflow-y: scroll;
}

.header .line3 .link-send {
    flex: 0 0 250px;
    margin: 0 0 0 36px;
}

.header .line3 .search {
    flex: 1 0 auto;
    position: relative;
}

.header .line3 .search input[type="text"],
.header .line3 .search .label {
    display: block;
    width: 100%;
    font-size: 15px;
    padding: 14px 43px 14px 12px;
}

.header .line3 .search input[type="text"] {
    z-index: 4;
    position: relative;
    background-color: #fff;
    height: 50px;
}

.header .line3 .search input[type="text"].placeholder {
    background-color: transparent !important;
    z-index: 2;
}

.header .line3 .search .label {
    position: absolute;
    top: 0;
    left: 0;
    border-color: transparent;
    color: #a0a0a0;
}

.header .line3 .search .label a {
    color: inherit;
    position: relative;
    z-index: 3;
}

.header .line3 .search input[type="text"]:focus + .label a {
    z-index: auto;
}

.header .line3 .search input[type="submit"] {
    position: absolute;
    top: 0;
    right: 0;
    width: 44px;
    height: 48px;
    background: url(../img/icon-search-dark.png) no-repeat 50% 50%;
    background-size: auto 22px;
    border: 0;
    cursor: pointer;
    z-index: 5;
}

.header .icons{
    padding: 0;
}
    .header .icons .icon{
        text-align: center;
        display: inline-block;
        padding: 0 6px;
    }
    .header .icons a{        
        color: #999;
        font-size: 11px;
        
    }
        .header .icons a span{
            display: block;
            margin-top: -5px;
        }
    .header .icons a svg{
        fill: #999;
    }

    .header .icons a:hover{
        color: #1860d6;
    }
        .header .icons a:hover svg{
            fill: #1860d6;
        }


.footer {
    flex: 0 0 auto;
}

.footer .line {
    font-size: 13px;
    color: #e0e0e0;
    background: #191919;
}

.footer .line + .line {
    3border-top: 1px solid #464646;
}

.footer .line a {
    color: #fff;
}

.footer .line .dark {
    color: #9f9f9f;
}

.footer .line .container {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
}

.footer .line .w1 {
    width: 285px;
}

.footer .line .w2 {
    width: 430px;
    margin-right: -60px;
}

.footer .line1 {
    padding: 28px 0 36px 0;
}

.footer .line2 {
    padding: 18px 0;
}

/*.footer .logo {
    margin: 3px 20px 3px 0;
}

.footer .logo > * {
    background-image: url(../img/logo-white.png);
}*/

.footer .logo {
    margin: 3px 20px 3px 0;
}

.footer .subscr {
    background: #fff;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    margin: 5px 0 0 0;
}

.footer .subscr .in {
    display: flex;
    flex-flow: row nowrap;
}

.footer .subscr .in input[type="text"] {
    flex: 1 0 auto;
}

.footer .subscr .in input[type="submit"] {
    flex: 0 0 auto;
    cursor: pointer;
    border-left: 1px solid #e0e0e0;
    font-weight: bold;
    color: #1565c0;
}

.footer .subscr input {
    font-size: 15px;
    padding: 8px 16px;
    border: 0;
    background: none;
}

.footer .bind {
    padding: 25px 0;
}

.footer .rostext {
    padding: 0 0 0 79px;
    position: relative;
}

.footer .rostext img {
    float: left;
    width: 65px;
    height: auto;
    margin: 5px 0 0 -79px;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links > a {
    margin-right: 10px;
}

.footer-links > a:last-child {
    margin-right: 0px;
}

.footer-links > a:hover {
    text-decoration: underline;
}

.content {
    padding: 20px 0 50px 0;
}

#dropdown ul{
    display: none;
}

#dropdown:hover ul{
    display: block;
}

.side-menu {
    list-style: none;
    padding: 0;
    border: 1px solid #e0e0e0;
    background: #f5f5f5;
    color: #000;
}

.side-menu a {
    color: inherit;
}

.side-menu a:hover,
.side-menu .active {
    color: #ef4646;
}

.side-menu > li {
    margin: 0;
    padding: 0;
    position: relative;
    border-top: 1px solid #e0e0e0;
}

.side-menu > li:first-child {
    border-top-width: 0;
}

.side-menu > li > *:first-child {
    display: block;
    padding: 7px 19px;
    position: relative;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
     -ms-transition: all 0.2s linear;
     -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.side-menu > li > .arr {
    padding-right: 24px;
}

.side-menu > li > .arr2 {
    padding-left: 37px;
}

.side-menu > li > .arr:after,
.side-menu > li > .arr2:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 10px;
    background: url(../img/arr-grey.png) no-repeat 50% 50%;
    background-size: 100% 100%;
    width: 7px;
    height: 12px;
    margin: -6px 0;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.side-menu > li > .arr2:after {
    right: auto;
    left: 20px;
}

.side-menu > li > .arr2.active:after {
    background-image: url(../img/arr-red.png);
}

.side-menu > li:hover > .arr {
    color: #d83d42;
}

.side-menu .sub, .side-menu .sub-5-colum {
    /*position: absolute;
    top: 0;
    left: 100%;*/
    margin: -1px 0;
    /*box-shadow: inset 0 0 0 1px #e0e0e0;
    -webkit-box-shadow: inset 0 0 0 1px #e0e0e0;
    background: #f5f5f5;
    width: 0;*/
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    z-index: 100;
    overflow: hidden;
}

.side-menu > li:hover > .sub {
    width: 355px;
}

.side-menu .sub ul {
    list-style: none;
    width: 355px;
    margin: 0;
    padding: 1px 35px;
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    -webkit-column-gap: 35px;
    -moz-column-gap: 35px;
    column-gap: 35px;
}

.side-menu .sub li {
    padding: 7px 0 7px 0;
    display: inline-block;
    vertical-align: top;
    width: 100%;
    border-bottom: 1px solid #ddd;
}

.side-menu > li:hover > .sub-5-colum {
    width: 1000px;
}

.side-menu .sub-5-colum ul {
    list-style: none;
    width: 1000px;
    margin: 0;
    padding: 1px 35px;
    -webkit-column-count: 5;
    -moz-column-count: 5;
    column-count: 5;
    -webkit-column-gap: 35px;
    -moz-column-gap: 35px;
    column-gap: 35px;
}

.side-menu .sub-5-colum li {
    padding: 7px 0 7px 0;
    display: inline-block;
    vertical-align: top;
    width: 100%;
}

.sub-side-menu{
    left: 99% !important;
    position: absolute; 
    top: 50px;
    border: none;
    width: 450px !important;
    height: 390px !important;
    overflow-y: auto;
    z-index: 999;
}

.block {
    margin: 0 0 30px 0;
}

.text-ind {
    padding: 20px 20px;
}

.top-gallery,
.top-gallery .slide {
    position: relative;
    height: 348px;
    overflow: hidden;
}

.top-gallery .slide img {
    height: 100%;
    min-width: 100%;
    width: auto;
}

.top-gallery .text {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 18px;
    line-height: 30px;
    color: #fff;
    padding: 33px 30px;
}

.top-gallery .big1 {
    font-weight: bold;
    font-size: 40px;
    line-height: 1.1;
    margin: 0 0 17px 0;
    text-transform: none;
}

.top-gallery .big2 {
    font-size: 30px;
    line-height: 1.1;
    margin: 0 0 17px 0;
}

.top-gallery .wid {
    max-width: 450px;
}

.top-gallery .btn {
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 17px 30px;
    text-align: left;
    width: 250px;
    font-size: 15px;
}

.top-gallery .slick-dots {
    list-style: none;
    padding: 0;
    position: absolute;
    z-index: 10;
    bottom: 0;
    right: 0;
    line-height: 0;
    font-size: 0;
    margin: 23px 30px;
    white-space: nowrap;
}

.top-gallery .slick-dots li {
    display: inline-block;
    vertical-align: top;
    margin: 0;
    padding: 0;
}

.top-gallery .slick-dots li + li {
    margin-left: 20px;
}

.top-gallery .slick-dots button {
    cursor: pointer;
    display: block;
    text-align: left;
    text-indent: -10000px;
    border: 0;
    width: 10px;
    height: 10px;
    margin: 0;
    padding: 0;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    background: #fff;
    opacity: 0.5;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
     -ms-transition: all 0.2s linear;
     -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.top-gallery .slick-dots button:hover {
    opacity: 0.8;
}

.top-gallery .slick-dots .slick-active button {
    cursor: inherit;
    background-color: #ef4646;
    opacity: 1;
}

.features {
    background: url(/img/fonto.png) #1565c0;
    color: #fff;
    padding: 10px 17px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.features a {
    color: inherit;
}

.features .cell {
    height: 40px;
    text-align: left;
}

.features .el {
    width: 21.5%;
    white-space: nowrap;
    margin: 7px 0;
    position: relative;
    padding: 0 0 0 50px;
}

.features .pic {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    text-align: center;
    border: 0 !important;
    background: #d83d42;
    border-radius: 9px;
    -webkit-border-radius: 9px;
}

.features .pic img {
    vertical-align: top;
    height: 100%;
    width: auto;
}

.mainblock {
    border: 1px solid #e0e0e0;
}

.mainblock.bg-blue,
.mainblock.bg-blue .block-head {
    border-color: 1px solid #d5dfeb;
    background-color: #eef5fc;
}

.block-head,
.modal-head {
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    background: #f5f5f5;
    line-height: 20px;
    padding: 14px 20px 9px 20px;
}

.block-head .r {
    flex: 0 0 auto;
    margin-left: 20px;
}

.block-head .info {
    font-weight: bold;
    font-size: 16px;
}

.block-head .h1, .block-head .text {
    margin: -2px 0;    
    flex-grow: 1;
}
    .block-head .text .h1, .block-head .text h1, .block-head .text h2, .block-head .text h3, .block-head .text h4{
        font-size: 21px;
        line-height: 24px;
        text-transform: uppercase;
        font-weight: bold;
        color: #000;
        margin: 0;
    }

.block-head .h1.center {
    text-align: center;
}

.up-num {
    border: 0 !important;
    font-style: italic;
    font-weight: normal;
    font-size: 11px;
    position: relative;
    vertical-align: middle;
    top: -3px;
    white-space: nowrap;
    display: inline-block;
}

.block-head .h1 .up-num, .block-head .text .up-num {
    top: -8px;
    font-size: 14px;
}

.catalog:after {
    content: ' ';
    clear: both;
    display: block;
    width: 0;
    height: 0;
    overflow: hidden;
    font-size: 0;
}

.slick-arrow {
    width: 32px;
    border: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    cursor: pointer;
    background: url(../img/arr-blue.png) no-repeat 50% 50%;
    margin: 0 -28px;
    background-size: auto 20px;
    text-align: left;
    text-indent: -10000px;
}

.slick-prev {
    left: 0;
}

.slick-next {
    right: 0;
    -moz-transform: scale(-1, 1);
    -webkit-transform: scale(-1, 1);
    -o-transform: scale(-1, 1);
    transform: scale(-1, 1);
}

.catalog {
    position: relative;
}

.catalog .el {
    position: relative;
    float: left;
    width: 25%;
/*    height: 253px;*/
        height: 275px;
    font-size: 14px;
    text-transform: uppercase;
}

.mainContent .catalog .el {
    width: 25%;
    font-size: 14px;
    line-height: 17px;
}
    .mainContent .catalog .el span{
        color: #000;        
    }

    .homeCatalog .el{
        width: 20% !important;
    }

.catalog .el .bg,
.catalog .el .cover-link {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: -1px;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
     -ms-transition: all 0.2s linear;
     -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

@media (max-width: 960px) {
    .catalog .el .bg,
    .catalog .el .cover-link {
        margin: 0;
    }
}

.catalog .el .bg {
    border: 1px solid #e0e0e0;
    background: #fff;
}

.catalog .el .in {
    position: relative;
    padding: 4px 20px 0 20px;
    height: 100%;
}

.catalog .img {
    width: 130px;
    max-width: 100%;
    height: 130px;
    display: block;
    text-align: center;
    line-height: 130px;
    font-size: 0;
    margin: 0 auto 13px auto;
    border: 0 !important;
}

.catalog .img img {
    display: inline-block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    vertical-align: middle;
}

.catalog .name {
    /*font-weight: bold;*/
    margin: 0 0 12px 0;
}

.catalog .small {
    font-size: 12px;
    color: #8d8d8d;
    margin: 0 0 4px 0;
}

.catalog .name,
.catalog .small,
.catalog .text {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.catalog .text-price{
    font-size: 18px;
    line-height: 20px;
    font-weight: 700;
    color: #2f3436;
    text-transform: lowercase;
    padding-top: 5px;
}

.catalog.sections {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
}

.catalog.sections .el {
    float: none;
    height: auto;
    min-height: 239px;
    text-align: center;
    font-size: 15px;
    line-height: 24px;
    text-transform: none;
}

.catalog.sections .el .in {
    padding-top: 20px;
    padding-bottom: 5px;
}

.catalog.brands .el {
    height: 150px;
    z-index: 4;
}

.catalog.brands .el:hover {
    z-index: 5;
}

.catalog.brands .el .in {
    padding-top: 0;
    overflow: hidden;
}

.catalog.brands .el:hover .in {
    overflow: visible;
}

.catalog.brands .text1 {
    font-size: 12px;
    line-height: 17px;
    text-transform: none;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
     -ms-transition: all 0.2s linear;
     -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    opacity: 0;
}

.catalog.brands .img {
    width: 175px;
    height: 80px;
    line-height: 80px;
    margin-top: 30px;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
     -ms-transition: all 0.2s linear;
     -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.catalog.brands .el:hover .bg,
.catalog.brands .el:hover .cover-link {
    margin: -50px -14px -26px -14px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
}

.catalog.brands .el:hover .bg {
    box-shadow: 0 1px 10px rgba(210, 210, 213, 0.8);
    -webkit-box-shadow: 0 1px 10px rgba(210, 210, 213, 0.8);
}

.catalog.brands .el:hover .img {
    margin-top: -19px;
}

.catalog.brands .el:hover .text1 {
    opacity: 1;
}


.services:after {
    content: ' ';
    clear: both;
    display: block;
    width: 0;
    height: 0;
    overflow: hidden;
    font-size: 0;
}

.services .el {
    font-size: 16px;
    width: 25%;
    float: left;
    text-transform: uppercase;
    text-align: center;
    padding: 34px 10px 0 10px;
    height: 189px;
}

.services .img {
    width: 170px;
    max-width: 100%;
    height: 80px;
    line-height: 80px;
    font-size: 0;
    margin: 0 auto 23px auto;
    border: 0 !important;
    display: block;
}

.services .img img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    vertical-align: middle;
}

.services .more {
    padding: 20px 20px 0 23px;
    text-transform: none;
}

.services .more .bg1,
.services .more .bg2 {
    border: 0;
    display: block;
    color: #fff;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
     -ms-transition: all 0.2s linear;
     -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.services .more .bg1 {
    font-size: 21px;
    line-height: 1;
    background: #d83d42;
    padding: 0 0 0 16px;
    height: 100px;
    margin-bottom: 10px;
    position: relative;
}

.services .more .bg1 .arr {
    position: absolute;
    top: 50%;
    left: 0;
    background: url(../img/more-arr.png) no-repeat;
    background-size: 100% 100%;
    width: 58px;
    height: 72px;
    margin: -36px 0;
    line-height: 72px;
    font-size: 18px;
    text-align: center;
    padding: 0 5px 0 0;
}

.services .more .bg1 .big {
    display: block;
    font-weight: bold;
    font-size: 72px;
    position: relative;
    top: 8px;
}

.services .more .bg2 {
    background: #1565c0;
    font-size: 15px;
    line-height: 18px;
    padding: 3px 5px 1px 5px;
}

.tabs {
    margin: -3px -15px -2px -15px;
}

.tabs > * {
    padding: 3px 15px 2px 15px;
    display: inline-block;
    vertical-align: top;
}

.tabs > .active {
    cursor: default;
    background-color: #1565c0;
    color: #fff;
}

.tabs > .active > span {
    border-bottom-color: transparent !important;
}

.tabs > .disabled {
    cursor: default;
    color: #807f7f;
}

.tabs > .disabled > span {
    border-bottom-width: 0;
}

.articles {
    padding: 12px 20px 12px 20px;
}

.articles .el:after {
    content: ' ';
    clear: both;
    display: block;
    width: 0;
    height: 0;
    overflow: hidden;
    font-size: 0;
}

.articles .el {
    color: #5b5b5b;
    margin: 0 143px 0 97px;
    padding: 10px 0 8px 0;
    font-size: 15px;
}

.articles .el + .el {
    border-top: 1px solid #e6e6e6;
}

.articles .el .img {
    float: left;
    margin: 3px 0 0 -97px;
    width: 75px;
    height: 75px;
    text-align: center;
    line-height: 73px;
    border: 1px solid #dcdcdc;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    font-size: 0;
}

.articles .el .img img {
    max-width: 90%;
    max-height: 90%;
    width: auto;
    height: auto;
    vertical-align: middle;
}

.articles .el .t {
    margin: 0 0 5px 0;
}

.articles .el .b {
    font-size: 13px;
    margin: 6px 0 0 0;
    color: #5a5a5a;
}

.articles .all {
    text-align: right;
    margin: -3px 0 0 0;
}

.other{
    margin-top: 20px;
    background: #f9f9f9;
    padding: 20px 25px;    
}
.other>span{
    font-size: 16px; 
    font-weight: bold
}
.other .el{
    margin: 8px 0;
}
.other .el a{
    color: #000;
}


.docs ul {
    list-style: none;
    margin: 0;
    padding: 0 20px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
}

.docs ul li {
    margin: 0;
    padding: 0;
}

.docs ul img {
    max-width: 170px;
    max-height: 92px;
    vertical-align: middle;
    width: auto;
    height: auto;
}

.abc {
    font-size: 21px;
    line-height: 25px;
    color: #fff;
    background: #1565c0;
    padding: 17px 42px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    margin: 20px 0 0 0;
}

.docs .abc {
    margin-top: 10px;;
}

.abc a {
    color: inherit;
}

.abc a:hover,
.abc .active {
    color: #d83d42;
}

.callback {
    padding: 20px;
    text-align: center;
}

.callback .big {
    font-weight: bold;
    text-transform: uppercase;
    margin: 2px 0 24px 0;
}

.callback img {
    display: block;
    max-width: 100%;
    max-height: 155px;
    width: auto;
    height: auto;
    margin: 0 auto 19px auto;
}

.callback input,
.callback .btn {
    display: block;
    width: 100%;
}

.callback input[type="text"] {
    font-size: 15px;
    padding: 7px 16px;
    margin: 0 0 10px 0;
}

.path {
    margin: -4px 0 18px 0;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
}

.path a {
    color: inherit;
}

.path .arr {
    background: url(../img/arr-grey.png) no-repeat;
    background-size: 100% 100%;
    width: 4px;
    height: 9px;
    margin: 0 20px;
}

.control-systems {
    padding: 26px 20px 26px 20px;
}

.control-systems .el {
    position: relative;
    margin: 24px 0 0 0;
    padding: 0 0 0 60px;
}

.control-systems .el + .el {
    margin-top: 21px;
}

.control-systems .el .num {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    color: #fff;
    background: #d83d42;
    border-radius: 10px;
    -webkit-border-radius: 10px;
}

.control-systems .el .name {
    font-size: 18px;
    line-height: 24px;
    font-weight: bold;
    margin: -2px 0 10px 0;
}

.certificates {
    padding: 27px 0 0 80px;
    display: flex;
    flex-flow: row wrap;
}

.certificates .el {
    width: 33.33%;
    padding: 0 20px 26px 0;
}

.certificates .name {
    font-weight: bold;
    min-height: 40px;
    margin: 0 0 16px 0;
}

.certificates .img {
    display: block;
    position: relative;
    width: 150px;
    height: 200px;
    margin: 0 0 15px 0;
}

.certificates .img img {
    width: 100%;
    height: auto;
    min-height: 100%;
}

.zoom-cover {
    background: #1565c0;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
     -ms-transition: all 0.2s linear;
     -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    opacity: 0;
}

a:hover .zoom-cover {
    opacity: 0.5;
}

.zoom {
    position: absolute;
    top: 50%;
    left: 50%;
    background: url(../img/icon-zoom-white.png) no-repeat 50% 50%;
    background-size: 100% 100%;
    width: 40px;
    height: 40px;
    margin: -20px;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
     -ms-transition: all 0.2s linear;
     -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    opacity: 0;
}

a:hover .zoom {
    opacity: 1;
}

.link-print {
    position: relative;
    padding-left: 31px;
}

.link-print a:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 31px;
    height: 23px;
    margin: -1px 0;
    background: url(../img/icon-print-blue.png) no-repeat 0 50%;
    background-size: auto 100%;
}

.input {
    position: relative;
}

.input-info {
    position: absolute;
    bottom: 100%;
    left: 50%;
    right: 0;
    z-index: 10;
    font-size: 13px;
    line-height: 18px;
    background: #fff;
    border: 1px solid #e0e0e0;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    -webkit-border-radius: 2px;
    padding: 18px 17px;
    margin: 0 -66px -20px 29px;
}

.input-info .arr {
    position: absolute;
    top: 100%;
    left: 0;
    margin: 0 16px;
    width: 16px;
    height: 16px;
    overflow: hidden;
}

.input-info .arr:before {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: #fff;
    border: 1px solid #e0e0e0;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    left: 50%;
    margin: -6px -6px;
}

.form {
    padding: 26px 20px 37px 20px;
}

.form .info {
    text-align: center;
    font-weight: bold;
    margin: 0 0 20px 0;
}

.form .row {
    display: flex;
    margin: 0 -12px;
}

.form .row + .row {
    margin-top: 14px;
}

.form .row .el {
    flex-grow: 1;
    flex-basis: 33%;
    padding: 0 12px;
}

.form .label {
    margin: 0 0 5px 0;
}

.form .label:first-child {
    margin-top: 0;
}

.form .input {
    position: relative;
}

.form .input input,
.form .input textarea {
    display: block;
    width: 100%;
}

.form .input textarea {
    padding-left: 20px;
    padding-right: 20px;

    height: 230px;
}

.form .input.with-file textarea {
    padding-bottom: 70px;
}

.form .input .file-info, .order-file.file-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 0 1px 0;
    height: 70px;
}

.form .input .file-info .loaded, .order-file.file-info .loaded {
    flex: 1 1 auto;
    position: relative;
    padding-left: 20px;
}

.button__del-cross {
    display: inline-block;
    width: 15px;
    height: 15px;
    position: relative;
    vertical-align: middle;
    margin-left: 10px;
    cursor: pointer;
}

.button__del-cross::before {
    content: '';
    position: absolute;
    width: 15px;
    height: 2px;
    background-color: #d83d42;
    transform: rotate(45deg);
    top: 6px;
}

.button__del-cross::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 2px;
    background-color: #d83d42;
    transform: rotate(-45deg);
    top: 6px;
}

.button__del-cross:hover::before,
.button__del-cross:hover::after {
    background-color: #ef4b50;
}

.form .input .file-info .loaded:before, .order-file.file-info .loaded:before {
    content: '';
    position: absolute;
    top: 4px;
    left: 0;
    background: url(../img/icon-check-green.png) no-repeat;
    width: 13px;
    height: 11px;
    background-size: 100% 100%;
}

.form .input .file, .order-file.file-info .file {
    flex: 0 0 auto;
    margin-left: 20px;

    position: relative;
}

.form .input .file .small, .order-file.file-info .file .small {
    position: absolute;
    top: 100%;
    left: 0;
    white-space: nowrap;
    font-size: 13px;
    margin: -2px 0 0 21px;
}

.form .input .file .link, .order-file.file-info .file .link {
    display: inline-block;
    vertical-align: top;
    position: relative;
    overflow: hidden;
}

.form .input .file .link:before, .order-file.file-info .file .link:before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    background: url(../img/icon-pin-blue.png) no-repeat;
    width: 16px;
    height: 16px;
    background-size: cover;
    margin: 0 5px 0 0;
    position: relative;
    top: -1px
}

.form .input .file .link input, .order-file.file-info .file .link input {
    position: absolute;
    top: -5px;
    right: -5px;
    font-size: 50px;
    margin: 0;
    filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
    opacity: 0;
    width: auto;
    left: auto;
    cursor: pointer;
}

.form .submit {
    margin: 20px 0 0 0;
    justify-content: space-between;
    align-items: center;
    display: flex;
}

.form .submit .go {
    flex: 0 0 250px;
}

.form .submit .text {
    flex-grow: 1;
    flex-basis: 50%;
}

.form .submit .text:last-child {
    text-align: right;
}

.form2,
.prices {
    padding: 0 20px 15px 20px;
    position: relative;
    border: 1px solid #d5dfeb;
    background: #eef5fc;
}

.form2 .info,
.prices .info {
    font-size: 13px;
    text-align: inherit;
    font-weight: inherit;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin: 5px 0 0 0;
}

.form2 .big,
.prices .big {
    text-align: center;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0.01em;
    font-weight: bold;
    border-bottom: 1px solid #d5dfeb;
    padding: 12px 0 10px 0;
    margin-bottom: -2px;
}

.form2 .submit {
    justify-content: center;
}

.form2 .submit .go {
    flex-basis: 220px;
}

.link-filters {
    display: block;
    margin: 0 0 20px 0;
    background: #eef5fc;
    padding: 18px 21px 17px 53px;
    box-shadow: inset 0 0 0 1px #d5dfeb;
    -webkit-box-shadow: inset 0 0 0 1px #d5dfeb;
    position: relative;
}

.link-filters:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 20px;
    width: 20px;
    height: 20px;
    margin: -10px 0;
    background: url(../img/icon-filters-blue.png) no-repeat 50% 50%;
    background-size: cover;
}

.catalog-table table {
    border-collapse: collapse;
    width: 100%;
}

.catalog-table th {
    text-align: left;
    vertical-align: middle;
    font-size: 13px;
    font-weight: inherit !important;
    background: #1565c0;
    color: #fff;
    white-space: nowrap;
    /*padding: 8px 20px 7px 20px;*/
    padding-right: 10px;
}

.catalog-table th a {
    color: inherit;
}

.catalog-table td {
    text-align: left;
    vertical-align: middle;
    border-top: 1px solid #dcdcdc;
    /*padding: 17px 20px 16px 20px;*/
    padding-right: 10px;
    box-sizing: content-box;
}

.catalog-table .num {
    width: 1px;
    padding-left: 0;
    padding-right: 0;
}

.catalog-table .avail {
    width: 115px;
    padding-left: 80px;
}

.catalog-table .price {
    font-weight: bold;
    width: 110px;
}

.catalog-table .for-img, .j-search-table .for-img{
    width: 90px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.catalog-table .img , .j-search-table .img{
    display: block;
    width: 55px;
    height: 45px;
    font-size: 0;
    1border: 1px solid #e1e1e1;
    text-align: center;
    line-height: 43px;
    padding-left: 10px;
}

.j-search-table .img{
    width: 75px;
    height: 60px;
}

.catalog-table a.img:hover {
    1border-color: #d83d42;
}


.catalog-table .img img, .j-search-table .img img{
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    vertical-align: middle;
}

.catalog-table .small {
    font-size: 13px;
}

.pagination {
    display: flex;
}

.pagination > * {
    font-size: 16px;
    color: #8c8c8c;
    box-shadow: inset 0 0 0 1px #e1e1e1;
    -webkit-box-shadow: inset 0 0 0 1px #e1e1e1;
    padding: 0 5px;
    min-width: 35px;
    text-align: center;
    position: relative;
    height: 35px;
    line-height: 35px;
    margin: 0 9px 0 0;
    border-radius: 5px;
    -webkit-border-radius: 5px;
}

.pagination .prev,
.pagination .next {
    width: 145px;
}

.pagination .prev:before,
.pagination .next:before {
    content: '';
    position: absolute;
    top: 50%;
    width: 7px;
    height: 15px;
    background: url(../img/arr-grey.png) no-repeat 50% 50%;
    background-size: cover;
    margin: -7.5px 10px;
}

.pagination .prev {
    padding-left: 18px;
    padding-right: 0;
}

.pagination .prev:before {
    left: 0;
    -moz-transform: scale(-1, 1);
    -webkit-transform: scale(-1, 1);
    -o-transform: scale(-1, 1);
    transform: scale(-1, 1);
}

.pagination .next {
    padding-right: 18px;
    padding-left: 0;
}

.pagination .next:before {
    right: 0;
}

.pagination .dots {
    box-shadow: none;
    -webkit-box-shadow: none;
    font-size: 16px;
}

.pagination .active {
    color: #fff;
    background-color: #1565c0;
}

.catalog-small {
    display: flex;
    flex-flow: row wrap;
}

.catalog-small .el {
    width: 20%;
    position: relative;
    padding: 12px 20px 13px 80px;
    margin: 19px 0;
}

.mainContent .catalog-small .el {
    width: 25%;
}

.catalog-small .el .img {
    float: left;
    margin: -12px 0 -13px -70px;
    width: 65px;
    height: 65px;
    text-align: center;
    font-size: 0;
    line-height: 65px;
    border: 0 !important;
}

.catalog-small .el .img img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    vertical-align: middle;
}

.catalog-small .small {
    font-size: 13px;
}

.results .big {
    font-weight: bold;
    font-size: 18px;
    margin: 0 0 23px 0;
}

.results .check {
    margin: 0 0 16px 0;
}

.table table {
    border-collapse: collapse;
    width: 100%;
    border: 1px solid #e0e0e0;
}

.table th,
.table td {
    text-align: left;
    vertical-align: top;
    padding: 0 20px 0 0;
}

.table th:first-child,
.table td:first-child {
    padding-left: 20px;
}

.table th {
    white-space: nowrap;
    font-weight: inherit;
    color: #a0a0a0;
    background: #f5f5f5;
    border-bottom: 1px solid #e0e0e0;
    padding-top: 12px;
    padding-bottom: 11px;
}

.table td {
    padding-top: 26px;
    padding-bottom: 26px;
    border-top: 1px solid #e0e0e0;
    height: 174px;
}

.table .small {
    font-size: 13px;
    margin: -1px 0 -2px 0;
}

.table .info1,
.table .info2 {
    list-style: none;
    margin: 0;
    margin-top: .3rem;
    padding: 0;
}

.table .info1 li,
.table .info2 li {
    margin: 0;
    padding: 0;
}

.table .info1 li {
    margin-bottom: 5px;
}

.table .info1 li:last-child {
    margin-bottom: 0;
}

.table .info2 li {
    margin-bottom: 4px;
}

.table .for-toggle {
    margin-top: 8px;
}

.table .for-btn {
    width: 2%;
    padding-top: 30px;
    padding-bottom: 30px;
}

.table .w0 {
    width: 1px;
}

.table .w1 {
    width: 15%;
}

.table .w2 {
    /*width: 15.5%;*/
}

.table .w3 {
    width: 16.5%;
}

.table .w4 {
    width: 17.5%;
}

.lc-table {
    margin: -1px;
}

.lc-table th {
    font-size: 13px;
    padding-top: 6px;
    padding-bottom: 7px;
}

.lc-table td {
    height: auto;
    padding-top: 5px;
    padding-bottom: 5px;
}

.lc-table .small {
    margin: 0;
}

.lc-table .w1 {
    width: 12%;
}

.lc-table .w2 {
    width: 17%;
}

.lc-table .w3 {
    width: 35.5%;
}

.categories {
    padding: 0 20px 15px 20px;
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
    -webkit-column-gap: 40px;
    -moz-column-gap: 40px;
    column-gap: 40px;
}

.categories .el {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    margin: 26px 0 16px 0;
    line-height: 18px;
    position: relative;
    padding: 0 0 0 110px;
}

.categories .img {
    position: absolute;
    top: 3px;
    left: 0;
    font-size: 0;
    width: 90px;
    height: 80px;
    line-height: 78px;
    border: 1px solid #ebebeb;
    text-align: center;
}

.categories .img img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    vertical-align: middle;
}

.categories .big {
    font-weight: bold;
    font-size: 18px;
    line-height: 24px;
    margin: 0 0 14px 0;
}

.categories .big a {
    color: inherit;
}

.categories .big .up-num {
    font-size: 12px;
    margin-right: -50px;
}

.categories ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.categories ul li {
    margin: 0;
    padding: 0;
}

.categories ul li + li {
    margin-top: 7px;
}

.categories .link-more {
    font-size: 13px;
    margin: 12px 0 0 0;
}

.categories .link-more a:after {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 12px;
    height: 8px;
    margin: 0 0 0 8px;
    position: relative;
    top: -1px;
    background: url(../img/arr2-grey.png) no-repeat 50% 50%;
    background-size: cover;
}

.contacts {
    padding: 30px 20px;
    display: flex;
}

.contacts .text {
    flex: 0 0 360px;
    padding-right: 30px;
}

.contacts .map {
    flex-grow: 1;
}

.contacts .el {
    position: relative;
    padding: 0 0 0 60px;
    margin: 0 0 -4px 0;
}

.contacts .el + .el {
    margin-top: 26px;
}

.contacts .pic {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    background: #d83d42;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    text-align: center;
}

.contacts .pic img {
    vertical-align: top;
    height: 100%;
    width: auto;
}

.contacts .el ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.contacts .el ul + ul {
    margin-top: 14px;
}

.contacts .el li {
    margin: 0;
    padding: 0;
}

.contacts .el li + li {
    margin-top: 4px;
}

.contacts .el .big {
    font-weight: bold;
    margin: 0 0 10px 0;
    padding: 1px 0 0 0;
}

.contacts .rind {
    margin-right: 3px;
}

.item-head {
    padding: 20px 20px 40px 20px;
    display: flex;
}

.item-head .l {
    flex-grow: 1;
    position: relative;
}

.item-head .r {
    flex: 0 0 360px;
}

.item-head .img {
    text-align: center;
}

.item-head .img img {
    max-width: 100%;
    width: auto;
    height: auto;
}

.item-head .price {
    position: absolute;
    white-space: nowrap;
    color: #fff;
    background: #1565c0;
    padding: 11px 30px 17px 30px;
    bottom: 0;
    left: 0;
    margin: 0 0 0 20px;
}

.item-head .price a {
    color: inherit;
}

.item-head .price .big {
    font-weight: bold;
    line-height: 24px;
    margin: 2px 0 3px 0;
}

.item-head .price strong {
    font-size: 24px;
}

.contact-info {
    background: #eef5fc;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    padding: 15px 40px;
    letter-spacing: normal;
}

.contact-info .big {
    font-size: 18px;
    font-weight: bold;
    margin-left: 7px;
    letter-spacing: 0.05em;
}

.article {
    padding: 20px 190px 42px 40px;
}

.usage {
    list-style: none;
    margin: 13px -20px 36px 0;
    padding: 0;
    display: flex;
    flex-wrap: nowrap;
}

.usage li {
    margin: 0;
    padding: 0 20px 0 85px;
    width: 280px;
    position: relative;
}

.usage .cell {
    height: 75px;
}

.usage .img {
    position: absolute;
    top: 0;
    left: 0;
    width: 75px;
    height: 75px;
    border: 0 !important;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    background: #d83d42;
    text-align: center;
}

.usage .img img {
    height: 100%;
    width: auto;
    vertical-align: top;
}

.checklist {
    list-style: none;
    margin: 0;
    padding: 0;
}

.checklist li {
    position: relative;
    margin: 0;
    padding: 0 0 0 24px;
}

.checklist li + li {
    margin-top: 11px;
}

.checklist li:before {
    content: '';
    position: absolute;
    top: 5px;
    left: 0;
    background: url(../img/icon-check-blue.png) no-repeat 50% 50%;
    width: 13px;
    height: 10px;
    background-size: cover;
}

.maintable {
    max-width: 436px;
}

.maintable table {
    width: 100%;
    border-collapse: collapse;
}

.maintable th,
.maintable td {
    text-align: left;
    vertical-align: top;
    padding: 8px 10px 7px 10px;
}

.maintable tr:nth-child(odd) th,
.maintable tr:nth-child(odd) td {
    background: #eef5fc;
}

.files {
    list-style: none;
    margin: 0 -20px 37px 0;
    padding: 0;
}

.files:last-child {
    margin-bottom: 0;
}

.files li {
    position: relative;
    padding: 0 0 0 35px;
}

.files li + li {
    margin-top: 20px;
}

.files .small {
    font-size: 13px;
    line-height: 18px;
    margin: 1px 0 0 0;
}

.files img {
    position: absolute;
    height: 30px;
    width: auto;
    top: 5px;
    left: 0;
}

.files.tech li {
    padding-left: 45px;
}

.files.tech li .img {
    position: absolute;
    top: 2px;
    left: 0;
    width: 35px;
    height: 35px;
    text-align: center;
    font-size: 0;
    line-height: 35px;
    border-radius: 7px;
    -webkit-border-radius: 7px;
    background: #d83d42;
}

.files.tech li .img img {
    position: static;
    height: 18px;
    width: auto;
    top: auto;
    left: auto;
    vertical-align: middle;
}

.files.tech .small {
    margin-top: 6px;
}

.share {
    padding: 30px 40px;
}

.gallery {
    position: relative;
    width: calc(100% - 260px);
    margin: 0 60px 0 0;
    float: left;
}

.gallery .big .el {
    height: 330px;
    font-size: 0;
    line-height: 330px;
    text-align: center;
}

.gallery .big .el img,
.gallery .small .el img {
    display: inline-block;
    vertical-align: middle;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}

.gallery .small {
    margin: 5px 10px -5px 10px;
    position: relative;
}

.gallery .small .el {
    margin: 5px 10px;
    cursor: pointer;
    border: 1px solid #e0e0e0;
    height: 65px;
    line-height: 63px;
    text-align: center;
    font-size: 0;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
     -ms-transition: all 0.2s linear;
     -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    outline: none;
}

.gallery .small .el.slick-current {
    border-color: #000;
    cursor: inherit;
}

.item .sides:after {
    content: ' ';
    clear: both;
    display: block;
    width: 0;
    height: 0;
    overflow: hidden;
    font-size: 0;
}

.item .sides {
    padding: 20px 20px 40px 20px;
}

.item .sides .l {
    width: calc(100% - 380px);
    float: left;
}

.item .sides .r {
    float: right;
    width: 360px;
}

.item .head:after {
    content: ' ';
    clear: both;
    display: block;
    width: 0;
    height: 0;
    overflow: hidden;
    font-size: 0;
}

.item .head .text {
    overflow: hidden;
    padding: 16px 20px 0 0;
    width: 200px;
}

.item .head .text .t {
    margin: 20px 0 2px 0;
}

.item .head .text .t:first-child {
    margin-top: 0;
}

.item .avail {
    position: relative;
    padding: 0 0 0 20px;
}

.item .avail img {
    position: absolute;
    top: 4px;
    left: 0;
    height: 11px;
    width: auto;
}

.item .maintable {
    max-width: 590px;
}

.prices .big {
    text-align: left;
    margin-bottom: 20px;
}

.prices ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.prices li {
    margin: 0;
    padding: 5px 0 4px 0;
    border-top: 1px dotted #c7d2dd;
    display: flex;
    justify-content: space-between;
}

.prices li:first-child {
    border-top-width: 0;
}

.prices .hr {
    margin: 18px -20px 12px -20px;
    background-color: #c7d2dd;
}

.prices .num {
    display: flex;
    margin: 16px 0 0 0;
}

.prices .num .go {
    flex-grow: 1;
}

.prices .num .input {
/*    flex: 0 0 80px;
    margin-right: 34px;*/
/*        flex: 0 0 80px;*/
    margin-right: 11px;
}

.prices .num .input input {
    text-align: center;
    display: block;
    width: 100%;
}

.modal:not(.success-modal) {
    position: absolute;
    left: -10000px;
    width: 1140px;
    background: #fff;
    box-shadow: 0 5px 14px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 5px 14px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

@media (max-width: 1024px) {
    .modal:not(.success-modal) {
        width: 900px;
    }
}

.modal.success-modal {
    position: absolute;
    width: calc(100% - 60px);
    max-width: 750px !important;
    background: #fff;
    box-shadow: 0 5px 14px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 5px 14px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.modal-head {
    position: relative;
    border-bottom: 1px solid #d5dfeb;
    background: #eef5fc;
    min-height: 55px;
    padding-top: 18px;
    padding-bottom: 17px;
    padding-right: 55px;
    text-align: center;
    font-weight: bold;
    font-size: 21px;
    line-height: 31px;
    padding: 11px 20px;
    text-transform: uppercase;
    justify-content: center;
}

.modal-head .close {
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
    width: 55px;
    height: 55px;
    background: url(../img/icon-cross-blue.png) no-repeat 50% 50%;
    background-size: auto 16px;
}

.modal.close-out .modal-head .close {
    background-image: url(../img/icon-cross-white.png);
    width: 32px;
    height: 32px;
    margin: -8px 0;
    top: auto;
    right: auto;
    bottom: 100%;
    left: 100%;
}

.filters .c {
    padding: 20px 10px;
    display: flex;
    flex-flow: row wrap;
    font-size: 16px;
}

.filters .c .filter {
    padding: 10px;
    width: 20%;
    white-space: nowrap;
}

.filters .c .big {
    font-weight: bold;
    font-size: 16px;
    line-height: 18px;
    min-height: 36px;
    margin: -3px 0 11px 0;
}

.filters .b {
    display: flex;
    padding: 20px 10px;
    border-top: 1px solid #dcdcdc;
    justify-content: space-between;
    align-items: center;
}

.filters .b .el {
    margin: 10px;
}

.filters .b .btns {
    display: flex;
}

.filters .b .btns .btn {
    width: 215px;
}

.filters .b .btns .btn + .btn {
    margin-left: 20px;
}

.filters .check {
    padding-left: 30px;
}

.filters .checkbox {
    width: 20px;
    height: 20px;
    top: 0;
}

.filters .checkbox:before {
    background-size: auto 9px;
}

.filter-full_width-list .jcf-scrollbar-horizontal {
    display: none;
}

.jcf-list-box {
    display: block;
    height: 216px;
    border: 1px solid #dcdcdc;
    background: #fff;
    padding: 2px 3px;
    font-size: 13px;
    line-height: 18px;
}


.jcf-scrollable-wrapper {
    width: 100% !important;
}

.jcf-list-box .jcf-list-content {
    display: block;
    overflow: hidden;
    position: relative;
}

.jcf-list-box ul {
    list-style: none;
    margin: 0;
    padding: 3px 2px;
}

.jcf-list-box ul li {
    margin: 1px 0 0 0;
    padding: 0;
    position: relative;
    width: 100%;
}

.jcf-list-box ul li:before {
    display: none;
}

.jcf-list-box ul li:first-child {
    margin-top: 0;
}

.jcf-list-box .jcf-option {
    display: inline-block;
    box-sizing: border-box;
    width: 100%;
    overflow: hidden;
    white-space:nowrap;
    text-overflow: ellipsis;
    position: relative;
    padding: 3px 25px 3px 23px;
    cursor: pointer;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    border-radius: 2px;
    -webkit-border-radius: 2px;
}

.jcf-list-box .jcf-option:hover {
    background-color: #eef5fc;
}

.jcf-list-box .jcf-option.jcf-selected {
    background-color: #1565c0;
    color: #fff;
}

.jcf-list-box .jcf-option.jcf-disabled {
    cursor: default;
    background-color: transparent;
    color: #c3c3c3;
}

.jcf-list-box .jcf-option:before,
.jcf-list-box .jcf-option:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    margin: 5px 3px;
    box-sizing: border-box;
    width: 14px;
    height: 14px;
    border: 1px solid #dcdcdc;
    background: #fff;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.jcf-list-box .jcf-option:after {
    opacity: 0;
    background: url(../img/checkbox.png) no-repeat 50% 50%;
    background-size: auto 7px;
}

.jcf-list-box .jcf-option.jcf-selected:before {
    border-color: #1565c0;
}

.jcf-list-box .jcf-option.jcf-selected:after {
    opacity: 1;
}

.about {
    padding: 26px 20px 45px 20px;
}

.about .el {
    position: relative;
    margin: 32px 0 18px 0;
    padding: 0 0 0 60px;
}

.about .el + .el {
    margin-top: 22px;
}

.about .el .img {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    text-align: center;
    border: 0 !important;
    background: #d83d42;
    border-radius: 9px;
    -webkit-border-radius: 9px;
}

.about .el .img img {
    vertical-align: top;
    height: 100%;
    width: auto;
}

.about .big {
    font-weight: bold;
    font-size: 18px;
    line-height: 24px;
    padding-left: 60px;
}

.about .el .big {
    margin: 0 0 10px 0;
    padding-left: 0;
}

.brand {
    padding: 28px 20px;
    display: flex;
}

.brand p + p {
    margin-top: 23px;
}

.brand .photo {
    width: 168px;
    margin: 0 95px 0 0;
    flex: 0 0 auto;
    padding: 2px 0;
    text-align: center;
}

.brand .photo img {
    max-width: 100%;
    max-height: 92px;
    width: auto;
    height: auto;
}

.brand .text {
    flex: 1 1 auto;
}

.brands-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -75px;
    padding: 9px 0 11px 0;
}

.brands-list .el {
    width: 50%;
    position: relative;
    padding: 0 75px 0 172px;
    margin: 6px 0 7px 0;
}

.brands-list .el .cell {
    height: 44px;
}

.brands-list .el .photo {
    position: absolute;
    top: 0;
    left: 0;
    height: 44px;
    font-size: 0;
    margin: 0 85px;
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
}

.brands-list .el .photo img {
    max-width: 80px;
    max-height: 44px;
    width: auto;
    height: auto;
}

.modal-form {
    width: 510px !important;
}

.modal-form .ind {
    padding: 35px 50px;
}

.modal-form .input {
    margin: 0 0 20px 0;
}

.modal-form .input input {
    display: block;
    width: 100%;
}

.modal-form .btn {
    margin: 30px 0 0 0;
}

.modal-form .links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 25px 0 14px 0;
}

.modal-form .ttext {
    font-size: 15px;
    line-height: 21px;
    margin: -3px 0 33px 0;
}

.modal-form .auth_buttons{
    text-align: center;
}
    .modal-form .auth_buttons .item{
        display: inline-block;
        width: 50px;
        height: 50px;
        vertical-align: top;
        text-align: center;
    }
        .modal-form .auth_buttons .item img{
            padding: 10px 0;
        }

.hold-sms-code {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.hold-sms-code .input, .hold-sms-code .btn {
    margin: 0;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

.hold-sms-code .input {
    width: calc(43.21% - 23px);
    margin-right: auto;
}

.hold-sms-code .btn {
    padding-left: 0;
    padding-right: 0;
    width: 56.79%;
}

.modal-form .btext {
    font-size: 13px;
    line-height: 18px;
    margin: 12px 0 -5px 0;
}

.links-list {
    list-style: none;
    margin: 0;
}

.links-list li {
    position: relative;
    margin: 0;
    padding: 0 0 0 20px;
}

.links-list li + li {
    margin-top: 10px;
}

.links-list li:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    margin: 5px 0;
    border: 2px solid #1565c0;
    border-radius: 50%;
    -webkit-border-radius: 50%;
}

.links-list2 {
    list-style: none;
    margin: 0;
    padding: 0;
}

.links-list2 li {
    margin: 0;
    padding: 0;
}

.links-list2 li + li {
    margin-top: 4px;
}

.menu2 {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    font-size: 14px;
    line-height: 20px;
    font-weight: bold;
    text-transform: uppercase;
}

.menu2 li {
    flex: 1 1 25%;
    margin: 0;
    padding: 0;
    position: relative;
}

.menu2 .lnk {
    display: block;
    border: 1px solid #1565c0;
    white-space: nowrap;
    text-align: center;
    padding: 14px 10px;
    color: #1565c0;
    margin: 0 0 0 -1px;
    background: #fff;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
     -ms-transition: all 0.2s linear;
     -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.menu2 li:first-child .lnk {
    margin-left: 0;
    border-radius: 3px 0 0 3px;
    -webkit-border-radius: 3px 0 0 3px;
}

.menu2 li:last-child .lnk {
    border-radius: 0 3px 3px 0;
    -webkit-border-radius: 0 3px 3px 0;
}

.menu2 .lnk .up-num {
    color: #8c8c8c;
    left: 2px;
    top: -6px;
    height: 16px;
    line-height: 16px;
    min-width: 16px;
    text-align: center;
    padding: 0 5px 0 3px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
     -ms-transition: all 0.2s linear;
     -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.menu2 .lnk .up-num.new {
    color: #fff;
    background: #1565c0;
}

.menu2 .lnk.active,
.menu2 .has-sub:hover > .lnk {
    color: #fff;
    background-color: #1565c0;
}

.menu2 .has-sub:hover > .lnk > span {
    border-bottom-color: #fff !important;
}

.menu2 .lnk.active .up-num,
.menu2 .has-sub:hover .up-num {
    color: #fff;
}

.menu2 .sub {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 100;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
     -ms-transition: all 0.2s linear;
     -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    opacity: 0;
    height: 0;
    overflow: hidden;
}

.menu2 li:hover > .sub {
    opacity: 1;
    height: auto;
    overflow: visible;
}

.menu2 .sub ul {
    list-style: none;
    margin: 16px 0 0 0;
    padding: 7px 20px;
    border: 1px solid #1565c0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.17);
    -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.17);
    border-radius: 0 2px 2px 2px;
    -webkit-border-radius: 0 2px 2px 2px;
    background: #fff;
    position: relative;
}

.menu2 .sub ul:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 100%;
    margin: -2px -1px;
    background: url(../img/pop-arr.png) no-repeat;
    background-size: 100% 100%;
    width: 16px;
    height: 14px;
}

.menu2 .sub li {
    margin: 0;
    padding: 0;
}

.menu2 .sub li + li {
    border-top: 1px solid #d0e0f2;
}

.menu2 .sub li > * {
    display: block;
    padding: 7px 0;
}

.filters2 {
    position: relative;
}

.filters2 .toggle-hold {
    position: absolute;
    top: 48px;
    right: 0;
    font-size: 13px;
    white-space: nowrap;
}

.filters2 .toggle-hold .opt-link:after {
    content: '';
    display: inline-block;
    vertical-align: middle;
    margin: 0 0 0 5px;
    border-style: solid;
    border-width: 5px 5px 0 5px;
    border-left-color: transparent !important;
    border-right-color: transparent !important;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
     -ms-transition: all 0.2s linear;
     -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.filters2.open .toggle-hold .opt-link:after {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
}

.filters2 .row {
    margin: 0 -25px;
}

.filters2 .row:after {
    content: ' ';
    clear: both;
    display: block;
    width: 0;
    height: 0;
    overflow: hidden;
    font-size: 0;
}

.filters2 .row .el {
    padding: 16px 25px 19px 25px;
    min-width: 250px;
    white-space: nowrap;
    float: left;
}

.filters2 .row .el.r {
    float: right;
}

.filters2 .input {
    display: inline-block;
    vertical-align: middle;
    width: 100%;
}

.filters2 .input.w1 {
    width: 120px;
}

.filters2 .input input,
.requests .input input {
    width: 100%;
    display: block;
}

.filters2 .input input,
.filters2 .input .jcf-select-text,
.requests .input input {
    padding-top: 6px;
    padding-bottom: 7px;
}

.filters2 .input.bg-search {
    width: 265px;
}

.filters2 .input.bg-search:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 35px;
    background: url(../img/icon-search-dark.png) no-repeat 50% 50%;
    background-size: auto 19px;
}

.filters2 .input.bg-search input {
    padding-right: 34px;
}

.filters2 .label {
    font-weight: bold;
    font-size: 13px;
    margin: 0 0 4px 0;
}

.filters2 .txt {
    vertical-align: middle;
    margin: 0 4px;
}

.filters2 .txt:first-child,
.filters2 .label + .txt {
    margin-left: 0;
}

.filters2 .submit {
    display: flex;
    border-top: 1px solid #ebebeb;
    padding: 20px 0;
    justify-content: flex-end;
    align-items: center;
}

.filters2 .submit .reset {
    color: #807f7f;
    margin: 0 0 0 21px;
    position: relative;
    overflow: hidden;
}

.filters2 .submit .reset input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    margin: 0;
    cursor: pointer;
}

.filters2 .submit .reset:after {
    content: '';
    display: inline-block;
    margin: 0 0 0 5px;
    vertical-align: middle;
    width: 10px;
    height: 10px;
    position: relative;
    background: url(../img/icon-cross-grey.png) no-repeat;
    background-size: 100% 100%;
    top: -1px;
}

.filters2 .submit .btn {
    margin: 0 0 0 21px;
    flex-basis: 200px;
    height: 35px;
    line-height: 35px;
    font-weight: normal;
    font-size: 15px;
}

.inline-info {
    display: inline;
    padding: 1px 5px;
    white-space: nowrap;
    color: #fff;
    position: relative;
}

.inline-info.bg-green {
    background-color: #50b44e;
}

.inline-info.bg-grey {
    background-color: #909090;
}

.inline-info.bg-red {
    background-color: #d83d42;
}

.inline-info.bg-yellow {
    background-color: #e9bc43;
    color: #000;
}

.inline-info.bg-blue {
    background-color: #5aa3e2;
}

.order .block-head .h1 {
    font-size: 18px;
    letter-spacing: 0.01em;
    text-transform: none;
}

.order .block-head .inline-info {
    letter-spacing: normal;
    font-weight: normal;
    font-size: 13px;
    margin-left: 5px;
    top: -2px;
}

.order .tabs {
    margin: 0 0 10px 0;
    padding: 20px 0 0 20px;
}

.order .tabs > * {
    padding-left: 20px;
    padding-right: 20px;
}

.order .tabs > .active {
    padding-left: 35px;
    padding-right: 35px;
}

.order .maintable {
    max-width: none;
}

.order .maintable th {
    background: none;
    border-top: 1px solid #dcdcdc;
    border-bottom: 1px solid #dcdcdc;
}

.order .maintable tr:nth-child(odd) th,
.order .maintable tr:nth-child(odd) td {
    background: none;
}

.order .maintable .w1 {
    width: 10%;
}

.order .maintable .w2 {
    width: 10%;
}

.order .table .vind + .vind {
    margin-top: 3px;
}

.order .table {
    margin: 0 -1px -1px -1px;
}

.order .table td {
    padding-top: 15px;
    padding-bottom: 15px;
}

.order .table .w1 {
    width: 17%;
}

.order .table .w2 {
    width: 18%;
}

.order .table .w3 {
    width: 8%;
}

.order .table .w4 {
    width: 9%;
}

.order .table .w5 {
    width: 23%;
}

.order .table .w6 {
    width: 10%;
}

.order .table .w7 {
    width: 15%;
}

.requests .table {
    margin: -1px;
}

.requests .table td {
    padding-top: 15px;
    padding-bottom: 15px;
}

.requests .table .table th {
    padding-top: 4px;
    padding-bottom: 4px;
}

.requests .table .w1 {
    width: 8%;
}

.requests .table .w2 {
    width: 25%;
}

.requests .table .w3 {
    width: 24%;
}

.requests .table .checkbox {
    vertical-align: middle;
    top: -1px;
}

.requests .table .btn {
    font-size: 13px;
    width: 90px;
    height: 30px;
    line-height: 30px;
    padding: 0;
    font-weight: normal;
    margin: -15px 0;
    display: inline-block;
    vertical-align: middle;
}

.requests .table .hold > td {
    padding: 0;
    border: 0;
}

.requests .table .table {
    overflow: hidden;
}

.requests .table .table td {
    border-width: 0;
    padding-top: 15px;
    padding-bottom: 15px;
}

.requests .table .table tr:last-child td {
    padding-bottom: 25px;
}

.requests .table .toggle {
    background: #3c3c3c;
}

.requests .table .toggle:hover,
.requests .table .toggle.active {
    background: #787878;
}

.requests .table .toggle:after {
    content: '';
    display: inline-block;
    vertical-align: middle;
    margin: 0 0 0 10px;
    border-style: solid;
    border-width: 5px 5px 0 5px;
    border-left-color: transparent !important;
    border-right-color: transparent !important;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
     -ms-transition: all 0.2s linear;
     -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.requests .table .toggle.active:after {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
}

.requests .table .answer td {
    padding-top: 1px;
    padding-bottom: 3px;
}

.requests .label {
    font-weight: bold;
    margin: 0 0 5px 0;
}

.requests .actions {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.requests .actions .btn {
    min-width: 170px;
    font-size: 15px;
    font-weight: normal;
    height: 40px;
    line-height: 40px;
}

.requests .actions .delete:before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    background: url(../img/icon-delete-grey.png) no-repeat;
    background-size: 100% 100%;
    width: 11px;
    height: 15px;
    margin: 0 13px 0 0;
    position: relative;
    top: -1px;
}

.requests .pagination {
    margin: 0;
    padding: 0 20px 20px 20px;
}

.mainblock .form-new {
    padding: 28px 28px 40px 28px;
}

.form-new .title1 {
    font-size: 18px;
    margin: 30px 0 18px 0;
}

.form-new .title1:last-child {
    margin-bottom: 0;
}

.form-new .title1:first-child {
    margin-top: 0;
}

.form-new .checks {
    list-style: none;
    margin: 2px -20px -13px -20px;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.form-new .form-profile__radiogroup, .form-new .form-order__radiogroup {
    margin-right: 0;
    margin-left: 0;
}

.form-new .checks li {
    list-style: none;
    margin: 5px 20px;
    padding: 0 0 0 26px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    position: relative;
}

.form-new .form-profile__radiogroup li, .form-new .form-order__radiogroup li {
    margin-right: 0;
    margin-left: 0;
}

.form-new .form-profile__radiogroup li:first-child, .form-new .form-order__radiogroup li:first-child {
    margin-right: 20px;
}

@media (min-width: 768px) {
    .form-new .form-profile__radiogroup li:first-child, .form-new .form-order__radiogroup li:first-child {
        margin-right: 40px;
    }
}


.form-new .checks label {
    cursor: pointer;
}

.form-new .checks .radio {
    position: absolute;
    top: 10px;
    left: 0;
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
}

.form-new .grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: -13px -11px -14px -10px;
    max-width: calc(100% + 21px) !important;
}

.form-new .grid + .grid {
    margin-top: 13px;
}

.form-new .grid .el {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding: 13px 11px 14px 10px;
    width: 33.333%;
}

.order-grid .form-new .grid {
    /*margin-top: -10px;
    margin-bottom: -10px;*/
}

.order-grid .form-new .grid .el {
    padding-top: 10px;
    padding-bottom: 10px;
}

.form-new .grid .el.full {
    width: 100%;
}

.form-new .grid .el.wid50 {
    width: 50%;
}

.form-new .grid .el.wid16 {
    width: 16.666%;
}

.form-new .grid .el.wid66 {
    width: 66.666%;
}

.form-new .grid .el.wid75 {
    width: 75%;
}

.form-new .grid .el.wid25 {
    width: 25%;
}

.form-new .grid.show-company, .form-new .grid.show-private {
    display: none;
}

.check-private:checked ~ * .form-new .grid.show-private, .check-company:checked ~ * .form-new .grid.show-company {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.form-new-submit {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.form-new-submit .btn {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    max-width: 100%;
    min-width: 205px;
}

.form-new .text-checks {
    padding-bottom: 30px;
}

.form-new .text-checks .el {
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.form-new .text-checks .el > * {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.form-new .text-checks label {
    cursor: pointer;
}

.form-new .text-checks .bg {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    -webkit-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
    line-height: 21px;
    border-radius: 3px;
    border: 1px solid #c8c8c8;
    padding: 26px 20px 20px 50px;
    position: relative;
    display: block;
}

.form-new .text-checks .bg:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #1860d6 url(../img/check-white.svg) no-repeat 50% 50%;
    background-size: 14px auto;
    margin: 31px 14px;
    opacity: 0;
    -webkit-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.form-new .text-checks .big {
    font-weight: bold;
    font-size: 18px;
    line-height: 24px;
    margin: 0 0 10px 0;
    display: block;
}

.form-new .text-checks input:checked + .bg {
    border-color: #1860d6;
    background-color: #EEF5FC;	
}

.form-new .text-checks input:checked + .bg:before {
    opacity: 1;
}

.profile-tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 37px -33px 27px -33px;
    font-weight: bold;
    font-size: 18px;
    text-transform: uppercase;
}

.profile-tabs > * {
    margin: 10px 33px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

.profile-tabs .active {
    cursor: default;
    color: inherit !important;
}

.profile-tabs .active > span {
    border-bottom-width: 0 !important;
}

.orders table {
    border-collapse: collapse;
    width: 100%;
}

.orders th, .orders td {
    text-align: left;
    vertical-align: top;
    padding: 17px 10px;
}

.orders th:first-child, .orders td:first-child {
    padding-left: 29px;
}

.orders th:last-child, .orders td:last-child {
    padding-right: 29px;
}

.orders tr:nth-child(odd) td {
    background-color: #eef5fc;
}

.orders th {
    font-weight: bold;
    font-size: 18px;
    padding-top: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e0e0e0;
}

.orders .small, .orders ul {
    font-size: 13px;
    line-height: 15px;
}

.orders ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.orders li {
    list-style: none;
    margin: 12px 0 0 0;
    padding: 0;
}

.orders li:first-child {
    margin-top: 0 !important;
}

.orders .name {
    padding: 2px 0 3px 0;
    font-weight: bold;
    margin: 0 0 3px 0;
}

.orders .rind {
    margin-right: 3px;
}

.orders__text--empty {
    font-weight: bold;
    font-size: 18px;
    padding-top: 16px;
    padding-bottom: 16px;
    padding-right: 29px;
    padding-left: 29px;
}

.orders__link--empty {
    text-decoration: underline;
}

.order-tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.order-tabs .tab {
    color: inherit;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 20px 28px;
    border-width: 1px;
    border-style: solid;
    border-color: transparent;
    background: #f5f5f5;
    -webkit-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
    -webkit-box-flex: 1;
    -ms-flex: 1 1 1%;
    flex: 1 1 1%;
    line-height: 21px;
}

.order-tabs .tab:first-child {
    border-left-width: 0;
}

.order-tabs .tab:last-child {
    border-right-width: 0;
}

.order-tabs .tab > * {
    max-width: 100%;
}

.order-tabs .tab.active {
    cursor: default;
    border-color: #e0e0e0;
    border-bottom-color: transparent;
    background-color: transparent;
}

.order-tabs .tab .big {
    font-weight: bold;
    font-size: 18px;
    line-height: 24px;
    margin: 0 0 4px 0;
}

.order-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.order-side-l {
    margin-right: auto;
    width: calc(100% - 380px);
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

.order-side-r {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    margin-left: auto;
    width: 354px;
}

.order-grid .mainblock + .form-new {
    padding-top: 16px;
}

.order-grid textarea {
    height: 100px;
}

.order-min .ind {
    padding: 20px;
}

.order-min .ind.bg {
    background: #eef5fc;
}

.order-min .title1 {
    font-weight: bold;
    font-size: 18px;
    line-height: 24px;
    margin: -2px 0 13px 0;
}

.order-min .items-list {
    margin: 0 0 -10px 0;
}

.order-min .cart-item-mini {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-top: 1px solid #e0e0e0;
    padding: 15px 0;
    font-size: 12px;
    line-height: 18px;
}

.order-min .cart-item-mini:first-child {
    border-top-width: 0;
}

.order-min .cart-item-mini .photo {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 0px solid #e6e6e6;
    width: 47px;
    height: 40px;
    margin: 1px auto 0 0;
}

.order-min .cart-item-mini .photo img {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}

.order-min .cart-item-mini .text {
    margin-left: auto;
    width: calc(100% - 57px);
}

.order-min .cart-item-mini .name {
    font-weight: bold;
    font-size: 15px;
    line-height: 20px;
}

.order-min .cart-item-mini .price {
    font-size: 13px;
    line-height: 18px;
    margin: 10px 0 0 0;
}

.order-min .cart-item-mini .price .rind {
    margin-right: 3px;
}

.order-min .cart-item-mini .price strong {
    font-size: 15px;
}

.order-min .total {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 13px;
    line-height: 18px;
}

.order-min .total li {
    list-style: none;
    margin: 14px 0 0 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.order-min .total li:first-child {
    margin-top: 0;
}

.order-min .total .big {
    font-weight: bold;
    font-size: 15px;
}

.order-min .total li.big {
    font-weight: bold;
    line-height: 21px;
    font-size: 18px;
    margin-top: 40px;
}

.order-min .total li.big .big {
    font-size: 21px;
}

.order-min .btn {
    display: block;
    width: 100%;
    margin: 18px 0 0 0;
    height: 60px;
    line-height: 60px;
    font-size: 18px;
}

.order-min .check {
    margin: 18px 0 9px 0;
    font-size: 13px;
    line-height: 18px;
    padding-left: 29px;
}

.order-min .check .checkbox {
    background-color: #fff;
}

.radio {
    display: inline-block;
    vertical-align: middle;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    position: relative;
    border: 2px solid #a0a0a0;
    -webkit-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.radio:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    border-radius: 50%;
    margin: 3px;
    background: #1565c0;
    -webkit-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
    -webkit-transform: scale(0);
    transform: scale(0);
}

input:checked + .radio, .check-private:checked ~ * .checks .radio.check-private, .check-company:checked ~ * .checks .radio.check-company {
    border-color: #1565c0;
}

input:checked + .radio:before, .check-private:checked ~ * .checks .radio.check-private:before, .check-company:checked ~ * .checks .radio.check-company:before {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.input-label {
    margin: 0 0 5px 0;
}

.input {
    position: relative;
}

.input input, .input textarea {
    width: 100%;
    vertical-align: top;
}

@media(min-width: 768px) {
    .input--phone {
        display: flex;
    }
}

.button--check-phone {
    color: #ffffff;
    font-weight: 700;
    top: 0;
    right: 0;
    bottom: 0;
    cursor: pointer;
    min-width: 160px;
    border: none;
    border-top-right-radius: 2px;
    border-top-left-radius: 0;
    border-bottom-right-radius: 2px;
    border-bottom-left-radius: 0;
    background-color: #1860D6;
    width: 100%;
}

@media(min-width: 768px) {
    .button--check-phone {
        width: auto;
    }
}

.hidden {
    display: none !important;
}

.cart-items table {
    border-collapse: collapse;
    width: 100%;
}

.cart-items td {
    text-align: left;
    vertical-align: middle;
    padding: 19px 10px;
border-bottom: #E0E0E0 1px solid;
}

.cart-items td:first-child {
    padding-left: 20px;
}

.cart-items td:last-child {
    padding-right: 20px;
}

.cart-items .cell-photo {
    padding-right: 40px;
    width: 1px;
}

.cart-items .photo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 0px solid #e6e6e6;
    width: 90px;
    height: 77px;
}

.cart-items .photo img {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}

.cart-items .name {
    font-weight: bold;
    font-size: 18px;
}

.cart-items .name, .cart-items .title-small {
    margin: 0 0 4px 0;
}

.cart-items .input {
    width: 140px;
    /*margin: 0 auto;*/
    margin: 0 0;
}
.cart-items__min-quantity-text{
    display: none;
}

.cart-items .input input {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.cart-items .price {
    white-space: nowrap;
    font-weight: bold;
    font-size: 18px;
}

.cart-items .cell-actions {
    width: 1px;
}

.cart-items .delete {
    display: block;
    text-align: left;
    text-indent: -100000px;
    background: #d2d2d2 url(../img/cross-white.svg) no-repeat 50% 50%;
    background-size: auto 10px;
    width: 20px;
    height: 20px;
    border-radius: 5px;
    -webkit-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.cart-items .delete:hover {
    background-color: #d83d42;
}

.cart-items__delivery--free {
    font-weight: bold;
    font-size: 18px;
    padding-top: 16px;
    padding-bottom: 16px;
    padding-right: 29px;
    padding-left: 29px;
}

.cart-details, .cart-total {
    padding: 15px 9px 15px 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.cart-details {
    line-height: 24px;
}

.cart-details .el, .cart-total > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding: 10px 10px 14px 10px;
    width: 25%;
}

.cart-details .title1 {
    font-weight: bold;
    font-size: 18px;
}

.cart-details .price {
    font-weight: bold;
    font-size: 18px;
    margin: 13px 0 0 0;
}

.cart-details .input {
    margin-top: 9px;
}

.cart-details .input .go {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 42px;
    border: 0;
    background: url(../img/arr-go-blue.svg) no-repeat 50% 50%;
    background-size: 18px auto;
    cursor: pointer;
    margin: 0;
    padding: 0;
}

.cart-details .subinput {
    margin-bottom: -24px;
}

.cart-total {
    background: #eef5fc;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.cart-total > * {
    padding-top: 5px;
    padding-bottom: 5px;
}

.cart-total .text {
    width: 75%;
}

.cart-total .big {
    font-weight: bold;
    font-size: 24px;
    line-height: 1;
    margin: 0 0 5px 0;
}

.path a {
    color: inherit;
}

.path .arr {
    background: url(../img/arr-grey.png) no-repeat;
    background-size: 100% 100%;
    width: 4px;
    height: 9px;
    margin: 0 20px;
}

.path .path-link-back {
    margin-left: auto;
}

.path .path-link-back:before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    background: url(../img/arr-back.svg) no-repeat 50% 50%;
    width: 4px;
    height: 9px;
    background-size: contain;
    margin: 0 10px 0 0;
}

.order-grid .form-new .grid {
    /*margin-top: -10px;
    margin-bottom: -10px;*/
}

.order-grid .form-new .grid .el {
    padding-top: 10px;
    padding-bottom: 10px;
}

.orders table {
    border-collapse: collapse;
    width: 100%;
}

.orders th, .orders td {
    text-align: left;
    vertical-align: top;
    padding: 17px 10px;
}

.orders th:first-child, .orders td:first-child {
    padding-left: 29px;
}

.orders th:last-child, .orders td:last-child {
    padding-right: 29px;
}

.orders tr:nth-child(odd) td {
    background-color: #eef5fc;
}

.orders th {
    font-weight: bold;
    font-size: 18px;
    padding-top: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e0e0e0;
}

.orders .small, .orders ul {
    font-size: 13px;
    line-height: 15px;
}

.orders ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.orders li {
    list-style: none;
    margin: 12px 0 0 0;
    padding: 0;
}

.orders li:first-child {
    margin-top: 0 !important;
}

.orders .name {
    padding: 2px 0 3px 0;
    font-weight: bold;
    margin: 0 0 3px 0;
}

.orders .rind {
    margin-right: 3px;
}

.order-tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.order-tabs .tab {
    color: inherit;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 20px 28px;
    border-width: 1px;
    border-style: solid;
    border-color: transparent;
    background: #f5f5f5;
    -webkit-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
    -webkit-box-flex: 1;
    -ms-flex: 1 1 1%;
    flex: 1 1 1%;
    line-height: 21px;
}

.order-tabs .tab:first-child {
    border-left-width: 0;
}

.order-tabs .tab:last-child {
    border-right-width: 0;
}

.order-tabs .tab > * {
    max-width: 100%;
}

.order-tabs .tab.active {
    cursor: default;
    border-color: #e0e0e0;
    border-bottom-color: transparent;
    background-color: transparent;
}

.order-tabs .tab .big {
    font-weight: bold;
    font-size: 18px;
    line-height: 24px;
    margin: 0 0 4px 0;
}

.order-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.order-side-l {
    margin-right: auto;
    width: calc(100% - 380px);
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

.order-side-r {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    margin-left: auto;
    width: 355px;
}

.order-grid .mainblock + .form-new {
    padding-top: 16px;
}

.order-grid textarea {
    height: 100px;

}

.order-grid textarea ~ .order-file.file-info {
    position: relative;
    border-top: none;
    margin: 0;
    padding-left: 16px;
    padding-right: 24px;

}

.order-grid textarea:focus ~ .order-file.file-info{
    border-color: #1860d6;
}

.order-min .ind {
    padding: 20px;
    background-color: #fff;
}

.order-min .ind.bg {
    background: #eef5fc;
}

.order-min .title1 {
    font-weight: bold;
    font-size: 18px;
    line-height: 24px;
    margin: -2px 0 13px 0;
}

.order-min .items-list {
    margin: 0 0 -10px 0;
}

.order-min .cart-item-mini {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-top: 1px solid #e0e0e0;
    padding: 15px 0;
    font-size: 12px;
    line-height: 18px;
}

.order-min .cart-item-mini:first-child {
    border-top-width: 0;
}

.order-min .cart-item-mini .photo {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 0px solid #e6e6e6;
    width: 47px;
    height: 40px;
    margin: 1px auto 0 0;
}

.order-min .cart-item-mini .photo img {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}

.order-min .cart-item-mini .text {
    margin-left: auto;
    width: calc(100% - 57px);
}

.order-min .cart-item-mini .name {
    font-weight: bold;
    font-size: 15px;
    line-height: 20px;
}

.order-min .cart-item-mini .price {
    font-size: 13px;
    line-height: 18px;
    margin: 10px 0 0 0;
}

.order-min .cart-item-mini .price .rind {
    margin-right: 3px;
}

.order-min .cart-item-mini .price strong {
    font-size: 15px;
}

.order-min .total {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 13px;
    line-height: 18px;
}

.order-min .total li {
    list-style: none;
    margin: 14px 0 0 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
0 0;
}

.map-tabs .pic img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
    -webkit-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.map-tabs .pic img:first-child {
    opacity: 0;
}

.map-tabs .tab.active {
    cursor: default;
    color: inherit;
}

.map-tabs .tab.active > span {
    border-bottom-color: transparent !important;
}

.map-tabs .tab.active .pic img {
    opacity: 0;
}

.map-tabs .tab.active .pic img:first-child {
    opacity: 1;
}

.map-hold {
    position: relative;
}

.map-hold .map {
    height: 450px;
    background: #ececec;
}

.map-points-list {
    max-height: 450px;
    overflow: hidden;
    overflow-y: auto;
}

.map-points-list .map-point {
    border-left-width: 0;
    border-right-width: 0;
    border-top-width: 0;
}

.map-points-list .map-point:last-child {
    border-bottom-width: 0;
}

.map-point {
    font-size: 15px;
    line-height: 21px;
    text-align: left;
    white-space: normal;
    /*display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-directio
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;*/
    z-index: 1;
    background: #fff;
}

.order-min .total li:first-child {
    margin-top: 0;
}

.order-min .total .big {
    font-weight: bold;
    font-size: 15px;
}

.order-min .total li.big {
    font-weight: bold;
    line-height: 21px;
    font-size: 18px;
    margin-top: 40px;
}

.order-min .total li.big .big {
    font-size: 21px;
}

.order-min .btn {
    display: block;
    width: 100%;
    margin: 18px 0 0 0;
    height: 60px;
    line-height: 60px;
    font-size: 18px;
}

.order-min .check {
    margin: 18px 0 9px 0;
    font-size: 13px;
    line-height: 18px;
    padding-left: 29px;
}

.order-min .check .checkbox {
    background-color: #fff;
}

.map-tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 20px 0 10px 0;
    font-size: 18px;
    line-height: 24px;
}

.map-tabs .tab {
    padding: 10px 30px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    white-space: nowrap;
    margin: 0 20px 0 0;
}

.map-tabs .pic {
    display: inline-block;
    vertical-align: top;
    position: relative;
    width: 24px;
    height: 24px;
    margin: 0 3px n: column;
    background: #fff;
    border: 1px solid #e0e0e0;
    position: relative;
}

.map-point .close {
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
    width: 44px;
    height: 44px;
    background: url(/img/close-grey.svg) no-repeat 50% 50%;
    background-size: auto 15px;
}

.map-point .point-head {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding: 28px 19px;
    background: #eef5fc;
    border-bottom: 1px solid #e0e0e0;
}

.map-point.hor .point-head {
    padding-top: 10px;
    padding-bottom: 22px;
}

.map-point .point-head .big {
    font-weight: bold;
    font-size: 18px;
    line-height: 24px;
    margin: 2px 0 -14px 0;
}

.map-point .point-text {
    padding: 23px 19px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

.map-point.hor .point-text {
    padding-top: 10px;
    padding-bottom: 10px;
}

.map-point .point-text:after {
    content: ' ';
    clear: both;
    display: block;
    width: 0;
    height: 0;
    overflow: hidden;
    font-size: 0;
}

.map-point .price {
    font-weight: bold;
    font-size: 18px;
    line-height: 24px;
}

.map-point .btn {
    display: block;
    width: 100%;
    margin: 15px 0 0 0;
}

.map-point.hor .btn {
    float: right;
    width: 200px;
    margin: 0 0 0 15px;
}

.map-point.vert .point-other {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    position: relative;
}

.map-point.vert .point-other .scroll {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    overflow-y: auto;
}

.map-point .point-other .point-ind {
    padding: 0 19px 19px 19px;
}

.map-point.hor .point-other {
    font-size: 12px;
    line-height: 15px;
}

.map-point.hor .point-other .point-ind {
    padding-bottom: 10px;
}

.map-point.vert {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: 16px 8px;
    width: 285px;
    visibility: hidden;
}

.map-size3 {
    min-height: 200px;
}

.map-selected .map {
    background: #ececec;
    height: 250px;
}

.map-selected .map-point {
    border-width: 0;
}

.input .link-code-go {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
    min-width: 160px;
    border-top-color: transparent;
    border-bottom-color: transparent;
    border-right-color: transparent;
    background-color: transparent;
}

input, select, textarea, button, .jcf-select, .link-code-go {
    /* font: normal 15px "PT Sans", Arial, Helvetica, " sans-serif"; */
    font: normal 14px Arial, Helvetica, " sans-serif";
    color: #000;
    outline: none;
}

input[type="text"], input[type="password"], input[type="email"], input[type="color"], input[type="date"], input[type="datetime-local"], input[type="month"], input[type="number"], input[type="range"], input[type="search"], input[type="tel"], input[type="time"], input[type="url"], input[type="week"], textarea, select, .jcf-select-text, .link-code-go {
    -webkit-appearance: none;
    border: 1px solid #c8c8c8;
    border-radius: 2px;
    background: #fff;
    box-shadow: none;
    margin: 0;
    padding: 16px 10px 13px 10px;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
    overflow: hidden;
    text-overflow: ellipsis;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

.modal-image {
    max-width: 90% !important;
    width: 600px !important; 
}
    .modal-image .content img{
        max-width: 100% !important;
    }

.modal-city {
    width: 570px;
}

.modal-city .input .go {
    margin: 0;
    padding: 0;
    position: absolute;
    top: 0;
    right: 0;
    width: 44px;
    height: 100%;
    background: none;
    border: 0;
    cursor: pointer;
    z-index: 5;
}

.modal-city .input .go:before {
    content: '';
    background: url(../img/icon-search-blue.svg) no-repeat 50% 50%;
    background-size: auto 22px;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    -webkit-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.modal-city .ind {
    padding: 39px 30px 29px 30px;
}

.modal-city .ind + .ind {
    border-top: 1px solid #e5e5e5;
}

.modal-city .cities {
    list-style: none;
    margin: -6px 0;
    padding: 0;
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
}

.modal-city .cities li {
    list-style: none;
    margin: 0;
    padding: 0 0 10px 0;
    display: inline-block;
    vertical-align: top;
    width: 100%;
}

.ui-autocomplete {
    width: 510px !important;
    z-index: 1000 !important;
}

.ui-menu {
    z-index: 1100;
    background: #FFF;
    border: 1px solid rgba(0, 0, 0, 0.09);
    border-top: none;
    max-height: 200px;
    min-height: 200px;
    overflow: auto;
}

.ui-menu-item {
    padding: 0;
    margin: 0;
    list-style: none;
}

.ui-menu-item:before {
    display: none;
}

.ui-menu-item-wrapper {
    padding: 10px 17px;
    padding-left: 0;
    line-height: 17px;
    cursor: pointer;
}

.ui-menu-item-wrapper.ui-state-active {
    background: #1565c0;
    border-color: #1565c0;
    color: #FFF;
}

/* /Address block */
.orders table {
    margin: 0 0 30px 0;
}

.success-modal {
    width: 750px;
}

.success-main {
    width: 90%;
    margin: auto;
    text-align: center;
}

.success-main .btns {
    margin-top: .5rem;
}

.success-main .btns .btn {
    width: 35%;
    margin: .7rem 7.5% 1.2rem 7.5%;
    float: left;
}

.success-catalog-small {
    margin: 1rem;
    border: 1px solid #efefef;
    border-radius: 2px;
}

.success-description {
    padding: .5rem;
}

.empty-cart {
    text-align: center;
    font-size: 1.4rem;
    padding-top: 1rem;
}

.btn.br-red {
    border: 1px solid #d83d42;
    color: #d83d42;
}

.border-red {
    border: 1px solid red !important;
}

.product-descr.less {
    overflow: hidden;
    max-height: 0.1rem;
}

.descr-more-btns {
    text-align: left;
    color: #1860d6;
    cursor: pointer;
    padding: .3rem;
}

.filter-crutch {
    max-height: 0;
    opacity: 0;
    margin-bottom: 0;
}

.filter-full_width {
    background: #eef5fc;
    /*   border: 1px solid #bed8f5;*/
    margin-bottom: 1rem;
}
.filter-full_width .b{
    padding: 0 10px;
}

.filter-full_width-list {
    overflow-x: auto;
    white-space: nowrap;
    display: block !important;
}

.filter-full_width-list .jcf-list-box .jcf-list-content {
    height: 210px !important;
}


.filter-full_width-list .filter {
    width: 250px;
    padding: 0.5rem;
    display: inline-block;
    vertical-align: bottom;
}

.filter-full_width-list .filter .big {
    white-space: normal !important;
    vertical-align: bottom;
}
.link-filters-fw {
    display: block;
    background: #eef5fc;
    padding: 18px 21px 17px 53px;
    box-shadow: inset 0 0 0 1px #d5dfeb;
    -webkit-box-shadow: inset 0 0 0 1px #d5dfeb;
    position: relative;
    text-align: center;
}

.link-filters-fw>div>span{
    border-bottom-style: dotted;
    border-bottom-width: 1px;
    cursor: pointer;
    color: #1860d6;
}

.link-filters-fw>div:before {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 10px -10px -30px;
    background: url(../img/icon-filters-blue.png) no-repeat 50% 50%;
    background-size: cover;
}
.search-cart.input{
    padding-bottom: .5rem;
}
.search-cart.red{
    font-size: .9rem;
    line-height: 1rem;
}
.header .line3 .search {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    position: relative;
}
.header .line3 .search input[type="text"], .header .line3 .search .label {
    display: block;
    width: 100%;
    font-size: 15px;
    padding: 14px 43px 14px 12px;
    border-radius: 2px;
}
.header .line3 .search input[type="text"] {
    z-index: 4;
    position: relative;
    background-color: #fff;
    height: 50px;
}
.header .line3 .search input[type="text"].placeholder {
    background-color: transparent!important;
    z-index: 2;
}
.header .line3 .search input:focus {
    border-color: #000;
}
.header .line3 .search input:focus ~ .btn {
    box-shadow: inset -1px 1px 0 #000, inset 0 -1px 0 #000!important;
}
.header .line3 .search .label {
    position: absolute;
    top: 0;
    left: 0;
    border-color: transparent;
    color: #a0a0a0;
}
.header .line3 .search .label a {
    color: inherit;
    position: relative;
    z-index: 3;
}
.header .line3 .search input[type="text"]:focus + .label a {
    z-index: auto;
}
.header .line3 .search input[type="submit"] {
    position: absolute;
    top: 0;
    right: 0;
    width: 44px;
    height: 100%;
    background: url(../img/icon-search-dark.svg) no-repeat 50% 50%;
    background-size: auto 22px;
    border: 0;
    cursor: pointer;
    z-index: 5;
}
.header .line3 .search .btn {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 5;
}

.header .skidka{
    background-color: #d83d42;
    text-align: center;
    color: #fff;
    padding: 3px 0;
    font-size: 12px;
}

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 100;
    max-height: 50vh;
    overflow: hidden;
    overflow-y: auto;
    border-radius: 0 0 2px 2px;
    margin: -1px 0 0 0;
    background: #fff;
    border: 1px solid #000;
    font-size: 15px;
    line-height: 20px;
    display: none;
}
.search input:focus ~ .search-results {
    display: block;
}
.search-results .ind {
    padding: 13px 10px;
}
.search-results .line {
    height: 1px;
    background: #d2d2d2;
}
.search-results ul {
    list-style: none;
    margin: 7px 0 0 0;
    padding: 0;
}
.search-results ul:first-child {
    margin-top: 0;
}
.search-results li {
    margin: 3px 0 0 0;
    padding: 0;
}
.search-results li:first-child {
    margin-top: 0;
}
.search-results li:before {
    display: none;
}
.done {
	text-align: center;
	font-size: 14px;
	line-height: 21px;
	color: #2f3436;
}
.done img {
	display: block;
	margin: 0 auto 20px auto;
	height: 56px;
	width: auto;
}
.done .h2, .done .title {
	margin: 0 0 15px 0;
}
.done .btns {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin: 16px 0 0 0;
}
.done .btns .btn {
	font-size: 11px;
	font-weight: normal;
	min-width: 144px;
}


.table-orders__caption {
    display: none;
}

.ambroz {position: absolute; top: -3000px; left: -3000px; visibility: hidden; display: none;}

/* 05.09 redramka's change */

.image--visa-master-card-mir {
    height: 20px !important;
}

@media (max-width: 480px) {
    .news__word--mobile-display-none {
        display: none;
    }
}

/* /05.09 redramka's change */

/*order-footer*/

.order-footer {
    padding: 20px 0;
    border-top: 1px solid #e0e0e0;
    color: #a0a0a0;
}
.order-footer__text {
    padding: 10px 0 0;
}

.order-footer__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

@media screen and (max-width: 800px) {
    .order-footer__container {
        display: block;
    }
    .order-footer__text {
        padding: 20px 0 0;
    }
    .order-footer__right {
        padding-top: 20px;
    }
}

._cart_loader {
	margin-left:42%;
	margin-top:20px;
}
.lds-ring {
  display: inline-block;
  position: relative;
  width: 64px;
  height: 64px;
}
.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 51px;
  height: 51px;
  margin: 6px;
  border: 6px solid #cef;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #cef transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.abc {
  DISPLAY: none; LEFT: -3000px; VISIBILITY: hidden; POSITION: absolute; TOP: -3000px
}


/* 1.11.19 */
.to-top {
  position: fixed;
  cursor: pointer;
  right: 40px;
  bottom: 40px;
  width: 40px;
  height: 40px;
  background-color: #fcfcfc;
  border: 2px solid #d83d42;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  box-sizing: border-box;
}
.to-top::before {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  top: 10px;
  left: 13px;
  background-color: transparent;
  border: 2px solid #d83d42;
  transform: rotate(45deg);
  border-bottom-color: transparent;
  border-right-color: transparent;
  box-sizing: initial;
}
.to-top::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 16px;
  top: 10px;
  left: 17px;
  background-color: #d83d42;
}
.to-top._vis {
  opacity: 1;
}
/* /1.11.19 */



.abcd a {
padding: 1%;
}

.ger {
color: #747474; text-decoration: none;
}

.input-num {
position: relative;
/* width: 98px; */
width: 140px;
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
}
.input-num input {
    box-shadow: none;
/*    background-color: #ebecef;*/
    text-align: center;
    font-weight: bold;
    font-size: 15px;
    color: #2f3436;
    /*padding-left: 43px;
    padding-right: 43px;*/
    padding: 16px 0px 13px 0px;
}
.input-num .plus, .input-num .minus {
    position: absolute;
    top: 0;
    bottom: 0;
    cursor: pointer;
    color: black;
    width: 33.333%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
}
.input-num .plus {
    right: 0;
/*    color: #3da310;*/
}

.input-num .minus {
    left: 0;

/*    color: #ff0000;*/
}

.j-prices-list li.selected{
    background: #DEEEFD;
    /*background: antiquewhite;*/
}
.j-prices-list li{
    padding-left: 10px;
    padding-right: 10px;
}

.grecaptcha-badge { 
    visibility: hidden;
}

.syspay {width:100%;text-align:center;padding: 20px 20px 50px 20px;}
.syspay div {text-align:center;width:24%;float:left}
.syspay div img {width: 55%}

.collapsed_block {
    overflow: hidden;    
} 
    .collapsed_block + .more-link {
        position: relative;
        display: block;
        width: 100%;
        text-align: center;
        text-decoration: none;
        margin: 10px 0 30px;
        border-top: 1px solid #ddd;
        /*-webkit-box-shadow: 0px -13px 10px 5px rgb(255, 255, 255, 0.8);
        -moz-box-shadow: 0px -13px 10px 5px rgb(255, 255, 255, 0.8);
        box-shadow: 0px -13px 10px 5px rgb(255, 255, 255, 0.8);    */
    }
        .collapsed_block + .more-link span{
            position: relative;
            display: inline-block;
            background: #fff;
            z-index: 1;
            margin-top: -1px;
            padding: 5px 35px 5px 10px;
            border: 1px solid #ddd;
            border-radius: 0 0px 4px 4px;
            border-top: none;
            text-decoration: underline;
        }
        .collapsed_block + .more-link span:after {
            content: "";
            width: 10px;
            height: 10px;
            border-top: 1px solid #999;
            border-right: 1px solid #999;
            transform: rotate(135deg);
            display: inline-block;
            position: absolute;
            top: 8px;
            margin: 0 10px;
        }
        .collapsed_block + .more-link.open span:after { 
            content: "";
            width: 10px;
            height: 10px;
            border-top: 1px solid #999;
            border-right: 1px solid #999;
            transform: rotate(-45deg);;
            display: inline-block;
            position: absolute;
            top: 14px;
            margin: 0 10px;
        }

.article_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-weight: normal;
    font-size: 13px;
    line-height: 20px;
    color: #5d6063;
}
.article_item .img {
    border: 0;
    -ms-flex-item-align: start;
    align-self: flex-start;
    width: 21.65%;
    height: 100px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    border-radius: 2px;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
}
.article_item .text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: calc(78.35% - 14px);
}

.articles_main{}
    .articles_main .el{
        float: left;
        width: 25%;
        padding: 20px 15px;
    }
        .articles_main .el .text{
            margin-top: 10px; 
            color: #000;
        }

.subcats{
    background: #fff;
    margin-top: 20px;
}
    .subcats .el{
        float: left;
        width: 33%;
        padding: 5px 15px;        
    }
        .subcats .el > div{
            display: flex;            
        }
        .subcats .el > div > div{
            align-self: center;
        }
        
        .subcats .el .text{
            margin-top: 10px; 
            color: #000;
        }
        .subcats .el .img{
            background-position: 50% 50%;
            background-repeat: no-repeat;
            background-size: 65% auto;
            background-color: #fff;
            height: 110px;
            width: 110px;
            margin: 5px 15px 5px 0;
        }
        .subcats .el .link{
            width: calc(100% - 120px);    
        }        
        .subcats .el .link a{
            text-decoration: 1px dotted;            
            /*font-weight: bold;
            color: #000;*/
        }

.clear{
    clear: both;
}

.collapsed_block {
    overflow: hidden;    
} 
    .collapsed_block + .more-link {
        position: relative;
        display: block;
        width: 100%;
        text-align: center;
        text-decoration: none;
        margin: 10px 0 30px;
        border-top: 1px solid #ddd;
        /*-webkit-box-shadow: 0px -13px 10px 5px rgb(255, 255, 255, 0.8);
        -moz-box-shadow: 0px -13px 10px 5px rgb(255, 255, 255, 0.8);
        box-shadow: 0px -13px 10px 5px rgb(255, 255, 255, 0.8);    */
    }
        .collapsed_block + .more-link span{
            position: relative;
            display: inline-block;
            background: #fff;
            z-index: 1;
            margin-top: -1px;
            padding: 5px 35px 5px 10px;
            border: 1px solid #ddd;
            border-radius: 0 0px 4px 4px;
            border-top: none;
            text-decoration: underline;
        }
        .collapsed_block + .more-link span:after {
            content: "";
            width: 10px;
            height: 10px;
            border-top: 1px solid #999;
            border-right: 1px solid #999;
            transform: rotate(135deg);
            display: inline-block;
            position: absolute;
            top: 8px;
            margin: 0 10px;
        }
        .collapsed_block + .more-link.open span:after { 
            content: "";
            width: 10px;
            height: 10px;
            border-top: 1px solid #999;
            border-right: 1px solid #999;
            transform: rotate(-45deg);;
            display: inline-block;
            position: absolute;
            top: 14px;
            margin: 0 10px;
        }

.catalog-list{
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(5, 1fr);
    margin-bottom: 32px;
    max-width: 100%;
    width: 100%;
}
    .catalog-list .item{
        position: relative;
        height: 275px;
        border: 1px solid #e0e0e0;
        display: flex;
        flex-direction: column;
        padding: 10px 15px;
    }

    .catalog-list .item .img{
        text-align: center;
        height: 130px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
        .catalog-list .item .img img{
            width: auto;
            height: auto;
            max-width: 100%;
            max-height: 100%;
            vertical-align: middle;
        }

        .catalog-list .item .title{
            margin: 10px 0 0;
        }
            .catalog-list .item .title span{
                font-weight: bold;
            }
        
        .catalog-list .item .content{
            height: 90px;
        } 
            .catalog-list .item .manufacturer span{
                color: #555;
                font-size: 12px;
            }
        
        .catalog-list .item .price{
            font-weight: bold;
            color: #000;
            margin-top: 10px;
        }

        .catalog-list .item .heart, .gallery .heart, .catalog .heart{
            width: 12px;
            height: 12px;
            background-color: #d5d5d5;
            transform: rotate(45deg);
            position: absolute;
            top: 18px;
            right: 18px;
            cursor: pointer;
            z-index: 2;
        }
            
            .catalog-list .item .heart::before,
            .catalog-list .item .heart::after,
            .gallery .heart::before,
            .gallery .heart::after,
            .catalog .heart::before,
            .catalog .heart::after {
                content : '';
                display: block;
                width: 12px;
                height: 12px;
                background-color: #d5d5d5;
                border-radius: 50%;
                position: absolute;
            }
            
            .catalog-list .item .heart::before,
            .gallery .heart::before,
            .catalog .heart::before {
                top: -6px;
                left: 0;
            }
            
            .catalog-list .item .heart::after,
            .gallery .heart::after,
            .catalog .heart::after {
                top: 0;
                left: -6px;
            }

            .catalog-list .item .heart.active, .catalog-list .item .heart:hover, 
            .catalog-list .item .heart.active:before, .catalog-list .item .heart:hover:before, 
            .catalog-list .item .heart.active:after, .catalog-list .item .heart:hover:after,
            .gallery .heart.active, .gallery .heart:hover, 
            .gallery .heart.active:before, .gallery .heart:hover:before, 
            .gallery .heart.active:after, .gallery .heart:hover:after,
            .catalog .heart.active, .catalog .heart:hover, 
            .catalog .heart.active:before, .catalog .heart:hover:before, 
            .catalog .heart.active:after, .catalog .heart:hover:after{
                background-color: #d83d42;
            }
        
        .catalog-list .item .compare, .gallery .compare, .catalog .compare{
            width: 24px;
            height: 24px;
            position: absolute;
            bottom: 12px;
            right: 10px;
            cursor: pointer;
            z-index: 2;
        }
        .gallery .compare{
            top: 12px;
            right: 45px;
        }        
            .catalog-list .item .compare svg, .gallery .compare svg, .catalog .compare svg{
                fill: #999;
            }
            .catalog-list .item .compare.active svg, .gallery .compare.active svg, .catalog .compare.active svg,
            .catalog-list .item .compare:hover svg, .gallery .compare:hover svg, .catalog .compare:hover svg{
                fill: #d83d42;
            }

.delivery_type{
    padding: 20px 20px 20px 35px;
}
    .delivery_type .el{
        display: inline-block;
        padding-right: 35px;
    }
    .delivery_type .check .checkbox{
        top: 15px;
    }



.compare-table{
    font-size: 13px;
    overflow: auto;
    width: 100%;
    padding-bottom: 15px;
}
    .compare-table .item{
        position: relative;
        width: 215px;
        height: 200px;
        padding: 10px 15px;
        border: 1px solid #e0e0e0;
        margin-bottom: 15px;
    }
        .compare-table .item .title{
            font-weight: bold;
        }
        .compare-table .item .img{
            text-align: center;
            height: 130px;
            display: flex;
            justify-content: center;
            align-items: center;
        }
            .compare-table .item .img img{
                width: auto;
                height: auto;
                max-width: 100%;
                max-height: 100%;
                vertical-align: middle;
            }
            .compare-table .item .compare{
                position: absolute;
                top: 12px;
                right: 12px;
                width: 18px;
                height: 18px;
                z-index: 2;
                cursor: pointer;
                opacity: 0.6;
            }
                .compare-table .item .compare:hover{
                    opacity: 1;
                }

    .compare-table td{
        padding: 5px;
        border-bottom: 1px solid #bbb;
    }
    .compare-table tr:first-child td, .compare-table tr:last-child td, .compare-table tr td:first-child{
        border: none;
    }
    .compare-table .param_name{
        border: none;
        font-weight: bold;
        width: 200px;
    }