
@font-face {
    font-family: 'OpenSans';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/OpenSans-Light.eot');
    src: url('../fonts/OpenSans-Light.woff') format('woff'), url('../fonts/OpenSans-Light.ttf') format('truetype'), url('../fonts/OpenSans-Light.svg') format('svg');
}

@font-face {
    font-family: 'OpenSans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/OpenSans-Regular.eot');
    src: url('../fonts/OpenSans-Regular.woff') format('woff'), url('../fonts/OpenSans-Regular.ttf') format('truetype'), url('../fonts/OpenSans-Regular.svg') format('svg');
}

@font-face {
    font-family: 'OpenSans';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/OpenSans-SemiBold.eot');
    src: url('../fonts/OpenSans-SemiBold.woff') format('woff'), url('../fonts/OpenSans-SemiBold.ttf') format('truetype'), url('../fonts/OpenSans-SemiBold.svg') format('svg');
}

@font-face {
    font-family: 'OpenSans';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/OpenSans-Bold.eot');
    src: url('../fonts/OpenSans-Bold.woff') format('woff'), url('../fonts/OpenSans-Bold.ttf') format('truetype'), url('../fonts/OpenSans-Bold.svg') format('svg');
}

@font-face {
    font-family: 'OpenSans';
    font-style: normal;
    font-weight: 900;
    src: url('../fonts/OpenSans-ExtraBold.eot');
    src: url('../fonts/OpenSans-ExtraBold.woff') format('woff'), url('../fonts/OpenSans-ExtraBold.ttf') format('truetype'), url('../fonts/OpenSans-ExtraBold.svg') format('svg');
}

.rouble-font {
    font-family: "Rouble", sans-serif !important;
    font-style: normal;
    text-transform: lowercase !important;
    font-weight: normal;
}

.fa-font {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

blockquote,
button,
input,
textarea,
select {
    font-family: 'OpenSans';
    font-weight: 400;
}

.main-font-regular {
    font-family: 'OpenSans';
    font-weight: 400;
}

.second-font {
    font-family: 'Ubuntu', sans-serif;
    font-weight: normal;
}

html,
body,
div,
p,
h1,
h2,
h3,
h4,
h5,
h6,
a,
span,
img,
ol,
ul,
li,
form,
input,
blockquote {
    margin: 0;
    padding: 0;
    outline: 0;
    font-size: 100%;
    background: transparent;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

h1 {
    font-size: 32px;
    margin-bottom: 30px;
}

h2 {
    font-size: 30px;
    margin-bottom: 30px;
    font-weight: normal;
}

h3 {
    font-size: 24px;
    margin-bottom: 25px;
}

h4 {
    font-size: 19px;
    margin-bottom: 15px;
}

h5 {
    font-size: 16px;
    margin-bottom: 10px;
}

h6 {
    font-size: 13px;
    margin-bottom: 5px;
}

:before,
:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

a {
    color: #000;
    text-decoration: none;
}

a:hover,
a:focus {
    outline: none;
    text-decoration: none;
}

label {
    margin-bottom: 0;
    font-weight: normal;
}

input,
textarea,
select {
    font-family: 'OpenSans';
    font-weight: 400;
    /* Firefox 19+ */
    /* Firefox 18- */
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
select::-webkit-input-placeholder {
    color: #000;
}

input::-moz-placeholder,
textarea::-moz-placeholder,
select::-moz-placeholder {
    color: #000;
}

input:-moz-placeholder,
textarea:-moz-placeholder,
select:-moz-placeholder {
    color: #000;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder,
select:-ms-input-placeholder {
    color: #000;
}

img {
    max-width: 100%;
}

/* BEGIN my-mixins */
.my-transition {
    -webkit-transition: all .3s;
    transition: all .3s;
}

.horizontal-center-position-absolute {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.vertical-center-position-absolute {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.vertical-horizontal-center-pos-absolute {
    position: absolute;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.cancel-vertical-horizontal-center-pos-absolute {
    position: absolute;
    top: 50%;
    -webkit-transform: translate(0%, 0%);
    -ms-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
}

.main-shadow-small {
    -webkit-box-shadow: 0px 8px 13px 0px rgba(228, 6, 19, 0.57);
    box-shadow: 0px 8px 13px 0px rgba(228, 6, 19, 0.57);
}

.main-shadow-big {
    -webkit-box-shadow: 0px 8px 13px 0px rgba(160, 16, 25, 0.57);
    box-shadow: 0px 8px 13px 0px rgba(160, 16, 25, 0.57);
}

.to-right {
    margin-left: auto;
}

.to-left {
    margin-right: auto;
}

.border-radius {
    -webkit-border-radius: 5px;
    border-radius: 5px;
}

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

/* BEGIN indents */
.pb0 {
    padding-bottom: 0px !important;
}

.pb5 {
    padding-bottom: 5px !important;
}

.pb10 {
    padding-bottom: 10px !important;
}

.pb15 {
    padding-bottom: 15px !important;
}

.pb20 {
    padding-bottom: 20px !important;
}

.pb25 {
    padding-bottom: 25px !important;
}

.pb30 {
    padding-bottom: 30px !important;
}

.pb35 {
    padding-bottom: 35px !important;
}

.pb40 {
    padding-bottom: 40px !important;
}

.pb45 {
    padding-bottom: 45px !important;
}

.pb50 {
    padding-bottom: 50px !important;
}

.pl25 {
    padding-left: 25px !important;
}

.indent-t-b {
    padding: 80px 0;
}

.indent-b {
    padding-bottom: 80px;
}

.pt0 {
    padding-top: 0px !important;
}

.pt5 {
    padding-top: 5px !important;
}

.pt10 {
    padding-top: 10px !important;
}

.pt15 {
    padding-top: 15px !important;
}

.pt20 {
    padding-top: 20px !important;
}

.pt25 {
    padding-top: 25px !important;
}

.pt30 {
    padding-top: 30px !important;
}

.pt35 {
    padding-top: 35px !important;
}

.pt40 {
    padding-top: 40px !important;
}

.pt45 {
    padding-top: 45px !important;
}

.pt50 {
    padding-top: 50px !important;
}

.mb0 {
    margin-bottom: 0px !important;
}

.mb5 {
    margin-bottom: 5px !important;
}

.mb10 {
    margin-bottom: 10px !important;
}

.mb15 {
    margin-bottom: 15px !important;
}

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

.mb25 {
    margin-bottom: 25px !important;
}

.mb30 {
    margin-bottom: 30px !important;
}

.mb35 {
    margin-bottom: 35px !important;
}

.mb40 {
    margin-bottom: 40px !important;
}

.mb45 {
    margin-bottom: 45px !important;
}

.mb50 {
    margin-bottom: 50px !important;
}

/* END indents */
/* END my-mixins */
body {
    overflow-x: hidden;
    font-size: 16px;
    line-height: 1.35;
    color: #000;
    font-family: 'OpenSans';
    font-weight: 400;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
}

.wrapper {
    width: 1170px;
    margin: 0 auto;
    padding: 0;
}

.wrapper:before,
.wrapper:after {
    content: " ";
    display: table;
}

.wrapper:after {
    clear: both;
}

.wrap-txt-block {
    font-size: 14px;
}

.wrap-txt-block:before,
.wrap-txt-block:after {
    content: " ";
    display: table;
}

.wrap-txt-block:after {
    clear: both;
}

.wrap-txt-block > * {
    margin-bottom: 20px;
}

.wrap-txt-block > *:last-child {
    margin-bottom: 0;
}

.wrap-txt-block p {
    margin-bottom: 20px;
}

.wrap-txt-block ul {
    padding-left: 0px;
    margin-bottom: 20px;
    list-style: none;
}

.wrap-txt-block ul li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 20px;
}

.wrap-txt-block ul li:before {
    content: "";
    position: absolute;
    background: url("../images/list-icon.png") no-repeat;
    width: 18px;
    height: 18px;
    left: 0;
    top: 0px;
}

.wrap-txt-block ol {
    counter-reset: myCounter;
    margin-bottom: 20px;
}

.wrap-txt-block ol li {
    list-style: none;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.wrap-txt-block ol li:before {
    counter-increment: myCounter;
    content: counter(myCounter);
    color: black;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    display: inline-block;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    line-height: 19px;
    width: 18px;
    height: 18px;
    margin-right: 7px;
}

.wrap-txt-block a {
    text-decoration: underline;
}

.wrap-txt-block table {
    margin-bottom: 20px;
    width: 100%;
}

.wrap-txt-block iframe {
    border: none;
    width: 90%;
    height: 475px;
    display: block;
    margin: 0 auto 25px;
}

/* BEGIN main-slider */
.main-slider {
    position: relative;
}

.main-slider .slider-nav-btn {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    margin-left: 0px;
    color: #ffffff;
    z-index: 1;
    background-color: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 60px;
}

.main-slider .slider-nav-btn--left {
    left: 50%;
    margin-left: -500px;
}

.main-slider .slider-nav-btn--right {
    right: 50%;
    margin-right: -500px;
}

/* END main-slider */
/* BEGIN error-page */
.error-page {
    padding: 120px 0;
}

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

.error-page__title {
    font-size: 48px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 300;
}

.error-page__number {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 25px;
}

.error-page__desc {
    font-size: 18px;
    font-weight: 300;
}

/* END error-page */
/* BEGIN tabs */
.tabs__list {
    list-style: none;
}

.tabs__item.is-active {
    color: red;
}

.tabs__col {
    display: none;
}

.tabs__col.is-active {
    display: block;
}

/* END tabs */
.sticky {
    -webkit-transition: none !important;
    transition: none !important;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100% !important;
}

.sticky .header__bottom-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.sticky .header__nav {
    width: 100%;
}

.sticky .header__sticky-add {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: auto;
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
    padding-left: 50px;
}

.btn-sticky-left {
    margin-right: 15px;
}

/* BEGIN forms */
.personal-data {
    font-size: 12px;
}

.personal-data a {
    text-decoration: underline;
}

.personal-data a:hover {
    text-decoration: none;
}

.plushka {
    background: #48688F;
    padding: 30px 25px 40px;
    color: #ffffff;
}

.plushka .personal-data a {
    color: #ffffff;
}

.form__row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -25px;
    margin-right: -25px;
}

.form__row > *:last-child {
    padding-bottom: 0;
}

.form__col-100 {
    width: 100%;
    padding: 0px 25px 25px;
}

.form__col-50 {
    width: 50%;
    padding: 0px 25px 25px;
}

.form__col-33 {
    width: 33.33%;
    padding: 0px 25px 25px;
}

.form-input input[type='password'],
.form-input input[type='email'],
.form-input input[type='tel'],
.form-input input[type='text'] {
    display: block;
    width: 100%;
    border: none;
    outline: none;
    background-color: #F2F4F7;
    color: #000;
    font-size: 14px;
    line-height: 20px;
    padding: 18px 40px;
    font-weight: bold;
    -webkit-border-radius: 50px;
    border-radius: 50px;
}

.form-input--light input[type='password'],
.form-input--light input[type='email'],
.form-input--light input[type='tel'],
.form-input--light input[type='text'] {
    background: #ffffff;
}

.form-textarea textarea {
    display: block;
    width: 100%;
    border: 1px solid #000000;
    outline: none;
    resize: vertical;
    font-family: inherit;
    background-color: transparent;
    color: #000;
    font-size: 14px;
    line-height: 20px;
    padding: 18px 40px;
    font-weight: bold;
    -webkit-border-radius: 50px;
    border-radius: 50px;
}

.input-count .jq-number {
    padding: 0px 32px;
    -webkit-border-radius: 0px;
    border-radius: 0px;
    overflow: hidden;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.input-count .jq-number__spin {
    top: auto;
    bottom: 0;
    width: 32px;
    height: 100%;
    background: #fff;
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    text-shadow: none;
    border: 1px solid #e40613;
}

.input-count .jq-number__spin:after {
    width: 100%;
    text-align: center;
    left: 0;
    border: none;
    color: #e40613;
    line-height: 32px;
    top: 0;
    font-size: 30px;
    font-family: 'Ubuntu', sans-serif;
    font-weight: normal;
    font-weight: bold;
}

.input-count .jq-number__spin.minus {
    left: 0;
    border-right: none;
    -webkit-border-top-left-radius: 15px;
    border-top-left-radius: 15px;
    -webkit-border-bottom-left-radius: 15px;
    border-bottom-left-radius: 15px;
}

.input-count .jq-number__spin.minus:after {
    content: "-";
    left: 3px;
}

.input-count .jq-number__spin.plus {
    right: 0;
    border-left: none;
    -webkit-border-top-right-radius: 15px;
    border-top-right-radius: 15px;
    -webkit-border-bottom-right-radius: 15px;
    border-bottom-right-radius: 15px;
}

.input-count .jq-number__spin.plus:after {
    content: "+";
    left: auto;
    right: 3px;
}

.input-count .jq-number__spin:hover {
    background: #e40613;
}

.input-count .jq-number__spin:hover:after {
    color: #ffffff;
}

.input-count .jq-number__field {
    width: 42px;
    -webkit-border-radius: 0;
    border-radius: 0;
    border-color: #e40613;
    background: #ffffff;
}

.input-count .jq-number__field input {
    font-family: 'Ubuntu', sans-serif;
    font-weight: normal;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    text-align: center;
    -moz-text-align-last: center;
    text-align-last: center;
    padding: 7px 10px;
}

.form-radio label {
    font-weight: normal;
    margin-bottom: 0;
    font-size: 14px;
    cursor: pointer;
}

.form-radio .jq-radio {
    left: 0;
    width: 14px;
    height: 14px;
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#fff));
    background: linear-gradient(#FFF, #fff);
    margin-right: 8px;
    border: 1px solid #E9E9E9;
}

.form-radio .jq-radio.checked .jq-radio__div {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin: 0;
    -webkit-border-radius: 0px;
    border-radius: 0px;
    -webkit-box-shadow: none;
    box-shadow: none;
    background: red;
}

.form-radio .jq-radio.focused {
    border: none;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}

.form-search {
    position: relative;
}

.form-search input {
    -webkit-appearance: inherit;
    padding: 10px 50px 10px 17px;
    background: #ffffff;
    border: 1px solid;
    outline: none;
    width: 100%;
    display: block;
}

.form-search button {
    background: url("../images/icon-search.png") no-repeat #e40613 center center;
    top: 0px;
    right: 0px;
    width: 40px;
    border: none;
    outline: none;
    position: absolute;
    cursor: pointer;
    height: 100%;
}

.form-search button:hover {
    opacity: .8;
}

.form-count {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.form-count .jq-number {
    width: 72px;
    border: 2px solid #F7F7F7;
    padding: 1px;
}

.form-count .jq-number__field {
    width: inherit;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-border-radius: 0;
    border-radius: 0;
    border: none;
}

.form-count .jq-number__spin {
    height: 20px;
    width: 20px;
    border: none;
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.form-count .jq-number__spin:after {
    border: none;
}

.form-count .jq-number__spin.plus:after {
    content: "+";
    text-shadow: none;
    font-size: 18px;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    left: 0;
    top: 0;
    right: auto;
    bottom: auto;
}

.form-count .jq-number__spin.minus:after {
    content: "-";
    text-shadow: none;
    font-size: 24px;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    left: 0;
    top: -2px;
    right: auto;
    bottom: auto;
}

.form-count .jq-number__field input {
    font-size: 18px;
    padding: 10px 35px 10px 13px;
}

.my-btn {
    text-transform: uppercase;
    border: none;
    display: inline-block;
    vertical-align: middle;
    outline: none;
    background: #e40613;
    color: #ffffff;
    padding: 11px 10px;
    cursor: pointer;
    text-align: center;
    font-size: 14px;
    line-height: 20px;
    font-weight: bold;
    -webkit-box-shadow: 0px 8px 13px 0px rgba(228, 6, 19, 0.57);
    box-shadow: 0px 8px 13px 0px rgba(228, 6, 19, 0.57);
    -webkit-border-radius: 25px;
    border-radius: 25px;
}

.my-btn--block {
    width: 100%;
    display: block;
}

.my-btn--fix-size {
    width: 295px;
}

.my-btn--fix-size-small {
    width: 180px;
}

.my-btn--fix-size-middle {
    width: 230px;
}

.my-btn--big {
    padding: 18px 25px;
    font-size: 16px;
}

.my-btn--middle {
    padding: 13px 10px;
}

.my-btn--no-uppercase {
    text-transform: none;
    font-weight: normal;
}

.my-btn:hover {
    background: #a01019;
    -webkit-box-shadow: 0px 8px 13px 0px rgba(160, 16, 25, 0.57);
    box-shadow: 0px 8px 13px 0px rgba(160, 16, 25, 0.57);
}

.my-btn--light {
    background: #ffffff;
    border: 1px solid #e40613;
    color: #e40613;
    -webkit-box-shadow: 0px 8px 13px 0px rgba(0, 0, 0, 0.57);
    box-shadow: 0px 8px 13px 0px rgba(0, 0, 0, 0.57);
}

.my-btn--light:hover {
    color: #ffffff;
    background: #e40613;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.btn-enter {
    text-transform: uppercase;
    display: inline-block;
    vertical-align: middle;
    outline: none;
    background: transparent;
    color: #e40613;
    padding: 10px 15px;
    padding-left: 45px;
    border: 1px solid #e40613;
    cursor: pointer;
    text-align: center;
    line-height: 20px;
    font-weight: bold;
    -webkit-border-radius: 25px;
    border-radius: 25px;
    position: relative;
    font-size: 16px;
    min-width: 160px;
}

.btn-enter:before {
    content: "";
    position: absolute;
    background: url("../images/icon-enter.png") no-repeat;
    width: 24px;
    height: 24px;
    top: 50%;
    margin-top: -10px;
    left: 50%;
    margin-left: -45px;
}

.btn-enter:hover {
    -webkit-box-shadow: 0px 8px 13px 0px rgba(228, 6, 19, 0.57);
    box-shadow: 0px 8px 13px 0px rgba(228, 6, 19, 0.57);
    background: #e40613;
    color: #ffffff;
}

.btn-enter:hover:before {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

.btn-enter--block {
    width: 100%;
    display: block;
}

.btn-exit {
    text-transform: none;
    display: inline-block;
    vertical-align: middle;
    outline: none;
    background: transparent;
    color: #e40613;
    padding: 10px 15px;
    padding-left: 35px;
    border: 1px solid #e40613;
    cursor: pointer;
    text-align: center;
    line-height: 20px;
    font-weight: bold;
    -webkit-border-radius: 25px;
    border-radius: 25px;
    position: relative;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 44px;
}

.btn-exit:before {
    content: "";
    position: absolute;
    background: url("../images/header-home.svg") no-repeat;
    width: 24px;
    height: 24px;
    top: 50%;
    transform: translateY(-50%);
    left: 6px;
}

.btn-exit:hover {
    -webkit-box-shadow: 0px 8px 13px 0px rgba(228, 6, 19, 0.57);
    box-shadow: 0px 8px 13px 0px rgba(228, 6, 19, 0.57);
    background: #e40613;
    color: #ffffff;
}

.btn-exit:hover:before {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

.btn-exit--block {
    width: 100%;
    display: block;
}

/* END forms */
.breadcrumbs-sect {
    padding: 30px 0;
}

.breadcrumbs {
    list-style: none;
}

.breadcrumbs li {
    display: inline-block;
    position: relative;
    font-size: 16px;
}

.breadcrumbs li + li:before {
    content: '/';
    display: inline-block;
    vertical-align: middle;
    margin: 0 5px;
    position: relative;
    left: -2px;
}

.breadcrumbs span {
    color: #202020;
    font-weight: normal;
}

.breadcrumbs a {
    font-weight: normal;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

/* BEGIN my-pagination */
.my-pagination {
    display: inline-block;
    vertical-align: top;
    list-style: none;
    font-size: 0;
}

.my-pagination li {
    display: inline-block;
    vertical-align: bottom;
    margin-left: 15px;
    font-size: 18px;
}

.my-pagination li.next a {
    color: #2764B0;
    background-color: transparent;
}

.my-pagination li.next a:hover {
    background-color: transparent;
    color: #2764b0;
}

.my-pagination li.selected a {
    font-size: 24px;
}

.my-pagination li span,
.my-pagination li a {
    color: #000;
    display: block;
    padding: 8px 5px;
    text-align: center;
    font-weight: bold;
}

.my-pagination2 {
    display: inline-block;
    vertical-align: top;
    list-style: none;
    font-size: 0;
}

.my-pagination2 li {
    display: inline-block;
    vertical-align: bottom;
    margin-left: 15px;
    font-size: 22px;
}

.my-pagination2 li.next a {
    color: #2764B0;
    background-color: transparent;
}

.my-pagination2 li.next a:hover {
    background-color: transparent;
    color: #2764b0;
}

.my-pagination2 li.selected a {
    width: 40px;
    color: #fff;
    font-size: 22px;
    background: #e40613;
}

.my-pagination2 li.selected a:hover {
    color: #ffffff;
}

.my-pagination2 li span,
.my-pagination2 li a {
    color: #000;
    display: block;
    padding: 8px 5px;
    text-align: center;
    font-weight: bold;
}

.my-pagination2 li a:hover {
    color: #e40613;
}

.txt-nav {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-top: 15px;
    font-size: 18px;
}

.txt-nav__see-all {
    color: #e40613;
}

.txt-nav__right {
    margin-left: auto;
}

.txt-nav__prev {
    display: inline-block;
    vertical-align: top;
    position: relative;
    color: #e40613;
}

.txt-nav__prev:before {
    content: "\f104";
    vertical-align: middle;
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin-right: 10px;
}

.txt-nav__next {
    margin-left: 34px;
    display: inline-block;
    vertical-align: top;
    position: relative;
    color: #e40613;
}

.txt-nav__next:after {
    content: "\f105";
    vertical-align: middle;
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin-left: 10px;
}

.txt-nav2 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 20px;
}

.txt-nav2 a:hover {
    opacity: .9;
}

.txt-nav2__prev {
    display: inline-block;
    vertical-align: top;
    position: relative;
    color: #ffffff;
    background: #000;
    text-align: center;
    width: 40px;
    height: 40px;
    font-size: 30px;
}

.txt-nav2__prev:before {
    content: "\f104";
    vertical-align: middle;
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.txt-nav2__next {
    display: inline-block;
    vertical-align: top;
    position: relative;
    color: #ffffff;
    background: #000;
    text-align: center;
    width: 40px;
    height: 40px;
    font-size: 30px;
}

.txt-nav2__next:after {
    content: "\f105";
    vertical-align: middle;
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* END my-pagination */
/* BEGIN social */
.social-title {
    font-size: 20px;
    margin-bottom: 15px;
}

.social {
    list-style: none;
    margin: 0 -5px;
    display: inline-block;
    vertical-align: top;
}

.social li {
    display: inline-block;
    vertical-align: top;
    padding: 0px 2px;
}

.social li a {
    width: 34px;
    height: 34px;
    border: 1px solid #B0C5DA;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.social li a:hover {
    background: #e40613;
    border-color: #e40613;
}

.social li a:hover img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

/* END social */
/* BEGIN title-block */
.title {
    font-size: 35px;
    font-family: 'Ubuntu', sans-serif;
    font-weight: normal;
    text-align: center;
    margin-bottom: 70px;
    font-weight: bold;
}

.title--left {
    text-align: left;
}

/* END title-block */
.select-wrap .jq-selectbox {
    width: 100%;
}

.select-wrap .jq-selectbox .jq-selectbox__select {
    width: 170px;
    height: 42px;
    padding: 12px 30px 0 20px;
    border: 1px solid transparent;
    -webkit-border-radius: 0;
    background: #E5E5E5;
    -webkit-box-shadow: none;
    font-size: 16px;
    line-height: 1;
    color: #363636;
    text-shadow: none;
    -webkit-border-radius: 25px;
    border-radius: 25px;
    -webkit-box-shadow: 0px 0px 25.11px 1.89px rgba(11, 50, 68, 0.22);
    box-shadow: 0px 0px 25.11px 1.89px rgba(11, 50, 68, 0.22);
    font-family: 'Ubuntu', sans-serif;
    font-weight: normal;
}

.select-wrap .jq-selectbox .jq-selectbox__trigger {
    width: 0;
    border-left: none;
}

.select-wrap .jq-selectbox .jq-selectbox__trigger-arrow {
    top: 17px;
    right: 15px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 11px 0 11px;
    border-color: #e40613 transparent transparent transparent;
}

.select-wrap .jq-selectbox li {
    padding: 12px 10px;
}

.select-wrap .jq-selectbox li:hover {
    background: #e40613;
}

.select-wrap--order-form .jq-selectbox .jq-selectbox__select {
    -webkit-box-shadow: none;
    box-shadow: none;
    width: 100%;
    font-size: 14px;
}

.ui-widget.ui-widget-content {
    z-index: 999 !important;
}

.header__top {
    padding: 22px 0;
}

.header__box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 14px;
}

.header__logo {
    width: 260px;
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
    font-size: 0;
}

.header__sticky-add {
    display: none;
}

.header__sticky-add .my-btn {
    width: 42px;
    font-size: 37px;
}

.header__contact {
    width: 360px;
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
    padding-left: 30px;
}

.header__social {
    width: 132px;
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
}

.header__btn {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.header__btn-enter {
    width: 47%;
}

.header__btn-call-back {
    width: 47%;
}

.header__phone {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 10px;
}

.header__bottom {
    border-top: 1px solid #AEC4D9;
    border-bottom: 1px solid #AEC4D9;
    padding: 12px 0;
    background: #ffffff;
    position: relative;
}

.header-navigation {
    position: relative;
    z-index: 1;
    display: block;
}

.header-navigation > ul {
    list-style: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.header-navigation > ul > li > a {
    font-size: 16px;
    line-height: 20px;
    padding: 10px 0px;
    display: inline-block;
    vertical-align: middle;
    color: #000;
}

.header-navigation > ul > li:hover a {
    color: #e40613;
}

.header-navigation > ul li .dropdown-menu li {
    margin-bottom: 13px;
}

.header-navigation > ul li .dropdown-menu li:last-child {
    margin-bottom: 0;
}

.header-navigation > ul li .dropdown-menu li > a {
    font-size: 14px;
    white-space: nowrap;
}

.dropdown {
    position: relative;
}

.dropdown__btn {
    background-color: transparent;
    border: none;
    outline: none;
    position: relative;
    display: none;
}

.dropdown__btn:before {
    content: "\f107";
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    list-style: none;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.94);
}

.btn-nav {
    display: none;
    background: transparent;
    border: none;
    width: 40px;
    margin: 10px 0;
    outline: none;
}

.btn-nav .icon-bar {
    width: 100%;
    height: 2px;
    margin-bottom: 5px;
    background: #000;
    display: block;
}

.btn-nav .icon-bar:last-child {
    margin-bottom: 0;
}

.footer__top {
    border-top: 1px solid #AEC4D9;
    border-bottom: 1px solid #AEC4D9;
    padding: 12px 0;
}

.footer__bottom {
    padding: 22px 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.footer__box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 18px;
}

.footer__logo {
    width: 265px;
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
}

.footer__contact1 {
    width: 430px;
    padding-left: 60px;
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
}

.footer__contact2 {
    padding-left: 20px;
    margin-left: auto;
}

.footer__contact-one {
    margin-bottom: 10px;
}

.footer__phone {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 10px;
}

.phone-one__tel--icon {
    position: relative;
    padding-left: 25px;
}

.phone-one__tel--icon:before {
    content: "";
    background: url("../images/icon-phone.png");
    width: 17px;
    height: 17px;
    position: absolute;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    top: 50%;
    left: 0;
}

.phone-one--messanger {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 11px;
}

.phone-one__messenger-icon {
    font-size: 0;
    margin-left: 4px;
}

.mail-one {
    position: relative;
    padding-left: 21px;
}

.mail-one:before {
    content: "";
    position: absolute;
    background: url("../images/icon-mail.png");
    width: 13px;
    height: 10px;
    top: 50%;
    margin-top: -3px;
    left: 0;
}

.contact-loc {
    padding-left: 19px;
    position: relative;
}

.contact-loc:before {
    content: "";
    position: absolute;
    background: url("../images/icon-loc.png");
    width: 11px;
    height: 15px;
    left: 0;
    top: 6px;
}

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

.contacts__left {
    width: 395px;
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
    padding-right: 50px;
}

.contacts__one {
    line-height: 1.5;
    margin-bottom: 40px;
    font-size: 20px;
}

.contact-form__title {
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    margin-bottom: 35px;
    font-weight: bold;
}

.map-sect {
    height: 650px;
}

.map-sect iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.main-slider__slide {
    background-position: center;
    min-height: 875px;
    padding-top: 130px;
    background-repeat: no-repeat;
}

.main-slider__content {
    max-width: 450px;
}

.main-slider__title {
    font-weight: bold;
    font-size: 35px;
    margin-bottom: 35px;
}

.main-slider__desc {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 115px;
}

.advantages {
    margin-top: -100px;
    position: relative;
    z-index: 1;
}

.advantages__box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-right: 120px;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0 -70px;
}

.advantages__col {
    width: 50%;
    padding: 0px 70px 95px;
    margin-left: auto;
}

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

.advantages__img {
    width: 90px;
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
    padding-right: 25px;
    padding-top: 4px;
}

.advantages__title {
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 25px;
}

.advantages__txt {
    font-size: 14px;
}

.steps{
    background-image: url(../images/bg-steps.jpg);
    min-height: 1040px;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 270px 0px 255px;
    margin-top: -175px;
    color: #ffffff;
}

.steps__title {
    font-size: 35px;
    font-weight: bold;
}

.steps__box {
    position: relative;
    padding-left: 125px;
}

.steps__one {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
}

.steps__one--1 {
    left: 474px;
    top: 4px;
}

.steps__one--2 {
    left: 610px;
    top: 219px;
}

.steps__one--3 {
    left: 696px;
    top: 419px;
}

.steps__one-num {
    background: url("../images/icon-step.png") no-repeat;
    width: 86px;
    height: 86px;
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
    margin-right: 12px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #e40613;
    font-weight: bold;
    font-size: 20px;
}

.steps__one-content {
    max-width: 430px;
}

.steps__one-title {
    font-family: 'Ubuntu', sans-serif;
    font-weight: normal;
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 4px;
}

.steps__one-txt {
    font-size: 14px;
}

.about-us {
    margin-top: -150px;
}

.about-us__txt {
    margin-bottom: 50px;
    font-size: 14px;
    line-height: 1.42;
}

.about-us__btn {
    text-align: right;
}

.form-quastion{
    background-image: url(../images/bg-quastion.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 870px;
    padding-top: 225px;
    margin-top: -100px;
}

.form-quastion .form > * {
    margin-bottom: 35px;
}

.form-quastion .form > *:last-child {
    margin-bottom: 0;
}

.form-quastion__box {
    padding-left: 200px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.form-quastion__title {
    max-width: 380px;
    padding-top: 45px;
}

.form-quastion__form {
    width: 495px;
    margin-left: auto;
    border: 1px solid #e40613;
    padding: 90px 95px;
}

.clients {
    margin-top: -165px;
}

.clients-slider {
    margin: 0 -20px;
}

.clients-slider__slide {
    padding: 0px 20px;
    display: inline-block !important;
    vertical-align: middle;
    float: none !important;
    min-width: 220px;
}

.clients-slider__slide img {
    margin: 0 auto;
}

.clients-slider .slider-nav-btn {
    width: 64px;
    height: 64px;
    -webkit-box-shadow: 0px 8px 13px 0px rgba(234, 28, 51, 0.57);
    box-shadow: 0px 8px 13px 0px rgba(234, 28, 51, 0.57);
    border: none;
    outline: none;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    position: absolute;
    bottom: -140px;
    z-index: 1;
}

.clients-slider .slider-nav-btn:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.clients-slider .slider-nav-btn--left {
    background: url("../images/client-arrow-left.png") no-repeat;
    right: 105px;
}

.clients-slider .slider-nav-btn--left:hover {
    background: url("../images/client-arrow-left-hov.png") no-repeat;
}

.clients-slider .slider-nav-btn--right {
    background: url("../images/client-arrow-right.png") no-repeat;
    right: 0;
}

.clients-slider .slider-nav-btn--right:hover {
    background: url("../images/client-arrow-right-hov.png") no-repeat;
}

.news-slider-sect {
    color: #ffffff;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 965px;
    padding-top: 255px;
}

.news-slider-sect__btn {
    padding-top: 75px;
    text-align: center;
}

.news-slider__slide {
    padding: 0px 10px;
}

.news-slider .slider-nav-btn {
    width: 44px;
    height: 44px;
    -webkit-box-shadow: 0px 8px 13px 0px rgba(234, 28, 51, 0.57);
    box-shadow: 0px 8px 13px 0px rgba(234, 28, 51, 0.57);
    border: none;
    outline: none;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    position: absolute;
    bottom: -90px;
    z-index: 1;
    background-size: contain !important;
}

.news-slider .slider-nav-btn:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.news-slider .slider-nav-btn--left {
    background: url("../images/client-arrow-left.png") no-repeat;
    right: 55px;
}

.news-slider .slider-nav-btn--left:hover {
    background: url("../images/client-arrow-left-hov.png") no-repeat;
}

.news-slider .slider-nav-btn--right {
    background: url("../images/client-arrow-right.png") no-repeat;
    right: 0;
}

.news-slider .slider-nav-btn--right:hover {
    background: url("../images/client-arrow-right-hov.png") no-repeat;
}

.prev-news {
    padding: 17px 16px 40px;
    display: block;
    font-size: 14px;
    background: #ffffff;
}

.prev-news:hover .prev-news__img:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(228, 6, 19, 0.42);
}

.prev-news__img {
    height: 140px;
    background-size: cover;
    margin-bottom: 22px;
    position: relative;
}

.prev-news__title {
    font-weight: bold;
    margin-bottom: 2px;
}

.prev-news__date {
    margin-bottom: 20px;
}

.prev-news__txt {
    line-height: 1.42;
}

.news__one {
    padding: 18px;
    border: 1px solid transparent;
    font-size: 14px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.news__one:hover {
    border-color: #D0D7E0;
}

.news__img {
    width: 340px;
    height: 140px;
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
    margin-right: 33px;
}

.news__content {
    width: 100%;
}

.news__title {
    font-family: 'Ubuntu', sans-serif;
    font-weight: normal;
    font-weight: bold;
    margin-bottom: 2px;
}

.news__date {
    margin-bottom: 22px;
}

.news__txt {
    line-height: 1.42;
}

.news__btn {
    padding-top: 50px;
    text-align: center;
}

.cabinet-money-wrap {
    margin-left: auto;
}

.cabinet-money {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.cabinet-money__sum {
    font-size: 20px;
    color: #e40613;
    font-weight: bold;
    position: relative;
    padding-left: 56px;
}

.cabinet-money__sum:before {
    content: "";
    position: absolute;
    background: url("../images/sprite-icons.png") no-repeat;
    background-position: 68.852% 2.5%;
    width: 39px;
    height: 38px;
    left: 0;
    top: 50%;
    margin-top: -19px;
}

.cabinet-money__btn {
    margin-left: 25px;
}

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

.cabinet__sidebar-col {
    width: 100px;
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
    padding-right: 20px;
}

.cabinet__content-col {
    width: -webkit-calc(100% - 100px);
    width: calc(100% - 100px);
}

.cabinet__title-row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 30px;
}

.sidebar-nav__item {
    list-style: none;
    margin-bottom: 16px;
}

.sidebar-nav__link {
    -webkit-border-radius: 50%;
    border-radius: 50%;
    display: block;
    width: 54px;
    height: 54px;
    background: #e40613;
    position: relative;
    border: 1px solid #e40613;
}

.form-group

.sidebar-nav__link:before {
    content: "";
    position: absolute;
    background: url("../images/sprite-icons.png") no-repeat;
    left: 50%;
    top: 50%;
    margin-left: -16px;
    margin-top: -16px;
}

.sidebar-nav__link.active,
.sidebar-nav__link:hover {
    background: #ffffff;
}

.sidebar-nav__link--order:before {
    background-position: 50.598% 2.381%;
    width: 32px;
    height: 32px;
}

.sidebar-nav__link--order.active:before,
.sidebar-nav__link--order:hover:before {
    background-position: 50.598% 37.302%;
}

.sidebar-nav__link--report:before {
    background-position: 1.594% 2.381%;
    width: 32px;
    height: 32px;
}

.sidebar-nav__link--report.active:before,
.sidebar-nav__link--report:hover:before {
    background-position: 1.594% 37.302%;
}

.sidebar-nav__link--data:before {
    background-position: 26.295% 2.381%;
    width: 32px;
    height: 32px;
}

.sidebar-nav__link--data.active:before,
.sidebar-nav__link--data:hover:before {
    background-position: 26.295% 37.302%;
}

.my-data__box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -10px;
}

.my-data__col {
    width: 50%;
    padding: 0px 10px;
}

.form-data-plushka {
    background: #fcfcfc;
    padding: 40px 15px;
}

.form-data {
    font-size: 14px;
}

.form-data__indent-small {
    margin-bottom: 4px;
}

.form-data__indent-normal {
    margin-bottom: 10px;
}

.form-data__indent-middle {
    margin-bottom: 15px;
}

.form-data__indent-big {
    margin-bottom: 35px;
}

.form-data__row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.form-data__col-50 {
    width: 48%;
}

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

.form-data__one--center {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.form-data__one--center .form-data__one-left {
    padding-top: 0;
}

.form-data__one-left {
    width: 195px;
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
    padding-top: 13px;
}

.form-data__one-right {
    width: 100%;
}

.form-data__name {
    padding-left: 25px;
    position: relative;
}

.form-data__name:before {
    content: "";
    position: absolute;
    left: 0;
    top: 1px;
    background: url("../images/sprite-icons.png") no-repeat;
}

.form-data__name--login:before {
    background-position: -14px -92px;
    width: 13px;
    height: 16px;
}

.form-data__name--full-name:before {
    background-position: -52px -93px;
    width: 14px;
    height: 14px;
}

.form-data__name--inn:before {
    background-position: -13px -118px;
    width: 14px;
    height: 14px;
}

.form-data__name--loc:before {
    background-position: -53px -116px;
    width: 13px;
    height: 18px;
}

.form-data__name--contract:before {
    background-position: -86px -118px;
    width: 12px;
    height: 14px;
}

.form-data__name--mail:before {
    background-position: -82px -95px;
    width: 17px;
    height: 12px;
}

.form-data__name--discount:before {
    background-position: -119px -93px;
    width: 16px;
    height: 16px;
}

.form-data__name--password:before {
    background-position: -119px -118px;
    width: 15px;
    height: 15px;
}

.form-data__name--contact-icon:before {
    background-position: -151px -93px;
    width: 15px;
    height: 16px;
}

.form-data__gray-elem {
    -webkit-border-radius: 23px;
    border-radius: 23px;
    font-size: 14px;
    line-height: 20px;
    padding: 13px 31px;
    padding-right: 60px;
    outline: none;
    background: #dfe3e8;
    border: none;
    display: block;
    width: 100%;
}

.form-data__gray-elem--pen-icon {
    background-image: url("../images/icon-pen.png");
    background-repeat: no-repeat;
    background-position: 94% center;
}

.form-data__gray-elem--ok-icon {
    background-image: url("../images/icon-ok.png");
    background-repeat: no-repeat;
    background-position: 94% center;
}

.form-data__red-elem {
    -webkit-border-radius: 23px;
    border-radius: 23px;
    font-size: 14px;
    line-height: 20px;
    padding: 12px 12px;
    outline: none;
    background: transparent;
    border: 1px solid #e40613;
    display: block;
    width: 100%;
}

.form-data__add-elem-btn {
    border: 1px solid #e40613;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    width: 31px;
    height: 31px;
    display: block;
    margin-left: auto;
    margin-right: 20px;
    position: relative;
}

.form-data__add-elem-btn:before {
    content: "+";
    position: absolute;
    font-size: 22px;
    line-height: 29px;
    color: #e40613;
    width: 100%;
    text-align: center;
    font-weight: bold;
}

.form-data__add-elem-btn:hover {
    background: #e40613;
}

.form-data__add-elem-btn:hover:before {
    color: white;
}

.report-tabs__list {
    list-style: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.report-tabs__item {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    font-size: 20px;
    line-height: 26px;
    padding: 12px 10px;
    font-weight: bold;
    color: #6b6b6b;
    cursor: pointer;
    text-align: center;
    background: #efefef;
    -webkit-box-shadow: 2px -11px 47px 3px rgba(0, 0, 0, 0.1) inset;
    box-shadow: 2px -11px 47px 3px rgba(0, 0, 0, 0.1) inset;
}

.report-tabs__item.is-active {
    -webkit-box-shadow: none;
    box-shadow: none;
    background: #fcfcfc;
    color: #000;
}

.report-tabs__box {
    padding: 37px 14px;
    background: #fcfcfc;
}

.report-tabs__col {
    display: none;
}

.report-tabs__col.is-active {
    display: block;
}

.order__filter {
    background: #b8b8b8;
    padding: 10px 20px;
    margin-bottom: 40px;
}

.order__filter-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.order__filter-select1 {
    width: 375px;
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.order__filter-select2 {
    width: 370px;
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
    padding-left: 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.order__filter-btn {
    width: 100%;
}

.order__filter-txt {
    font-family: 'Ubuntu', sans-serif;
    font-weight: normal;
    margin-right: 8px;
}

.order-table-wrap {
    margin-bottom: 40px;
}

.btn-order-more {
    width: 24px;
    height: 24px;
    background: url("../images/btn-bottom.png") no-repeat;
    display: block;
}

.green-arrow {
    background: url("../images/sprite-icons.png") no-repeat;
    background-position: -186px -51px;
    width: 17px;
    height: 12px;
    display: block;
}

.red-arrow {
    background: url("../images/sprite-icons.png") no-repeat;
    background-position: -229px -51px;
    width: 17px;
    height: 12px;
    display: block;
}

.js-table-toggle-content {
    display: none;
}

.order-table__tr {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 5px;
}

.order-table__tr--gray {
    background: #b8b8b8;
}

.order-table__tr--done {
    background: #faeced;
}

.order-table__tr--stock {
    background: #f4f4f4;
}

.order-table__tr--way {
    background: #e7ebf6;
}

.order-table__tr--in-process {
    background: #eaf8f0;
}

.order-table__th {
    color: #ffffff;
    padding: 6px 0;
    padding-right: 17px;
}

.order-table__th--pay {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.order-table__td {
    font-size: 14px;
    line-height: 20px;
    padding: 5px 0;
}

.order-table__td--pay {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.order-table__td--arrow-icon,
.order-table__th--arrow-icon {
    width: 90px;
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
    padding-left: 11px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.order-table__td--number,
.order-table__th--number {
    width: 140px;
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
    padding-right: 30px;
}

.order-table__td--date-reg,
.order-table__th--date-reg {
    width: 190px;
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
    padding-right: 25px;
}

.order-table__td--status,
.order-table__th--status {
    width: 180px;
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
    padding-right: 25px;
}

.order-table__td--date-done,
.order-table__th--date-done {
    width: 230px;
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
    padding-right: 25px;
}

.order-table__td--cost,
.order-table__th--cost {
    width: 120px;
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
    padding-right: 25px;
}

.order-table__td--pay,
.order-table__th--pay {
    width: 100%;
}

.payd {
    font-size: 14px;
    font-family: 'Ubuntu', sans-serif;
    font-weight: normal;
    color: #4e6f1b;
    position: relative;
    padding-left: 17px;
}

.payd:before {
    content: "";
    position: absolute;
    background: url("../images/sprite-icons.png") no-repeat;
    background-position: -262px -15px;
    width: 13px;
    height: 13px;
    left: 0;
    top: 3px;
}

.total-table__tr {
    margin-bottom: 5px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    background: #f4f4f4;
}

.total-table__tr:first-child {
    background: #d1cccb;
}

.total-table__tr:last-child {
    background-color: transparent;
}

.total-table__tr:last-child .total-table__td {
    font-size: 18px;
    font-weight: bold;
}

.total-table__th {
    color: #ffffff;
    line-height: 20px;
    padding-top: 7px;
    padding-bottom: 7px;
}

.total-table__td {
    font-size: 14px;
    line-height: 20px;
    padding-top: 5px;
    padding-bottom: 5px;
}

.total-table__th--type,
.total-table__td--type {
    padding-left: 40px;
    padding-right: 30px;
    width: 360px;
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
}

.total-table__th--count,
.total-table__td--count {
    padding-right: 20px;
    width: 180px;
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
}

.total-table__th--weight,
.total-table__td--weight {
    padding-right: 20px;
    width: 130px;
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
}

.total-table__th--cost,
.total-table__td--cost {
    padding-right: 20px;
    width: 165px;
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
}

.total-table__th--fond,
.total-table__td--fond {
    padding-right: 20px;
    width: 100%;
}

.title-table {
    font-size: 20px;
    font-family: 'Ubuntu', sans-serif;
    font-weight: normal;
    font-weight: bold;
    margin-bottom: 30px;
}

.header__sticky-add .my-btn--call-back {
    display: none;
}

.individ-table--gray .individ-table__td {
    background: #f4f4f4;
}

.individ-table__tr {
    background: #edf8f1;
    margin-bottom: 3px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.individ-table__tr--dark {
    background: #b8b8b8;
    margin-bottom: 6px;
}

.individ-table__th {
    line-height: 20px;
    color: #ffffff;
    padding-top: 12px;
    padding-bottom: 12px;
}

.individ-table__td {
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: 14px;
    line-height: 20px;
    width: 100%;
}

.individ-table__th--type,
.individ-table__td--type {
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
    width: 350px;
    padding-left: 40px;
    padding-right: 30px;
}

.individ-table__th--limit,
.individ-table__td--limit {
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
    width: 255px;
    padding-right: 30px;
}

.individ-table__th--status,
.individ-table__td--status {
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
    width: 200px;
    padding-right: 20px;
}

.individ-table__th--count,
.individ-table__td--count {
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
    width: 190px;
    padding-right: 15px;
}

.individ-table2 {
    margin-top: 5px;
}

.individ-table2__tr {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 4px;
    background: #ececec;
}

.individ-table2__tr:first-child {
    background: #d0cccc;
}

.individ-table2__th {
    color: #ffffff;
    font-size: 16px;
    line-height: 20px;
    padding-top: 8px;
    padding-bottom: 8px;
}

.individ-table2__td {
    font-size: 14px;
    line-height: 20px;
    padding-top: 3px;
    padding-bottom: 3px;
}

.individ-table2__td--name,
.individ-table2__th--name {
    width: 68%;
    padding-left: 22px;
    padding-right: 30px;
}

.individ-table2__td--status,
.individ-table2__th--status {
    width: 32%;
    padding-right: 30px;
}

.fond-one {
    margin-bottom: 30px;
}

.fond-one:last-child {
    margin-bottom: 0;
}

.table-pay__tr {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 5px;
}

.table-pay__tr:first-child {
    background: #b8b8b8;
}

.table-pay__tr--in {
    background: #eaf8f0;
}

.table-pay__tr--out {
    background: #faeced;
}

.table-pay__th {
    color: #ffffff;
    line-height: 20px;
    padding-top: 13px;
    padding-bottom: 13px;
}

.table-pay__td {
    font-size: 14px;
    line-height: 20px;
    padding-top: 5px;
    padding-bottom: 5px;
}

.table-pay__td--date,
.table-pay__th--date {
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
    padding-right: 25px;
    padding-left: 43px;
    width: 250px;
}

.table-pay__td--time,
.table-pay__th--time {
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
    padding-right: 25px;
    width: 215px;
}

.table-pay__td--number,
.table-pay__th--number {
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
    padding-right: 25px;
    width: 205px;
}

.table-pay__td--summ,
.table-pay__th--summ {
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
    padding-right: 25px;
    width: 225px;
}

.table-pay__td--pay,
.table-pay__th--pay {
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
    padding-right: 25px;
}

.period-pay {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    background: #b8b8b8;
    padding: 10px 30px;
    margin-bottom: 40px;
}

.period-pay__col {
    margin-right: 25px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.period-pay__txt {
    font-family: 'Ubuntu', sans-serif;
    font-weight: normal;
    margin-right: 15px;
}

.period-pay__date input {
    -webkit-border-radius: 30px;
    border-radius: 30px;
    line-height: 20px;
    padding: 11px 16px;
    background: #e5e5e5;
    border: none;
}

.request-fond__box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -18px 40px;
}

.request-fond__col {
    width: 50%;
    padding: 0px 18px;
}

.request-table__tr {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background: #f4f4f4;
    margin-bottom: 3px;
}

.request-table__tr:first-child {
    background: #b8b8b8;
}

.request-table__th {
    color: #ffffff;
    line-height: 20px;
    padding-top: 12px;
    padding-bottom: 12px;
}

.request-table__td {
    padding-top: 6px;
    padding-bottom: 6px;
    padding-right: 20px;
    font-size: 14px;
}

.request-table__td,
.request-table__th {
    padding-left: 20px;
}

.request-table__td--type,
.request-table__th--type {
    width: 60%;
}

.request-table__td--limit,
.request-table__th--limit {
    width: 40%;
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
}

.form-order {
    padding-left: 15px;
    padding-right: 15px;
}

.form-order__one {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 13px;
}

.form-order__left {
    padding-top: 11px;
    width: 215px;
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
}

.form-order__right {
    width: 100%;
}

.form-order__label {
    font-size: 14px;
    padding-left: 25px;
    position: relative;
}

.form-order__label:before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    background: url("../images/sprite-icons.png") no-repeat;
}

.form-order__label--weight:before {
    background-position: -12px -139px;
    width: 17px;
    height: 14px;
}

.form-order__label--contact-face:before {
    background-position: -14px -92px;
    width: 13px;
    height: 16px;
}

.form-order__label--contacts-data:before {
    background-position: -13px -118px;
    width: 14px;
    height: 14px;
}

.form-order__label--loc:before {
    background-position: -53px -116px;
    width: 13px;
    height: 18px;
    top: 0;
}

.form-order__label--date:before {
    background-position: -48px -139px;
    width: 17px;
    height: 17px;
    top: 0;
}

.form-order__label--time:before {
    background-position: -84px -139px;
    width: 17px;
    height: 17px;
    top: 0;
}

.form-order__label--comment:before {
    background-position: -119px -138px;
    width: 16px;
    height: 16px;
}

.form-order__btn {
    width: 410px;
    padding-top: 25px;
}

.form-elem__dark {
    -webkit-border-radius: 23px;
    border-radius: 23px;
    font-size: 14px;
    line-height: 20px;
    padding: 11px 22px;
    outline: none;
    background: #E5E5E5;
    border: none;
    display: block;
    width: 100%;
}

.form-elem__dark--textarea {
    min-height: 90px;
    resize: vertical;
}

.form-elem__dark--big {
    font-weight: bold;
    padding: 18px 40px;
    -webkit-border-radius: 35px;
    border-radius: 35px;
}

.clean-table-one {
    margin-bottom: 40px;
}

.clean-table-one:last-child {
    margin-bottom: 0;
}

.clean-total-sum {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding-top: 20px;
    margin-bottom: 35px;
    padding-right: 30px;
}

.clean-total-sum__txt {
    margin-left: 95px;
    font-family: 'Ubuntu', sans-serif;
    font-weight: normal;
    font-weight: bold;
    font-size: 20px;
}

.clean-table__tr {
    background: #F4F4F4;
    margin-bottom: 4px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.clean-table__tr:first-child {
    background: #b8b8b8;
    margin-bottom: 6px;
}

.clean-table__th {
    line-height: 20px;
    color: #ffffff;
    padding-top: 20px;
    padding-bottom: 20px;
}

.clean-table__td {
    padding-top: 4px;
    padding-bottom: 4px;
    font-size: 14px;
    line-height: 20px;
    padding-right: 20px;
}

.clean-table__th--type,
.clean-table__td--type {
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
    padding-left: 20px;
    width: 285px;
}

.clean-table__th--limit,
.clean-table__td--limit {
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
    width: 180px;
}

.clean-table__th--use,
.clean-table__td--use {
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
    width: 220px;
}

.clean-table__th--count,
.clean-table__td--count {
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
    width: 175px;
}

.clean-table__th--cost,
.clean-table__td--cost {
    padding-right: 45px;
    text-align: right;
}

.popup {
    padding: 40px 35px 45px;
    background: #ffffff;
    width: 505px;
    display: none;
}

.popup--big {
    width: 715px;
}

.popup__form {
    padding-left: 40px;
    padding-right: 40px;
}

.popup__title {
    text-align: center;
    font-size: 35px;
    margin-bottom: 55px;
    font-family: 'Ubuntu', sans-serif;
    font-weight: normal;
    font-weight: bold;
    line-height: 1.1;
}

.popup__form > * {
    margin-bottom: 32px;
}

.popup__form > *:last-child {
    margin-bottom: 0;
}

.btn-txt {
    font-weight: bold;
    text-decoration: underline;
}

.btn-txt:hover {
    text-decoration: none;
}

/*******media**********/
@media (min-width: 1100px) {
    .dropdown:hover > .dropdown-menu {
        display: block;
    }

    .dropdown .dropdown:hover .dropdown__btn {
        display: block;
    }
}

.page-box {
    overflow-x: hidden;
}

@media (max-width: 768px) {
    .page-box {
        overflow-x: initial;
    }
}


@media screen and (max-width: 1250px) {
    .wrapper {
        width: 970px;
    }

    .header__box {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .header__logo {
        margin-bottom: 20px;
        width: 100%;
        text-align: center;
    }

    .header__box {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .header__btn {
        padding-top: 20px;
    }

    .sticky .header__sticky-add {
        padding-left: 70px;
    }

    .footer__box {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .footer__logo {
        width: 100%;
        margin-bottom: 15px;
        text-align: center;
    }

    .steps__one--1 {
        left: 371px;
    }

    .steps__box {
        padding-left: 30px;
    }

    .steps__one--2 {
        left: 500px;
    }

    .steps__one--3 {
        left: 589px;
        top: 415px;
    }

    .form-quastion__box {
        padding-left: 105px;
    }

    .my-data__box {
        margin: 0;
        display: block;
    }

    .my-data__col {
        width: 100%;
        padding: 0;
        margin-bottom: 20px;
    }

    .order__filter-select2 {
        width: 220px;
        display: block;
    }

    .order__filter-select1 {
        width: 220px;
        display: block;
    }

    .order__filter-txt {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .order__filter-box {
        -webkit-box-align: end;
        -webkit-align-items: flex-end;
        -ms-flex-align: end;
        align-items: flex-end;
    }

    .table-scroll {
        overflow: auto;
    }

    .table-scroll__width {
        width: 1042px;
    }

    .title-table {
        min-height: 54px;
    }
}

@media screen and (max-width: 991px) {
    .wrapper {
        width: 750px;
    }

    .contact-loc:before {
        position: relative;
        display: inline-block;
        vertical-align: top;
        top: 4px;
        margin-right: 4px;
    }

    .footer__box {
        text-align: center;
    }

    .popup {
        width: 290px;
    }

    .popup__title {
        margin-bottom: 30px;
        font-size: 24px;
    }

    .popup__form {
        padding-left: 0;
        padding-right: 0;
    }

    .popup__form > * {
        margin-bottom: 15px;
    }

    .form-elem__dark--big {
        padding: 12px 40px;
    }

    .my-btn--big {
        padding: 12px 20px;
    }

    .popup__form .personal-data {
        font-size: 11px;
    }

    .request-fond__box {
        display: block;
    }

    .request-fond__col {
        width: 100%;
    }

    .title-table {
        min-height: initial;
    }

    .period-pay__col {
        margin-right: 15px;
    }

    .period-pay {
        padding: 10px 20px;
    }

    .contacts__box {
        display: block;
    }

    .contacts__left {
        padding-right: 0;
        width: 100%;
    }

    .cabinet__title-row {
        display: block;
    }

    .cabinet__title-row .title {
        margin-bottom: 20px !important;
    }

    .steps__title {
        position: relative;
    }

    .steps__title:before {
        content: "3";
        position: absolute;
        left: -72px;
        top: 8px;
        color: white;
        font-size: 100px;
        line-height: .8;
    }

    .sticky .header__sticky-add {
        padding-left: 30px;
    }

    .footer__contact1 {
        width: 100%;
    }

    .footer__contact2 {
        width: 100%;
        margin-left: 0;
    }

    .footer__box {
        width: 400px;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .footer__contact1 {
        padding-left: 0;
    }

    .footer__contact2 {
        padding-left: 0;
    }

    .footer__box {
        margin: 0 auto;
    }

    .main-slider__slide {
        min-height: 650px;
        padding-top: 65px;
    }

    .advantages {
        margin-top: -20px;
    }

    .advantages__box {
        margin: 0;
    }

    .advantages__col {
        padding: 0px 0px 45px;
        width: 100%;
    }

    .steps {
        margin-top: -100px;
    }

    .steps__one--3 {
        left: 264px;
        top: 416px;
    }

    .steps__one--2 {
        left: 392px;
        top: 211px;
    }

    .steps__one--1 {
        left: 266px;
    }

    .steps__title:before {
        left: 0;
        font-size: 80px;
    }

    .steps__title {
        padding-left: 56px;
        font-size: 28px;
    }

    .steps__box {
        padding-top: 30px;
    }

    .form-quastion__form {
        width: 340px;
        padding: 70px 30px;
    }

    .form-quastion__title {
        padding-right: 20px;
    }

    .form-quastion__box {
        padding-left: 0;
    }

    .header-navigation > ul > li > a {
        font-size: 13px;
    }
}

@media screen and (max-width: 767px) {
    .wrapper {
        width: 450px;
    }

    .clean-table__th--type,
    .clean-table__td--type {
        width: 160px;
    }

    .clean-table__th--limit,
    .clean-table__td--limit {
        width: 125px;
    }

    .clean-table__th--use,
    .clean-table__td--use {
        width: 175px;
    }

    .clean-table.table-scroll__width {
        width: 780px;
    }

    .order-table__td--arrow-icon,
    .order-table__th--arrow-icon {
        width: 50px;
    }

    .order-table__td--number,
    .order-table__th--number {
        width: 110px;
        padding-right: 15px;
    }

    .order-table__td--status,
    .order-table__th--status {
        width: 150px;
    }

    .order-table__td--date-done,
    .order-table__th--date-done {
        width: 160px;
    }

    .order-table.table-scroll__width {
        width: 885px;
    }

    .total-table__th--type,
    .total-table__td--type {
        width: 160px;
    }

    .total-table__th--count,
    .total-table__td--count {
        width: 135px;
    }

    .total-table__th--weight,
    .total-table__td--weight {
        width: 115px;
    }

    .total-table__th--cost,
    .total-table__td--cost {
        width: 130px;
    }

    .total-table.table-scroll__width {
        width: 700px;
    }

    .table-pay__td--date,
    .table-pay__th--date {
        width: 150px;
        padding-left: 20px;
    }

    .table-pay__td--time,
    .table-pay__th--time {
        width: 85px;
    }

    .table-pay__td--number,
    .table-pay__th--number {
        width: 125px;
    }

    .table-pay__td--summ,
    .table-pay__th--summ {
        width: 125px;
    }

    .table-pay.table-scroll__width {
        width: 630px;
    }

    .individ-table__th--type,
    .individ-table__td--type {
        width: 175px;
        padding-left: 20px;
    }

    .individ-table__th--limit,
    .individ-table__td--limit {
        width: 125px;
    }

    .individ-table__th--status,
    .individ-table__td--status {
        width: 170px;
    }

    .individ-table__th--count,
    .individ-table__td--count {
        width: 130px;
    }

    .individ-table.table-scroll__width {
        width: 655px;
    }

    .individ-table2.table-scroll__width {
        width: 100%;
    }

    .request-fond__col {
        margin-bottom: 40px;
    }

    .period-pay {
        display: block;
    }

    .period-pay__col {
        margin-right: 0;
        display: block;
    }

    .period-pay__txt {
        margin-bottom: 5px;
    }

    .period-pay__col {
        margin-bottom: 20px;
    }

    .period-pay__col:last-child {
        margin-bottom: 0;
    }

    .form-order__one {
        display: block;
    }

    .form-order__left {
        width: 100%;
        margin-bottom: 5px;
    }

    .form-order__btn {
        width: 100%;
    }

    .report-tabs__list {
        display: block;
    }

    .clean-total-sum {
        display: block;
    }

    .clean-total-sum__txt {
        margin-left: 0;
    }

    .request-fond__box {
        display: block;
    }

    .form__col-50 {
        width: 100%;
    }

    .order__filter-box {
        display: block;
    }

    .order__filter-select2 {
        width: 100%;
        margin-bottom: 15px;
        padding-left: 0;
    }

    .order__filter-select .select-wrap .jq-selectbox .jq-selectbox__select {
        width: 100%;
    }

    .report-tabs__item {
        font-size: 16px;
    }

    .indent-t-b {
        padding: 45px 0;
    }

    .indent-b {
        padding-bottom: 45px;
    }

    .order__filter-select1 {
        width: 100%;
        margin-bottom: 15px;
    }

    .map-sect {
        height: 350px;
    }

    .contacts__one {
        margin-bottom: 25px;
    }

    .cabinet__box {
        display: block;
    }

    .cabinet__sidebar-col {
        width: 100%;
        padding-right: 0;
        margin-bottom: 30px;
    }

    .sidebar-nav__list {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }

    .sidebar-nav__item {
        margin-bottom: 0;
        margin-right: 10px;
    }

    .cabinet__content-col {
        width: 100%;
    }

    .form-data__one {
        display: block;
    }

    .form-data__one-left {
        width: 100%;
        margin-bottom: 5px;
        padding-top: 0;
    }

    .main-slider__slide {
        min-height: 652px;
    }

    .advantages__box {
        padding-right: 0;
    }

    .advantages {
        margin-top: 0;
    }

    .steps {
        margin-top: -25px;
        padding: 70px 0;
        background: url("../images/bg-steps-small.jpg") no-repeat !important;
        min-height: 815px;
    }

    .steps__box {
        padding-left: 0;
    }

    .steps__title:before {
        top: 4px;
    }

    .steps__title {
        margin-bottom: 50px;
    }

    .steps__one {
        position: relative;
        left: auto;
        top: auto;
        bottom: auto;
        right: auto;
        margin-bottom: 45px;
    }

    .about-us {
        margin-top: -60px;
    }

    .title {
        margin-bottom: 40px;
        line-height: 1.2;
        font-size: 31px;
    }

    .form-quastion__box {
        display: block;
    }

    .form-quastion__title {
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 30px;
        padding-top: 0;
    }

    .form-quastion__title .title {
        text-align: center;
    }

    .form-quastion__form {
        margin: 0 auto;
    }

    .footer__top {
        display: none;
    }

    .clients {
        padding-top: 70px;
        margin: 0;
    }

    .clients-slider .slider-nav-btn {
        width: 45px;
        height: 45px;
        background-size: contain !important;
        bottom: -65px;
    }

    .news-slider-sect {
        min-height: 800px;
        padding-top: 200px;
    }

    .news-slider-sect__btn {
        padding-top: 40px;
    }

    .news-slider .slider-nav-btn {
        bottom: auto;
        top: -75px;
    }

    .clients-slider .slider-nav-btn--left {
        right: 60px;
    }

    .form-quastion {
        background: #DFE3E8 !important;
        margin-top: 60px;
        padding-top: 70px;
        padding-bottom: 70px;
        min-height: initial;
    }

    .header__sticky-add .my-btn {
        width: 30px;
        font-size: 25px;
        line-height: 28px;
        padding: 0;
        height: 30px;
    }

    .cabinet-money__sum {
        font-size: 16px;
    }

    .header__bottom {
        padding: 5px 0;
    }

    .header__sticky-add .cabinet-money__sum {
        padding-left: 35px;
    }

    .header__sticky-add .cabinet-money__sum:before {
        background-size: 140px 77px;
        width: 21px;
        height: 20px;
        margin-top: -11px;
    }

    .cabinet-money__btn {
        margin-left: 15px;
    }

    .header__sticky-add .cabinet-money {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }

    .header__sticky-add .cabinet-money__sum {
        margin-bottom: 0;
    }

    .header__sticky-add .cabinet-money__btn {
        margin-left: 10px;
    }

    .header__social {
        padding-top: 20px;
    }

    .wrap-txt-block img {
        display: block;
        float: none !important;
        margin: 0 auto 15px !important;
        height: inherit !important;
    }

    .wrap-txt-block iframe {
        width: 450px;
        height: 300px;
    }

    .btn-nav {
        display: block;
    }

    .header-navigation {
        display: none;
        position: absolute;
        width: 100%;
        left: 0;
        top: 100%;
        padding: 20px 50px;
        background: #e40613;
        max-height: 80vh;
        overflow: auto;
    }

    .header-navigation > ul {
        display: block;
    }

    .header-navigation > ul > li > a {
        font-size: 14px;
        line-height: 1.4;
        padding: 5px 0px;
        color: #ffffff;
    }

    .dropdown-menu {
        position: relative;
        top: auto;
    }

    .dropdown__btn {
        display: inline-block;
        vertical-align: middle;
    }

    .header-navigation > ul li .dropdown-menu li {
        margin-bottom: 5px;
    }

    .header-navigation > ul li .dropdown-menu li > a {
        font-size: 13px;
    }

    .fancybox-nav span {
        visibility: visible;
    }

    .news__one {
        display: block;
    }

    .news__img {
        margin-bottom: 15px;
        width: 100%;
    }

    .footer {
        -webkit-box-shadow: 3px -1px 10px 0px rgba(0, 0, 0, 0.15);
        box-shadow: 3px -1px 10px 0px rgba(0, 0, 0, 0.15);
    }

    .cabinet__title-row {
        display: none;
    }
}

@media screen and (max-width: 479px) {
    .wrapper {
        width: 310px;
    }

    .popup {
        width: 280px;
        padding: 35px 25px 35px;
    }

    .fancybox-close {
        top: -8px;
        right: -8px;
    }

    .request-table__td--type,
    .request-table__th--type {
        width: 45%;
        -webkit-box-flex: 0;
        -webkit-flex: none;
        -ms-flex: none;
        flex: none;
    }

    .cabinet-money {
        display: block;
    }

    .cabinet-money__sum {
        margin-bottom: 20px;
    }

    .cabinet-money__btn {
        margin-left: 0;
    }

    .form-data__row {
        display: block;
    }

    .form-data__col-50 {
        width: 100%;
        margin-bottom: 5px;
    }

    .main-slider__desc {
        margin-bottom: 40px;
    }

    .main-slider__slide {
        min-height: initial;
        padding-bottom: 60px;
    }

    .advantages {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .advantages__img {
        width: 55px;
        padding-right: 15px;
    }

    .advantages__title {
        margin-bottom: 10px;
    }

    .advantages__col {
        padding-bottom: 30px;
    }

    .header__contact {
        width: 100%;
        padding-left: 0;
        display: none;
    }

    .header__social {
        display: none;
    }

    .header__phone {
        display: block;
        text-align: center;
    }

    .header__phone .phone-one {
        margin-bottom: 10px;
    }

    .header__mail {
        text-align: center;
    }

    .header__btn {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding-top: 20px;
        display: none;
    }

    .header__logo {
        margin-bottom: 0;
    }

    .header__btn-enter {
        width: initial;
        margin-right: 10px;
    }

    .header__btn-call-back {
        width: initial;
        margin-left: 10px;
    }

    .header__logo img {
        width: 200px;
    }

    .header .phone-one--messanger {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .btn-enter {
        font-size: 0;
        width: 42px;
        padding-right: 0px;
        padding-left: 0;
        min-width: initial;
    }

    .btn-enter:before {
        margin-left: 0;
        left: 10px;
    }

    .header .my-btn--call-back {
        font-size: 0;
        width: 42px;
        height: 42px;
        padding-right: 0px;
        padding-left: 0;
        min-width: initial;
        position: relative;
    }

    .header .my-btn--call-back:before {
        content: "\f095";
        display: inline-block;
        font: normal normal normal 14px/1 FontAwesome;
        font-size: inherit;
        text-rendering: auto;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        position: absolute;
        color: #ffffff;
        font-size: 20px;
        left: 13px;
        top: 12px;
    }

    .wrap-txt-block iframe {
        width: 100%;
        height: 200px;
    }

    .header-navigation {
        padding: 20px 25px;
    }

    .btn-sticky-left {
        margin-right: 0;
    }

    .footer__box {
        width: 100%;
    }

    .footer__phone {
        display: block;
    }

    .phone-one--messanger {
        -webkit-box-pack: start;
        -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        padding-top: 10px;
    }

    .steps__one {
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
        margin-bottom: 30px;
    }

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

    .form-quastion__form {
        width: 100%;
    }

    .steps__one-num {
        position: relative;
        top: 5px;
        width: 50px;
        height: 50px;
        background-size: contain;
    }

    .steps {
        background: #4D6E97 !important;
        min-height: initial;
    }

    .steps__box {
        padding-top: 0;
    }

    .about-us {
        margin-top: 0;
        padding-top: 60px;
    }

    .clients-slider {
        margin: 0;
    }

    .my-btn--fix-size {
        width: 100%;
    }

    .form__col-50 {
        padding: 0px 15px 15px;
    }

    .cabinet-money__sum {
        display: inline-block;
        vertical-align: top;
        text-align: left;
    }

    .cabinet-money {
        display: inline-block;
        vertical-align: top;
    }

    .sidebar-nav__list {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

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

    .cabinet__title-row .title--left {
        text-align: center;
        margin-bottom: 40px !important;
    }

    .footer .phone-one--messanger {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .header__sticky-add .btn-exit {
        font-size: 0;
        width: 42px;
        padding-right: 5px;
    }

    .header__bottom-box {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .sticky .header__sticky-add {
        padding-left: 0;
    }

    .header__sticky-add {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        padding-left: 0px;
        margin-left: auto;
    }

    .header__sticky-add > * {
        margin-left: 10px;
    }

    .header__sticky-add .my-btn--call-back {
        display: block;
    }

    .footer__logo img {
        width: 200px;
    }
}


.application .title-table {
    font-size: 18px;
}

.application .title {
    font-size: 30px;
    margin-bottom: 20px;
}

.application .clean-table__tr:first-child {
    background: #fff;
}

.application .clean-table__tr {
    background: #fff;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.06);
    border-radius: 2px;
    min-height: 115px;
    height: 100%;
    padding: 0px 26px 10px 28px;
}

.application .order__text {
    font-weight: 600;
    font-size: 14px;
    line-height: 19px;

}

.color-gray {
    color: #999999;
}

.application .order__title {
    font-weight: 600;
    font-size: 18px;
    line-height: 25px;
    padding-left: 0 !important;
    margin-top: 0;
}

.application .order-unit:first-child {

}

.application .clean-table__td.clean-table__td--cost {
    font-weight: 600;
    font-size: 18px;
    line-height: 25px;
    text-align: right;
    color: #000000;
}

.application .clean-total-sum__content {
    display: flex;
}

.application .form-order__right {
    width: 55%;
}

.application .form-order__one {
    justify-content: space-between;
    padding: 0 30px;
}

.application .form-order__left {
    padding-left: 25px;
}

.application .form-order__right {
    padding-right: 5px;
}

.application .form-order__btn button {
    width: 210px;
}

.application .order-box {
    margin-bottom: 50px;
}

.application .clean-table__tr {
    margin-bottom: 15px !important;
}

.application .jq-number__field {
    box-shadow: none !important;
}

.application .input-count .jq-number__spin:after {
    font-size: 18px;
}

.application .input-count .jq-number__spin.plus:after {
    right: 0;
}

.application .select-wrap .jq-selectbox .jq-selectbox__select {
    width: 100% !important;
}

.application .clean-table__tr {
    justify-content: space-between;
}

.application .clean-table__td--cost {
    padding-right: 0;
}

.application .application-block {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
}

@media (max-width: 900px) {
    .application .application-block {
        justify-content: flex-start;
    }

    .absolute-text {
        left: -3px !important;
    }
}

.application .clean-table__td--count {
    width: 145px;
}

.absolute-text {
    position: absolute;
    bottom: -18px;
    left: 13px;
}

.red-circle {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #D02E26 !important;
    margin-top: 0px
}

.application__content-block {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.red__text {
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 12px;
    line-height: 19px;
    color: #D02E26 !important;
    white-space: nowrap;
}

.application-block__first {
    margin-right: 32px;
}

.application .application-block {
    max-width: 220px;
    width: 100%;
}

.application .clean-table__td--limit {
    width: auto;
    padding-right: 27px;
    color: #999999;
}

.application .order-unit {
    padding-left: 27px;
}

.application .order-unit:first-child {
    padding-left: 0;
}

.application .table-scroll__width {
    width: auto;
}

.order .report-tabs__box {
    padding: 37px 0;
}

.wrapper-full {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0;
}

.order__contenttab .report-tabs__box {
    background: #fff;
}

.order__wrapper {
    max-width: 1067px;
    margin: 0 auto;
}

.hide-pc {

}

.hide-mob {
    display: none !important;
}

.order__roster-picture {
    height: 24px;
}

.application .table-scroll__width {
    margin-bottom: 30px;
}

@media (max-width: 900px) {

    .application__content-block {
        flex-direction: column;
    }

    .application .clean-table__tr {
        min-height: 165px;
        padding-bottom: 24px !important;
    }

    .application .order-block {
        margin-bottom: 18px;
    }

    .application .clean-table__tr {
        align-items: flex-start;
        padding-top: 26px;
    }

    .application .clean-table__th--type, .clean-table__td--type {
        width: auto;
    }

}

@media (max-width: 1024px) {
    .form-order__right-new .select-wrap .jq-selectbox .jq-selectbox__select {
        max-width: 320px !important;
        width: 100% !important;
    }

    .form-order__right-new .select-wrap .jq-selectbox {
        width: 250px;
    }

    .application .form-order__right {
        width: 65%;
    }

    .none-tablet {
        display: none;
    }

    .application .table-scroll__width {
        margin-bottom: 20px;
    }
}

.select-wrap .jq-selectbox .jq-selectbox__select {
    padding-top: 9px;
}

.order__roster:hover, .order__profile:hover {
    background: #a01019;
    transition: .3s;
}

.order__roster-active:hover {
    background: #231F20;
    transition: .3s;
}

.order__profile-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.order__profile img {
    margin-right: 5px;
}

@media (max-width: 768px) {
    .form-order__right.form-order__right-new .form-elem__text {
        margin-top: 33px;
        margin-left: 0 !important;
        margin-bottom: 10px;
    }
    .form-order__right-calendar {
        opacity: 1;
    }
    .application .form-order__btn {
        padding-left: 0;
        padding-top: 35px;
    }

    .day-text {
        right: 40px !important;
    }

    .form-order__left.form-order__left-new img {

    }

    .form-order__right-new .select-wrap .jq-selectbox .jq-selectbox__select {
        max-width: none !important;
        width: 100% !important;
    }

    .form-order__right-new .jq-selectbox.jqselect.form-control {
        width: 100%;
    }

    .form-order__right-new .form-group {
        width: 100%;
    }

    .w-100_mob {
        width: 100%;
    }

    .form-order__right.form-order__right-new {
        flex-direction: column;
    }

    .order__profile img {
        margin-right: 0;
    }

    .order__profile {
        margin-left: 0;
    }

    .order__profile-wrap {
        width: 60px;
        height: 51px;
        display: flex;
        align-items: center;
        justify-content: center;

    }

    .application .table-scroll__width {
        margin-bottom: 10px;
    }

    .breadcrumbs li a {
        font-weight: 400;
        font-size: 14px;
        line-height: 16px;
    }

    .none-mobile {
        display: none;
    }

    .application .form-order__one-contacts .form-elem__dark--textarea {
        height: 42px;
        min-height: auto;
    }
    ::-webkit-calendar-picker-indicator {
        filter: invert(14%) sepia(47%) saturate(7498%) hue-rotate(349deg) brightness(100%) contrast(111%);
    }

    .application .form-order__btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .application .clean-total-sum__content {
        display: flex;
        flex-direction: column;
        text-align: right;
    }

    .application .form-order__right {
        width: 100% !important;
    }

    .form-order__right input[type=date]::-webkit-calendar-picker-indicator, .form-group input[type=date]::-webkit-calendar-picker-indicator {
        opacity: 0;
        position: relative;
    }
    .form-order__right input[type=date]::-webkit-calendar-picker-indicator, .form-group input[type=date]::-webkit-calendar-picker-indicator::after {
        position: absolute;

    }

    .application .form-order__one {
        margin-bottom: 0;
        padding: 0;
    }

    .application .form-order__left {
        padding-left: 0;
    }

    .application .form-order__right .form-elem label {
        font-weight: 400;
        font-size: 14px;
        line-height: 19px;
    }

    .application .clean-total-sum__txt {
        font-weight: 800;
        font-size: 18px;
        line-height: 25px;
    }

    .application .clean-total-sum {
        font-weight: 800;
        font-size: 18px;
        line-height: 25px;
        margin-bottom: 0;
        padding: 0;
    }

    .order__roster-picture:first-child {
        padding-top: 2px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .order__profile-dropdown {
        top: 52px !important;
        width: 200px;
    }

    .application .form-order__label.form-order__label--contacts-data {
        font-weight: 600;
        font-size: 14px;
        line-height: 16px;
    }

    .breadcrumbs {
        font-weight: 400;
        font-size: 14px;
        line-height: 16px;
    }

    .breadcrumbs-sect {
        padding-top: 13px;
        padding-bottom: 10px;
    }

    .breadcrumbs-sect .wrapper {
        width: 100%;
        padding: 0 16px;
    }

    .hide-pc {
        display: none !important;
    }

    .header-new .header__wrapper {
        width: 100% !important;
        padding: 0 18px !important;
    }

    .hide-mob {
        display: block !important;
    }

    .header-new .navbar-header {
        display: flex;
        align-items: center;
        justify-content: space-between !important;
    }

    .header-new .header__btn {
        padding-top: 0 !important;
        width: auto !important;
    }

    .header-new .header__btn-enter {
        width: auto !important;
    }

    .header-new .header__logo img {
        width: 175px;
    }

    .header-new .header__logo {
        margin-bottom: 8px !important;
    }

    .header-new .btn-exit {
        font-weight: 400;
        font-size: 14px;
        line-height: 19px;
        padding-left: 38px;
    }

    .header-new .btn-exit:before {
        left: 6px;
    }

    .application .clean-table__td.clean-table__td--type.order__title {
        font-weight: 600;
        font-size: 18px;
        line-height: 25px;
    }

    .application .order__text {
        font-weight: 600;
        font-size: 12px;
        line-height: 16px;
    }

    .application .order-unit:first-child {
        padding-right: 19px;
    }

    .application .order-unit {
        padding-left: 19px;
    }

    .application .form-order__label:before {

    }

    .order .jq-selectbox__select-text {
        margin-right: 10px;
    }

    .fund__item-dropdown-head-title {
        display: none;
    }

    .fund__item-dropdown-head-parameters:first-child .fund__item-dropdown-head-title {
        display: block !important;
    }

    .fund__item-dropdown {
        padding: 15px 8px;
    }

    .fund__item {
        padding-left: 13px;
        padding-right: 13px;
    }

    .fund__item-dropdown-row-descr {
        font-size: 12px;
        line-height: 16px;
    }

    .fund__item-dropdown-head-parameters:nth-child(1), .fund__item-dropdown-head-parameters:nth-child(2), .fund__item-dropdown-head-parameters:nth-child(3) {
        width: auto;
    }

    .fund__item-dropdown-head-parameters:nth-child(3) {
        width: 100px;
    }

    .fund__item-dropdown-row-descr:nth-child(3) {
        width: 100px;
    }

    .fund__item-dropdown-row-descr:nth-child(1), .fund__item-dropdown-head-parameters:nth-child(1) {
        width: 400px;
    }

    .fund__item-dropdown-row-descr:nth-child(2), .fund__item-dropdown-head-parameters:nth-child(2) {
        width: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.application .clean-table__td.clean-table__td--limit {
    font-weight: 600;
}

@media (max-width: 650px) {

    #week_days span label {
        font-size: 16px !important;
    }

    .application .clean-table__tr {
        flex-direction: column;
        min-height: 210px;
        padding-top: 14px;
        padding-left: 13px;
        padding-bottom: 13px;
        height: 100%;
    }

    .application-block.application-block__next {
        margin-top: 10px !important;
        justify-content: space-between !important;
    }

    .application .application-block {
        max-width: none;
    }

    .application .clean-table__tr {
        justify-content: normal;
    }

    .application-block__next {
        width: 100%;
        justify-content: space-between;
    }
}
.form-order__one.form-order__one-contacts .form-elem__dark--textarea {
    height: 42px;
    min-height: auto;
}
@media (max-width: 479px) {
    .fund__item-dropdown-row-descr {
        font-size: 11px;
    }
    .fund__item-dropdown-row-descr:nth-child(3) {
        width: 25%;
    }
    .header-new .header__sticky-add {
        display: none !important;
    }

    .header-new nav.header__nav {
        width: 100%;
    }

    .header-new .wrapper.header__wrapper {
        padding: 0 13px !important;
    }

    .header-new .header__btn-enter {
        margin-right: 0;
    }

    .header-new .header__top {
        padding: 15px 0;
    }

    .fund__item-dropdown-row-descr:nth-child(2), .fund__item-dropdown-head-parameters:nth-child(2) {
        width: 40px;
        display: flex;
        align-items: center;
        margin-left: 40px;
    }

    .margin-r {
        margin-right: -5px !important;
    }

    span.fund__item-dropdown-row-circle-order, .fund__item-dropdown-row-circle-storage, .fund__item-dropdown-row-circle-client {
        display: none;
    }

}

.btn-enter-mobile {
    display: none !important;
}
.btn-exit.btn-enter--block::before {
    top: 50%;
    transform: translateY(-50%);
    left: 7%;
}
@media (max-width: 480px) {
    .btn-exit.btn-enter--block::before {
        left: 20%;
    }
}

.order__filter-select1 {
    position: relative;
    z-index: 2;
}

.fund__item-dropdown-head-parameters {
    height: 27px;
}

.form-order__left-new {
    display: flex;
    align-items: center;
}

.form-order__label.form-order__label--new {
    padding-left: 7px;
    white-space: nowrap;
}

.form-order__label {
    font-weight: 600;
    font-size: 14px;
    line-height: 19px;
}

.form-order__btn {
    padding-left: 25px;
}

.form-order__right-new {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

#week_days span label {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    opacity: 0.5;
}

.week_days-wrap.active label {
    opacity: 1 !important;
    color: #000000;
}

.div#periodicity-styler .day-text {
    opacity: 1 !important;
    color: #000000;
}


.form-order__right.form-order__right-new .form-elem {
    font-weight: 600;
    font-size: 14px;
    line-height: 19px;
    margin-left: 10px;
}

.color-gray_14 {
    font-weight: 600;
    font-size: 14px;
    line-height: 19px;
    margin-bottom: 5px;
}

.day-text {
    font-weight: 600;
    font-size: 14px;
    line-height: 19px;
    text-align: right;
    color: #000000;
    position: absolute;
    opacity: 0.5;
    top: 30%;
    right: 60px;
    z-index: 3;
}

.pos-abs {
    position: absolute;
    left: 0;
    top: -21px;
}

.form-order__right-new .select-wrap .jq-selectbox {
    margin-right: 10px;
}

.form-order__right-new .select-wrap .jq-selectbox .jq-selectbox__select {
    width: 260px !important;
}

.select-wrap__periodicity-first {
    position: relative;
    z-index: 101;
}

.select-wrap__periodicity {
    position: relative;
    z-index: 2;
}

.z-1 {
    z-index: -1 !important;
}

.black {
    color: #000000 !important;
    opacity: 1;
}

.header__btn-logout:hover {
    transition: .3s;
    box-shadow: 0px 8px 13px 0px rgb(228 6 19 / 57%);
    background: #e40613;
    color: #ffffff;
}

@media (max-width: 768px) {
    .header__btn-logout {
        margin: 0;
        width: 43px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header__btn-logout img {
        width: 24px;
    }
}

.opacity-1 {
    opacity: 0.5;
}

.select-wrap.select-wrap--order-form.js-select-wrap.select-wrap__periodicity.active .jq-selectbox__select-text {
    opacity: 1 !important;
}

.select-wrap.select-wrap--order-form.js-select-wrap.select-wrap__periodicity .jq-selectbox__select-text {
    opacity: 0.5;
}

input.date {
    border: none !important;
    width: 100% !important;
    height: 42px !important;
    border-radius: 23px !important;
    font-size: 14px !important;
    line-height: 20px !important;
    padding: 11px 12px 11px 22px !important;
    outline: none !important;
    background: #E5E5E5 !important;
    display: block !important;
    color: #000000 !important;
    text-align: start !important;
}

.form-order__right-after{
    position: relative;
}

.form-order__right-calendar {
    width: 15px;
    fill: #e40613;
    position: absolute;
    top: 12px;
    right: 20px;
    display: none;
}

@media (max-width: 768px) {
    .form-order__right-calendar {
        display: block;
        opacity: 1 !important;
    }
}


/*input[type="date"]::-webkit-inner-spin-button,*/
/*input[type="date"]::-webkit-calendar-picker-indicator {*/
/*    display: none;*/
/*    -webkit-appearance: none;*/
/*}*/
@media (max-width:768px) {

    input[type="date"] {
        -webkit-appearance: none;
    }

    input[type="date"]::-webkit-inner-spin-button,
    input[type="date"]::-webkit-calendar-picker-indicator {
        display: none;
        -webkit-appearance: none;
    }
    .DatePickerInput::-webkit-inner-spin-button,
    .DatePickerInput::-webkit-calendar-picker-indicator {
        opacity:0;
        -webkit-appearance: none;
    }

}

.form-order__right-calendar {
    opacity: 0;
}
input::-webkit-date-and-time-value {
    text-align: left;
}

div#notifications {
    position: fixed;
    z-index: 99999999;
    display: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: #e40613;
    padding: 20px;
    color: #fff;
    border-radius: 5px;
}
.form-data-plushka {
    background: #fcfcfc;
    padding: 40px 15px;
}
.form-data {
    font-size: 14px;
}
.form-data__indent-small {
    margin-bottom: 4px;
}
.form-data__indent-normal.delivery-block:hover button,.contact-field:hover button,.card-block:hover button {
    display:block;
}
.form-data__indent-normal {
    margin-bottom: 10px;
    position: relative;
}
.contact-field .form-data__name--contact-icon{
    position: relative;
    width: 100%;
}
.form-data__indent-middle {
    margin-bottom: 15px;
}
.form-data__indent-big {
    margin-bottom: 35px;
}
.form-data__row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.form-data__col-50 {
    width: 48%;
}
.form-data__one {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}
.form-data__one--center {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.form-data__one--center .form-data__one-left {
    padding-top: 0;
}
.form-data__one-left {
    width: 195px;
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
    padding-top: 13px;
}
.contact-field .form-data__name--contact-icon .field-float-button {
    right: 0;
    left: initial;
    text-align:right;
}
.recovery-form{
    margin: 0 auto;
}
.my-data__col.col-30{
    width:30%
}
.verify-image{
    margin: 10px 10px 0;
}
.my-data__col.col-70{
    width:70%;
}
.restore-password-link{
    font-size: 13px;
    text-align: right;
    display: block;
    margin: 10px 10px 0;
    color: #e40613;
}
.field-float-button {
    position: absolute;
    right: -20px;
    top: 10px;
    transform: translateY(-50%);
    background: 0;
    border: 0;
    font-weight: 900;
    z-index: 9;
    color: #e40613;
    display: none;
    width: 20px;
    text-align: right;
    height: 100%;
    cursor: pointer;
}
.flash-info{
    padding: 20px;
    text-align: center;
    background: #e40613;
    color: #fff;
    text-transform: uppercase;
}
.btn-enter-mobile {
    display: none;
}
@media (max-width:480px) {
    .btn-enter-mobile {
        width: 43px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid #E30711;
    }
    nav.header__nav-flex {
        display: flex;
        width: 100%;
        justify-content: space-between;
    }
    .wrapper-mob {
        width: 100%;
        padding: 0 18px;
    }
}


@media (max-width: 480px) {
    nav.header__nav {
        display: flex;
        width: 100%;
        justify-content: space-between;
    }
}

p.order__item-dropdown-row-fund {
    width: 180px;
}
.application .application-block {
    max-width: 220px;
    width: 100%;
}
.header__btn-enter:before {
    display: none !important;
}


.clean-table__td.clean-table__td--cost {
    min-width: 70px;
}


* {
    box-sizing: border-box;
}

.catalog-j__inner {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;

}
.wrapper-catalog-j {
    padding-bottom: 100px;
}

.catalog-j__item {
    padding: 37px 30px;
    width: 31.33333%;
    max-height: 525px;
    min-height: 525px;
    height: 100%;
    background: #FFFFFF;
    box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.09);
}

.catalog-j__title {
    font-weight: 600;
    font-size: 20px;
    line-height: 27px;

    color: #000000;
    margin-bottom: 18px;
    height: 54px;
}

.catalog-j__item img {
    width: 100%;
    height: 214px;
    object-fit: cover;
}

.catalog-j__text {
    font-weight: 600;
    font-size: 14px;
    line-height: 19px;

    color: #999999;
    margin: 0;
    margin-top: 16px;
    margin-bottom: 20px;
    height: 115px;
    overflow: hidden;
    text-overflow: ellipsis;

}

.catalog-j__price {
    font-weight: 600;
    font-size: 20px;
    line-height: 27px;
    text-align: right;
    color: #4E4E4E;
}

.wrapper-catalog-j {
    max-width: 1366px;
    margin: 0 auto;
    padding: 0 10px;
}

.catalog-j__button {
    display: flex;
    justify-content: center;
    margin-top: 70px;
}

.catalog-j__button button {
    width: 228px;
    height: 44.81px;
    background: #D12E26;
    box-shadow: 0px 7px 15px rgba(209, 46, 38, 0.56);
    border-radius: 100px;
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    text-transform: uppercase;
    color: #FFFFFF;
    border: none;
    outline: none;
    cursor: pointer;
}

@media (max-width: 1024px) {
    .catalog-j__item {
        width: 48%;
    }
    .catalog-j__item {
        max-height: 525px;
        min-height: 525px;
    }
}
@media (max-width: 1024px) {
    .catalog-j__text {
height: 115px;
    }
}
@media (max-width: 768px) {
    .catalog-j__item img {
        height: 185px;
    }
    .catalog-j__item {
        min-height: 475px;
        max-height: 475px;
        padding: 30px;
    }
    .catalog-j__button {
        margin-top: 30px;
    }
    .catalog-j__title {
        font-size: 18px;
        line-height: 25px;
    }
    .catalog-j__text {
        font-size: 14px;
        line-height: 19px;
        margin-top: 13px;
        margin-bottom: 13px;
    }
}

@media (max-width: 600px) {
    .catalog-j__item {
        width: 100%;
        gap: 0;
    }
    .wrapper-catalog-j {
        padding-bottom: 60px;
    }
    .form-data__one {
        flex-direction: column;
        align-items: flex-start;
    }
         .form-data__one.form-data__indent-small input {
             margin-bottom: 10px;
         }

}

.sticky .btn-sticky-left {
    display: none;
}

@media (max-width: 768px) {
    .sticky .btn-sticky-left {
        display: flex;
    }
}

.btn-exit {
    width: max-content;
}
@media (max-width: 1100px) {
    .header__btn-enter {
        display: flex;
        flex-direction: row-reverse;
    }
    .btn-exit {
        width: 100% !important;
    }
}
a.btn-profile-logout {
    position: relative;
    border: 1px solid #E30711;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 44px;
    width: 100%;
    height: 44px;
    margin: 0 13px 0 8px;
    max-width: 44px;
}
.btn-profile-logout:after {
    position: absolute;
    content: '';
    background-image: url("../images/header-logout.svg");
    width: 20px;
    height: 20px;
    top: 47%;
    left: 43%;
    transform: translate(-50%,-50%);

}
.header__btn-enter {
    display: flex;
}


.header__social {
    display: none;
}

@media (max-width:600px) {
    .header__sticky-add {
        display: flex;
        padding-left: 0px;
        margin-left: auto;
    }
    .btn-sticky-left {
        display: flex;
    }
    .header__bottom-box {
        display: flex;
    }
    .header__btn-enter {
        display: none;
    }
    .header__btn {
        padding-top: 20px;
        margin: 0 auto;
        display: flex;
        justify-content: center;
    }
    .order .jq-selectbox__select-text {
        font-size: 16px !important;
        font-weight: 500 !important;
    }

    .form-order__one input {
        font-size: 16px !important;
    }
}
@media (max-width: 480px) {
.header__btn {
    display: none;
}
}

input[type="date"],
input[type="text"],
input[type="datetime"],
input[type="datetime-local"] {
    font-size: 16px !important;
}


.catalog-j-slider--inner ul.slick-dots {
    display: flex;
    text-decoration: none;
    position: absolute;
    list-style: none;
    bottom: 0;
    left: 50%;
    transform: translate(-50%,-50%);
    padding-left: 0;
}

.catalog-j-slider--inner ul.slick-dots .slick-active button {
    background: #D12E26;
    color: #D12E26;
}
.catalog-j-slider--inner ul.slick-dots button {
    border-radius: 50%;
    border: none;
    outline: none;
    background: bisque;
    color: bisque;
    cursor: pointer;
    margin-right: 10px;
    width: 10px;
    height: 10px;
    font-size: 1px;
}
