/*******************
Table of contents

## Customs
## Breadcrumbs
## Header
## Header 2
## Header 3
## Mobile Menu
## Ventilation
## Filter
## Position
## Commodity
## Profile
## Documentation
## Footer
## Modals
*******************/
/* ## Customs
====================*/
body {
    position: relative;
    min-height: 100vh;
    margin: 0;
    background-color: #e9ecf1;
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    color: #000000;
}

body.hidden {
    overflow: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.close {
    position: relative;
    display: block;
    width: 12px;
    height: 12px;
    cursor: pointer;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.close:hover:before, .close:hover:after {
    background-color: #e70602;
}

.close:before, .close:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background-color: #fe6d6a;
}

.close:before {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    -ms-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
}

.close:after {
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    -ms-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
}

.menu-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.menu-close:before, .menu-close:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 3px;
    border-radius: 3px;
    background-color: #fe6d6a;
}

.menu-close:before {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    -ms-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
}

.menu-close:after {
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    -ms-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
}

.overlay, .overlay-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 2;
    display: none;
}

.overlay.active, .overlay-modal.active {
    display: block;
}

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

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    font-weight: inherit;
}

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

button {
    padding: 0;
    border: none;
    outline: none;
    background-color: transparent;
    cursor: pointer;
}

a {
    text-decoration: none;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

a:hover {
    text-decoration: none;
}

input[type=text]::-ms-clear {
    display: none;
    width: 0;
    height: 0;
}

input[type=text]::-ms-reveal {
    display: none;
    width: 0;
    height: 0;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    display: none;
}

.title-1 {
    font-weight: bold;
    font-size: 18px;
    color: #21324e;
}

.btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    max-width: 280px;
    min-width: -webkit-min-content;
    min-width: -moz-min-content;
    min-width: min-content;
    height: 29px;
    padding: 0 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 10px;
    color: #ffffff;
    white-space: nowrap;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.btn.btn-red {
    background-color: #fe6d6a;
}

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

.btn.btn-red.btn-outline {
    border: 1px solid #fe6d6a;
    background-color: #ffe9e9;
    color: #fe6d6a;
}

.btn.btn-red.btn-outline:hover {
    background-color: #fe6d6a;
    color: #ffffff;
}

.btn.btn-gray {
    background-color: #7d808a;
}

.btn.btn-gray:hover {
    background-color: #71737d;
}

.btn.btn-blue {
    background-color: #21324e;
}

.btn.btn-blue:hover {
    background-color: #19273c;
}

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

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

.link-red {
    color: #fe6d6a;
}

.link-red:hover {
    color: #e70602;
}

.link-gray {
    color: #7d808a;
}

.link-gray:hover {
    color: #404247;
}

.underline {
    text-decoration: underline;
}

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

.hamburger {
    position: relative;
    display: none;
    width: 42px;
    height: 30px;
    cursor: pointer;
}

.hamburger-line {
    position: absolute;
    width: 100%;
    height: 4px;
    border-radius: 4px;
    background-color: #21324e;
}

.hamburger-line:nth-child(1) {
    top: 0;
    left: 0;
}

.hamburger-line:nth-child(2) {
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.hamburger-line:nth-child(3) {
    bottom: 0;
    left: 0;
}

.dropdown-link {
    position: relative;
    display: block;
}

.dropdown-link.active:before {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 3.5px 7px 3.5px;
    border-color: transparent transparent #21324e transparent;
}

.dropdown-link:before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-75%);
    -ms-transform: translateY(-75%);
    transform: translateY(-75%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 7px 3.5px 0 3.5px;
    border-color: #21324e transparent transparent transparent;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.dropdown-content {
    display: none;
}

.dropdown-content.active {
    display: block;
}

.count {
    width: 100%;
    height: auto;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: none;
    border: none;
    border-bottom: 1px solid #d6dadd;
    background-color: transparent;
    font-style: italic;
    font-size: 13px;
    line-height: 13px;
    color: #21324e;
}

.input-discount {
    width: 70px;
    height: 29px;
    padding: 0 12px;
    border-radius: 10px;
    border: 1px solid #d2d2d2;
    outline: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-shadow: 0 0 5px rgba(55, 55, 55, 0.02);
    box-shadow: 0 0 5px rgba(55, 55, 55, 0.02);
    font-weight: bold;
    font-size: 16px;
    line-height: 27px;
}

.select {
    position: relative;
    width: 165px;
    height: 29px;
    padding: 0 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 10px;
    border: none;
    outline: none;
    -webkit-box-shadow: 0 0 5px rgba(55, 55, 55, 0.02);
    box-shadow: 0 0 5px rgba(55, 55, 55, 0.02);
    color: #7d808a;
    cursor: pointer;
}

.select:before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-75%);
    -ms-transform: translateY(-75%);
    transform: translateY(-75%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 3.5px 7px 3.5px;
    border-color: transparent transparent #7d808a transparent;
}

.radio-group {
    margin-bottom: 5px;
}

.radio-group:last-child {
    margin-bottom: 0;
}

.radio {
    position: relative;
}

.radio-input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
}

.radio-label {
    padding-left: 20px;
    color: #7d808a;
    cursor: pointer;
}

.radio-box {
    position: absolute;
    top: 1px;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    border: 1px solid #7d808a;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
}

.radio-box:before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: transparent;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.radio-input:checked + .radio-box:before {
    background-color: #fe6d6a;
}

.tab {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    border-bottom: 1px solid #e9ecf1;
}

.tab li:not(:last-child) {
    margin-right: 30px;
}

.tab li a {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    padding-bottom: 12px;
    font-weight: bold;
    font-size: 14px;
    color: #21324e;
}

.tab li a:hover {
    color: #fe6d6a;
}

.tab li a:before {
    content: '';
    position: absolute;
    bottom: -2px;
    width: 100%;
    height: 3px;
    border-radius: 3px;
    background-color: #fe6d6a;
    opacity: 0;
}

.tab li a.active {
    color: #fe6d6a;
}

.tab li a.active:before {
    opacity: 1;
}

.tab-content {
    padding: 45px 0 60px;
}

.tabs-content {
    display: none;
}

.tabs-content.active {
    display: block;
}

.table-page {
    min-height: calc(100vh - 251px);
    padding: 30px 0 50px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.table__scroll {
    overflow-x: auto;
}

.table {
    width: 1160px;
    margin-top: 30px;
}

.table__head {
    background-color: #7d808a;
}

.table__head .table__list_item {
    color: #ffffff;
}

.table__body .table__list:nth-child(2n+1) {
    background-color: #ffffff;
}

.table__buttons .table__list {
    padding: 0 0 15px;
}

.table__buttons .table__list_item {
    width: auto;
    height: auto;
}

.table__buttons .table__list_item:first-child {
    padding-left: 0;
}

.table__buttons .btn {
    padding: 0 25px;
}

.table__search .table__list {
    padding: 15px 0;
}

.table__search .table__list_item {
    position: relative;
    height: auto;
    padding: 0 15px 0 0;
}

.table__search .table__list_item input {
    width: 100%;
    height: 29px;
    padding: 0 30px 0 10px;
    border-radius: 10px;
    border: none;
    outline: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background-color: #ffffff;
    color: #7d808a;
}

.table__search .table__list_item .table__search_icon {
    position: absolute;
    top: 50%;
    right: 25px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

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

.table__list_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: 100%;
    height: 40px;
    padding-right: 15px;
    color: #21324e;
    white-space: nowrap;
}

.table__list_item:first-child {
    padding-left: 15px;
}

.table__list_item.w-50 {
    width: 50%;
}

.table__list_item.w-200 {
    width: 200%;
}

.table__list_item.text-red {
    color: #fe6d6a;
}

.table__list_item.text-green {
    color: #35aa67;
}

.table__discount .input-discount {
    width: 40px;
    margin-right: 10px;
    padding: 0 8px;
}

.table__discount input::-webkit-outer-spin-button,
.table__discount input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.table__discount .btn {
    width: 53px;
}

.table__date {
    font-size: 11px;
    color: #7d808a;
}

.table-arrow {
    width: 0;
    height: 0;
    margin-right: 5px;
    border-style: solid;
    border-width: 7px 3.5px 0 3.5px;
    border-color: #ffffff transparent transparent transparent;
}

.table__links a:not(:last-child) {
    margin-right: 10px;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    padding: 30px 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    overflow-y: auto;
    display: none;
}

.modal .btn {
    max-width: none;
}

.modal .radio-box {
    width: 15px;
    height: 15px;
    border-radius: 3px;
}

.modal .radio-box:before {
    width: 9px;
    height: 9px;
    border-radius: 3px;
}

.modal__content {
    position: relative;
    width: 100%;
    max-width: 585px;
    margin: 0 auto;
    padding: 30px;
    border-radius: 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-shadow: 0 0 5px rgba(55, 55, 55, 0.02);
    box-shadow: 0 0 5px rgba(55, 55, 55, 0.02);
    background-color: #ffffff;
    z-index: 3;
}

.modal__content .btn {
    height: 40px;
}

.modal__close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 20px;
    height: 20px;
}

.modal__subtitle {
    margin-top: 10px;
    color: #21324e;
}

.modal__w-50 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
}

.modal__w-50 .modal__form_group {
    width: calc(50% - 15px);
    margin-right: 15px;
}

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

.modal__form {
    margin-top: 30px;
}

.modal__form.was-validated .modal__form_input:valid,
  .modal__form.was-validated .modal__form_select:valid {
    border-color: #35aa67;
}

.modal__form.was-validated .modal__form_input:invalid,
  .modal__form.was-validated .modal__form_select:invalid {
    border-color: #fe6d6a;
}

.modal__form.was-validated .modal__form_check .check-input:valid + .check-box {
    border-color: #35aa67;
}

.modal__form.was-validated .modal__form_check .check-input:invalid + .check-box {
    border-color: #fe6d6a;
}

.modal__form.was-validated .modal__form_check .check-input:valid + .check-box + .check-label {
    color: #35aa67;
}

.modal__form.was-validated .modal__form_check .check-input:invalid + .check-box + .check-label {
    color: #fe6d6a;
}

.modal__form.was-validated .modal__form_file input:valid {
    color: #35aa67;
}

.modal__form.was-validated .modal__form_file input:invalid {
    color: #fe6d6a;
}

.modal__form.was-validated .modal__form_textarea:valid {
    border-color: #35aa67;
}

.modal__form.was-validated .modal__form_textarea:invalid {
    border-color: #fe6d6a;
}

.modal__form_block {
    margin-bottom: 15px;
}

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

.modal__form_title {
    margin-bottom: 10px;
    font-weight: bold;
    color: #21324e;
}

.modal__form_group {
    display: block;
    margin-bottom: 15px;
}

.modal__form_input {
    width: 100%;
    height: 40px;
    padding: 0 15px;
    border-radius: 10px;
    border: 1px solid #d2d2d2;
    outline: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-shadow: 0 0 5px rgba(55, 55, 55, 0.02);
    box-shadow: 0 0 5px rgba(55, 55, 55, 0.02);
    background-color: #ffffff;
    color: #21324e;
}

.modal__form_input::-webkit-input-placeholder {
    color: #7d808a;
}

.modal__form_input::-moz-placeholder {
    color: #7d808a;
}

.modal__form_input::-ms-input-placeholder {
    color: #7d808a;
}

.modal__form_input::placeholder {
    color: #7d808a;
}

.modal__form_select {
    width: 100%;
    height: 40px;
    padding: 0 15px;
    border-radius: 10px;
    border: 1px solid #d2d2d2;
    outline: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-shadow: 0 0 5px rgba(55, 55, 55, 0.02);
    box-shadow: 0 0 5px rgba(55, 55, 55, 0.02);
    background-color: #ffffff;
    color: #21324e;
    cursor: pointer;
}

.modal__form_textarea {
    width: 100%;
    height: 80px;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #d2d2d2;
    outline: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-shadow: 0 0 5px rgba(55, 55, 55, 0.02);
    box-shadow: 0 0 5px rgba(55, 55, 55, 0.02);
    background-color: #ffffff;
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    color: #21324e;
    resize: none;
}

.modal__form_textarea::-webkit-input-placeholder {
    color: #7d808a;
}

.modal__form_textarea::-moz-placeholder {
    color: #7d808a;
}

.modal__form_textarea::-ms-input-placeholder {
    color: #7d808a;
}

.modal__form_textarea::placeholder {
    color: #7d808a;
}

.modal__form_file {
    color: #7d808a;
    cursor: pointer;
}

.modal__form_file input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
}

.modal__form_check {
    position: relative;
}

.modal__form_check .check-input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
}

.modal__form_check .check-label {
    display: block;
    padding-left: 20px;
    color: #7d808a;
    cursor: pointer;
}

.modal__form_check .check-box {
    position: absolute;
    top: 1px;
    left: 0;
    width: 15px;
    height: 15px;
    border-radius: 3px;
    border: 1px solid #7d808a;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
}

.modal__form_check .check-box:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -75%) rotate(45deg);
    -ms-transform: translate(-50%, -75%) rotate(45deg);
    transform: translate(-50%, -75%) rotate(45deg);
    width: 2px;
    height: 6px;
    border: 2px solid #fe6d6a;
    border-left-color: transparent;
    border-top-color: transparent;
    opacity: 0;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.modal__form_check .check-input:checked + .check-box:before {
    opacity: 1;
}

.modal__thank .modal__form_title {
    margin-bottom: 0;
}

.modal__thank_subtitle {
    position: relative;
    margin-top: 25px;
    margin-bottom: 15px;
    padding-bottom: 15px;
}

.modal__thank_subtitle:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 145px;
    height: 1px;
    background-color: #fe6d6a;
}

.modal__thank_list_item {
    color: #21324e;
}

.modal__thank_list_item a {
    font-weight: bold;
    color: #21324e;
}

.modal__thank_list_item span {
    color: #fe6d6a;
}

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

.modal__form_tel label:first-child {
    width: 200%;
    margin-right: 15px;
}

.modal__form_group_radio .modal__form_select {
    width: calc(100% - 25px);
    margin-left: 25px;
}

/* ## Breadcrumbs
====================*/
.breadcrumbs {
    padding: 20px 0;
    background-color: #ffffff;
}

.breadcrumbs__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.breadcrumbs__list_item {
    position: relative;
    margin-right: 20px;
    font-size: 11px;
    color: #7d808a;
}

.breadcrumbs__list_item:not(:last-child):before {
    content: '/';
    position: absolute;
    top: 0;
    right: -13px;
}

.breadcrumbs__list_item_link {
    color: #7d808a;
}

.breadcrumbs__list_item_link:hover {
    color: #404247;
}

/* ## Header
====================*/
.header__top_mobile {
    display: none;
    padding: 10px;
    background-color: #7d808a;
}

.header__top_mobile.active:before {
    border-color: transparent transparent #ffffff transparent;
}

.header__top_mobile:before {
    right: 10px;
    border-color: #ffffff transparent transparent transparent;
}

.header__top {
    background-color: #7d808a;
}

.header__top_list {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    height: 30px;
}

.header__top_list_item {
    margin-right: 30px;
}

.header__top_list_item:last-child {
    margin-right: 0;
}

.header__top_list_item_link {
    position: relative;
    font-weight: bold;
    color: #ffffff;
}

.header__top_list_item_link:before {
    content: '';
    position: absolute;
    bottom: -7px;
    left: 0;
    width: 100%;
    display: none;
    height: 3px;
    border-radius: 2px;
    background-color: #fe6d6a;
}

.header__top_list_item_link:hover {
    color: #fe6d6a;
}

.header__top_list_item_link.active {
    color: #fe6d6a;
}

.header__top_list_item_link.active:before {
    display: block;
}

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

.header__login_icon {
    position: relative;
    top: 1px;
    margin-right: 5px;
}

.header__login_name {
    margin-right: 5px;
    color: #ffffff;
}

.header__login_link {
    color: #fe6d6a;
}

.header__login_link:hover {
    color: #fd231e;
}

.header__mid {
    background-color: #ffffff;
}

.header__mid_block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 67px;
}

.header__mid_left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.logo {
    position: relative;
    top: -5px;
}

.logo-text {
    margin-left: 25px;
    color: #7d808a;
}

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

.header__mid_email {
    margin-right: 65px;
    color: #7d808a;
}

.header__mid_tel {
    margin-right: 45px;
    font-weight: bold;
    font-size: 17px;
    color: #7d808a;
}

.header__mid_btn {
    width: 180px;
}

.header__bot {
    background-color: #21324e;
}

.header__navigation {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-right: 40px;
}

.header__navigation_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.header__navigation_close {
    display: none;
}

.header__navigation_item {
    margin-right: 10px;
}

.header__navigation_item:last-child {
    margin-right: 0;
}

.header__navigation_item_mobile {
    display: none;
}

.header__navigation_item_mobile_link {
    color: #ffffff;
}

.header__navigation_item_link {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 39px;
    padding: 0 15px;
    font-weight: bold;
    color: #ffffff;
    white-space: nowrap;
}

.header__navigation_item_link:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: none;
    height: 3px;
    border-radius: 2px;
    background-color: #fe6d6a;
}

.header__navigation_item_link:hover {
    color: #fe6d6a;
}

.header__navigation_item_link.active {
    color: #fe6d6a;
}

.header__navigation_item_link.active:before {
    display: block;
}

.header__navigation_search {
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: 2px solid #e9ecf1;
    border-radius: 10px;
    background-color: #e9ecf1;
    cursor: pointer;
    overflow: hidden;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.header__navigation_search.active {
    width: 400px;
    cursor: initial;
}

.header__navigation_search.active .header__navigation_search_icon {
    display: none;
}

.header__navigation_search.active .header__navigation_search_btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.header__navigation_search.active .header__navigation_search_close {
    display: block;
}

.header__navigation_search_input {
    width: 100%;
    height: 100%;
    padding: 0 120px 0 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: none;
    outline: none;
    background-color: transparent;
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    color: #7d808a;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.header__navigation_search_input::-webkit-input-placeholder {
    color: #7d808a;
}

.header__navigation_search_input::-moz-placeholder {
    color: #7d808a;
}

.header__navigation_search_input::-ms-input-placeholder {
    color: #7d808a;
}

.header__navigation_search_input::placeholder {
    color: #7d808a;
}

.header__navigation_search_icon {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    padding: 3px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
}

.header__navigation_search_btn {
    position: absolute;
    top: 50%;
    right: 50px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    display: none;
    width: 60px;
    height: 26px;
}

.header__navigation_search_close {
    position: absolute;
    top: 50%;
    right: 18px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    display: none;
}

/* ## Header 2
====================*/
.header-2 .header__navigation_item {
    margin-right: 40px;
}

.header-2 .header__navigation_item_link {
    padding: 0;
}

/* ## Header 3
====================*/
/* ## Mobile Menu
====================*/
.mobile__menu {
    display: none;
}

.mobile__menu_filter {
    -ms-grid-column: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 40px;
    border-radius: 10px;
    background-color: #7d808a;
    font-weight: bold;
    color: #ffffff;
    cursor: pointer;
}

.mobile__menu_search {
    -ms-grid-column: 2;
    position: relative;
    width: 100%;
    height: 40px;
    padding: 0 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.mobile__menu_search_btn {
    position: absolute;
    top: 50%;
    right: 50px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    display: none;
    width: 60px;
}

.mobile__menu_search_icon {
    position: absolute;
    top: 50%;
    right: 15px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    padding: 5px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.mobile__menu_search_input {
    width: 100%;
    height: 100%;
    padding: 0 100px 0 10px;
    border: 2px solid #7d808a;
    border-radius: 10px;
    outline: none;
    background-color: transparent;
    color: #7d808a;
}

.mobile__menu_search_close {
    position: absolute;
    top: 50%;
    right: 25px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    display: none;
}

.mobile__menu_basket {
    -ms-grid-column: 3;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 10px;
    background-color: #fe6d6a;
}

.mobile__menu_basket_value {
    position: absolute;
    top: 0;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    -webkit-transform: translate(30%, -30%);
    -ms-transform: translate(30%, -30%);
    transform: translate(30%, -30%);
    border-radius: 50%;
    background-color: #21324e;
    font-size: 10px;
    color: #ffffff;
}

/* ## Ventilation
====================*/
.ventilation {
    overflow: clip;
}

.page-grid {
    display: -ms-grid;
    -ms-grid-columns: 1fr 2fr 1fr;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
}

.main {
    -ms-grid-column: 2;
    -ms-grid-row: 1;
    padding-bottom: 50px;
}

.ventilation__filters {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    height: 60px;
    padding: 10px 15px 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.ventilation__filters_item {
    margin-right: 15px;
}

.ventilation__filters_item_link {
    font-size: 11px;
    color: #7d808a;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.ventilation__filters_item_link:hover {
    color: #404247;
}

.cards__list {
    padding: 0 15px 50px;
}

.card {
    display: -ms-grid;
    -ms-grid-columns: 105px 1fr 85px;
    display: grid;
    grid-template-columns: 105px 1fr 85px;
    margin-bottom: 5px;
    padding: 15px;
    border-radius: 10px;
    background-color: #ffffff;
}

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

.card__img {
    -ms-grid-column: 1;
    -ms-grid-row: 1;
    padding: 0 5px;
}

.card__info {
    -ms-grid-column: 2;
    -ms-grid-row: 1;
    padding: 0 15px;
}

.card__value {
    -ms-grid-column: 3;
    -ms-grid-row: 1;
    padding-left: 15px;
    border-left: 1px solid #d6dadd;
}

.card__info_name {
    margin-bottom: 5px;
    font-weight: bold;
    color: #21324e;
}

.card__info_list_item {
    color: #7d808a;
}

.card__info a[target="_blank"] {
    color: #21324e;
    border-bottom: 1px solid;
    display: inline-block;
    margin-bottom: 2px;
}

.view-all {
    display: inline-block;
    color: #fe6d6a;
    text-decoration: underline;
}

.view-all:hover {
    text-decoration: underline;
    color: #e70602;
}

.view-all:before {
    display: none;
}

.card__value_price {
    font-weight: bold;
    color: #21324e;
}

.card__value_price span {
    white-space: nowrap;
}

.card__value_count {
    margin-top: 10px;
    color: #7d808a;
}

.card__value_count span {
    white-space: nowrap;
}

.card__value_btn {
    margin-top: 25px;
}

.card__value_btn .btn {
    padding: 0;
}

.card__value_btn .triangle {
    width: 0;
    height: 0;
    margin-left: 10px;
    border-style: solid;
    border-width: 3.5px 0 3.5px 7px;
    border-color: transparent transparent transparent #ffffff;
}

/* ## Filter
====================*/
.filter {
    -ms-grid-column: 1;
    -ms-grid-row: 1;
    position: relative;
    min-height: calc(100vh - 136px);
    padding: 0 15px 50px 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background-color: #ffffff;
}

.filter:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    width: 10000px;
    height: 100%;
    background-color: #ffffff;
}

.filter__close {
    display: none;
}

.filter__title {
    height: 60px;
    padding: 30px 15px 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.filter__dropdown {
    margin-bottom: 10px;
    padding: 0 15px;
    border-radius: 10px;
    background-color: #f3f7fa;
    padding-bottom: 1px;
    margin-top: 10px;
}

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

.filter__dropdown_title {
    padding: 15px 0;
    font-weight: bold;
    color: #21324e;
}

.filter__dropdown_list_item {
    border-top: 1px solid #d6dadd;
    margin-bottom: 10px;
}
.filter__dropdown_list_item:last-child {
	border-top-color: transparent;
}

.filter__dropdown_subtitle {
    padding: 15px 0;
    color: #21324e;
}

.filter__dropdown_link {
    margin-top: 15px;
    margin-bottom: 5px;
    color: #7d808a;
}

.filter__dropdown_link:first-child {
    margin-top: 0;
}

.filter__dropdown_link.active:before {
    border-color: transparent transparent #afb6bb transparent;
}

.filter__dropdown_link:before {
    border-color: #afb6bb transparent transparent transparent;
}

.filter__dropdown_radios {
    padding-left: 15px;
    padding-bottom: 15px;
}

.filter__dropdown_radios_sub-content {
    padding-left: 20px;
}

/* ## Position
====================*/
.position {
    -ms-grid-column: 3;
    -ms-grid-row: 1;
    position: relative;
    padding: 0 0 50px 15px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.position__close {
    display: none;
}

.position__title {
    height: 60px;
    padding: 30px 0 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.position__list_system {
    margin-bottom: 30px;
}

.position__list_system:last-child {
    margin-bottom: 30px;
}

.position__content {
    position: sticky;
    top: 0;
    left: 0;
}

.position__content .position__list {
    max-height: 60vh;
    overflow: auto;
	padding-right: 5px;
}

.position__content .position__list::-webkit-scrollbar {
  width: 8px;
  background-color: #ebebeb;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px
}
.position__content .position__list::-webkit-scrollbar-thumb {
  background-color: #21324e;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

.system__title {
    display: inline-block;
    position: relative;
    width: 100%;
    margin-top: 15px;
    margin-bottom: 20px;
    padding-right: 25px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-style: italic;
    line-height: 15px;
    color: #21324e;
    text-decoration: underline;
    cursor: pointer;
}

.system__title_icon {
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
}

.system__info_list_item {
    margin-bottom: 10px;
}

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

.system__info {
    display: -ms-grid;
    -ms-grid-columns: 1fr 32px 25px;
    display: grid;
    grid-template-columns: 1fr 32px 25px;
}

.system__info.required .system__info_name {
    color: #fe6d6a;
}

.system__info.required .system__info_name span {
    text-decoration: underline;
    cursor: pointer;
}

.system__info.required .system__info_name span:hover {
    color: #e70602;
}

.system__info_name {
    -ms-grid-column: 1;
    -ms-grid-row: 1;
    padding-right: 15px;
    color: #21324e;
}

.system__info_count {
    -ms-grid-column: 2;
    -ms-grid-row: 1;
    width: 45px;
}
.system__info_count input {
    position: relative;
}
.system__info_count input::-webkit-outer-spin-button,
.system__info_count input::-webkit-inner-spin-button {
    opacity: 1;
}

.system__info_close {
    -ms-grid-column: 3;
    -ms-grid-row: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.system__info_price {
    margin-top: 3px;
    color: #7d808a;
}

.system__sum {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 15px;
    color: #7d808a;
}

.system__sum_title {
    font-weight: bold;
}

.system__delete {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-top: 15px;
    font-weight: bold;
    color: #fe6d6a;
    cursor: pointer;
}

.system__delete:hover {
    color: #e70602;
}

.system__delete:hover .close:before, .system__delete:hover .close:after {
    background-color: #e70602;
}

.system__delete .close {
    margin-right: 5px;
}

.position__sum {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 30px;
    padding: 5px 0;
    border-top: 1px solid #d6dadd;
}

.position__sum_title {
    font-weight: bold;
    color: #21324e;
}

.position__sum_value {
    color: #7d808a;
}

.position__btn_add-system {
    margin-top: 25px;
}

.position__btn_kp {
    margin-top: 25px;
}

.position__btn_score {
    margin-top: 5px;
}

.position__discount {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 15px 0;
}

.position__discount_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: 100%;
}

.position__discount_label {
    margin-right: 5px;
    color: #7d808a;
}

/* ## Commodity
====================*/
.commodity {
    background-color: #ffffff;
}

.commodity__grid {
    display: -ms-grid;
    -ms-grid-columns: 390px 1fr 200px;
    display: grid;
    grid-template-columns: 390px 1fr 200px;
    padding-bottom: 30px;
}

.commodity__img {
    -ms-grid-column: 1;
    padding-right: 50px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.commodity__img img {
    width: 100%;
    max-height: none;
}

.commodity__content {
    -ms-grid-column: 2;
}

.commodity__info {
    -ms-grid-column: 3;
}

.commodity__title {
    margin-bottom: 30px;
    font-weight: bold;
    font-size: 18px;
    color: #21324e;
}

.commodity__content_list_item {
    display: -ms-grid;
    -ms-grid-columns: 200px 1fr;
    display: grid;
    grid-template-columns: 200px 1fr;
    margin-bottom: 10px;
}

.commodity__content_list_item_label {
    -ms-grid-column: 1;
    padding-right: 20px;
    color: #7d808a;
}

.commodity__content_list_item_desc {
    -ms-grid-column: 2;
    color: #21324e;
}

.commodity__info_card {
    padding: 30px 15px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 10px;
    background-color: #e9ecf1;
}

.commodity__info_card_price {
    font-weight: bold;
    font-size: 24px;
    color: #21324e;
}

.commodity__info_card_desc {
    margin-top: 8px;
    color: #7d808a;
}

.commodity__info_card_btn {
    margin-top: 25px;
}

.commodity__info_card_btn .btn {
    height: 40px;
}

.commodity__info_list {
    margin-top: 25px;
}

.commodity__info_list_item {
    display: -ms-grid;
    -ms-grid-columns: 30px 1fr;
    display: grid;
    grid-template-columns: 30px 1fr;
    margin-bottom: 10px;
}

.commodity__info_list_item_icon {
    -ms-grid-column: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.commodity__info_list_item_icon img {
    max-width: none;
    max-height: none;
}

.commodity__info_list_item_text {
    -ms-grid-column: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    color: #7d808a;
}

.commodity__tab {
    margin-top: 60px;
}

.commodity__tab_title {
    font-weight: bold;
    font-size: 15px;
    color: #21324e;
}

.commodity__tab_list {
    padding: 25px 0;
    color: #21324e;
}

.commodity__tab_list_item {
    position: relative;
    padding-left: 24px;
    font-size: 14px;
    line-height: 20px;
}

.commodity__tab_list_item:before {
    content: '';
    position: absolute;
    top: 5px;
    left: 0;
    width: 20px;
    height: 20px;
    background-image: url(../../assets/img/icons/arrow-red.png);
    background-repeat: no-repeat;
}

.commodity__tab_text {
    font-size: 14px;
    color: #21324e;
    line-height: 20px;
}

/* ## Profile
====================*/
.profile {
    overflow: hidden;
}

.profile__grid {
    display: -ms-grid;
    -ms-grid-columns: 1fr 2fr;
    display: grid;
    grid-template-columns: 1fr 2fr;
    min-height: calc(100vh - 251px);
}

.profile__grid_left {
    -ms-grid-column: 1;
    position: relative;
    padding: 30px 0;
    background-color: #ffffff;
}

.profile__grid_left:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    width: 10000px;
    height: 100%;
    background-color: #ffffff;
}

.profile__grid_right {
    -ms-grid-column: 2;
    padding: 30px 0 30px 15px;
}

.profile__data {
    margin-top: 30px;
}

.profile__data_item {
    display: -ms-grid;
    -ms-grid-columns: 100px 1fr;
    display: grid;
    grid-template-columns: 100px 1fr;
    margin-bottom: 10px;
}

.profile__data_item.mb-0 {
    margin-bottom: 0;
}

.profile__data_item_label {
    -ms-grid-column: 1;
    color: #7d808a;
}

.profile__data_item_value {
    -ms-grid-column: 2;
    color: #21324e;
}

.profile__block_title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.profile__block_add {
    margin-left: 20px;
}

.profile__block_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 15px -15px 30px 0;
}

.profile__card {
    width: calc(50% - 15px);
    margin-right: 15px;
    margin-bottom: 15px;
    padding: 15px;
    border-radius: 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-shadow: 0 0 5px rgba(55, 55, 55, 0.02);
    box-shadow: 0 0 5px rgba(55, 55, 55, 0.02);
    background-color: #ffffff;
}

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

.profile__card_name {
    font-weight: bold;
    color: #21324e;
}

.profile__card_list {
    margin-top: 10px;
}

.profile__card_list_item {
    display: -ms-grid;
    -ms-grid-columns: 130px 1fr;
    display: grid;
    grid-template-columns: 130px 1fr;
    margin-bottom: 5px;
}

.profile__card_list_item_label {
    -ms-grid-column: 1;
    padding-right: 10px;
    color: #7d808a;
}

.profile__card_list_item_value {
    -ms-grid-column: 2;
    color: #21324e;
}

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

/* ## Documentation
====================*/
.documentation {
    min-height: calc(100vh - 251px);
    padding: 30px 0 50px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.documentation__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 15px;
}

.documentation__top .btn {
    margin-top: 10px;
}

.documentation__top .select {
    margin-right: 15px;
    margin-top: 10px;
}

.documentation__grid {
    margin-top: 30px;
}

.documentation__grid_item {
    display: -ms-grid;
    -ms-grid-columns: 1fr 2fr;
    display: grid;
    grid-template-columns: 1fr 2fr;
    margin-bottom: 40px;
}

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

.documentation__grid_left {
    -ms-grid-column: 1;
}

.documentation__grid_right {
    -ms-grid-column: 2;
}

.documentation__grid_title {
    padding-top: 5px;
    padding-right: 15px;
    font-weight: bold;
    color: #21324e;
    line-height: 16px;
}

.documentation__grid_list_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 5px 15px;
}

.documentation__grid_list_item:nth-child(2n+1) {
    background-color: #ffffff;
}

.documentation__grid_list_item_label {
    padding-right: 15px;
    color: #21324e;
}

.documentation__bot {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-top: 40px;
}

/* ## Footer
====================*/
.footer {
    padding: 30px 0 25px;
    background-color: #21324e;
}

.footer__grid {
    display: -ms-grid;
    -ms-grid-columns: 1fr 1fr 2fr;
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
}

.footer__grid_item:nth-child(1) {
    -ms-grid-column: 1;
}

.footer__grid_item:nth-child(2) {
    -ms-grid-column: 2;
}

.footer__grid_item:nth-child(3) {
    -ms-grid-column: 3;
}

.footer__grid_title {
    margin-bottom: 5px;
    font-weight: bold;
    color: #ffffff;
}

.footer__grid_list_item {
    margin-bottom: 5px;
    color: #ffffff;
}

.footer__grid_list_item_link {
    color: #ffffff;
}

.footer__grid_list_item_link:hover {
    color: #fe6d6a;
}

.footer__contacts {
    display: -ms-grid;
    -ms-grid-columns: 1fr 1fr;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.footer__contacts .footer__grid_list_item:nth-child(1) {
    -ms-grid-column: 1;
    -ms-grid-row-span: 2;
    grid-row-start: 1;
    grid-row-end: 3;
    padding-right: 10px;
    line-height: 17px;
}

.footer__contacts .footer__grid_list_item:nth-child(2) {
    -ms-grid-column: 2;
    -ms-grid-row: 1;
}

.footer__contacts .footer__grid_list_item:nth-child(3) {
    -ms-grid-column: 2;
    -ms-grid-row: 2;
}

/* ## Modals
====================*/
.modal__catalog input::-webkit-outer-spin-button,
.modal__catalog input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.modal__catalog input[type=number] {
    -moz-appearance: textfield;
}

.modal__catalog .input-discount {
    width: 60px;
    text-align: center;
}

.modal__catalog_list {
    margin-top: 25px;
}

.modal__catalog_list_item {
    display: -ms-grid;
    -ms-grid-columns: auto 1fr 75px 145px;
    display: grid;
    grid-template-columns: auto 1fr 75px 145px;
}

.modal__catalog_list_item:not(:last-child) {
    margin-bottom: 15px;
}

.modal__catalog_list_item_img {
    -ms-grid-column: 1;
    width: 60px;
    height: 60px;
    background-color: #e9ecf1;
    overflow: hidden;
}

.modal__catalog_list_item_info {
    -ms-grid-column: 2;
    padding-left: 10px;
}

.modal__catalog_list_item_count {
    -ms-grid-column: 3;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.modal__catalog_list_item_buttons {
    -ms-grid-column: 4;
}

.modal__catalog_list_item_buttons .btn {
    height: 29px;
}

.modal__catalog_list_item_info_title {
    color: #21324e;
}

.modal__catalog_list_item_info_price {
    margin-top: 5px;
    color: #7d808a;
}

.modal__offer-manager .modal__form_textarea {
    height: 190px;
}

.modal__offer-manager_block {
    display: -ms-grid;
    -ms-grid-columns: 75px 1fr;
    display: grid;
    grid-template-columns: 75px 1fr;
    margin-bottom: 15px;
}

.modal__offer-manager_block .modal__form_title {
    -ms-grid-column: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-bottom: 0;
    padding-right: 10px;
}

.modal__offer-manager_block .modal__form_group {
    -ms-grid-column: 2;
    margin-bottom: 0;
}

.modal__login .modal__content {
    max-width: 310px;
}

.modal__login .btn {
    max-width: none;
}

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

.modal__login_label {
    color: #7d808a;
}

.modal__password-forgot .modal__content {
    max-width: 310px;
}

.modal__password-forgot .modal__subtitle {
    margin-top: 25px;
}

.modal__password-forgot .btn {
    max-width: none;
}

.modal__invoice_form {
    display: -ms-grid;
    -ms-grid-columns: 1fr 1fr;
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-right: -15px;
}

.modal__invoice_form .modal__form_group {
    margin-right: 15px;
}

.modal__invoice_form .modal__form_group:nth-child(1) {
    -ms-grid-column: 1;
    -ms-grid-row: 1;
    grid-area: 1 / 1 / 2 / 2;
}

.modal__invoice_form .modal__form_group:nth-child(2) {
    -ms-grid-column: 2;
    -ms-grid-row: 1;
    grid-area: 1 / 2 / 2 / 3;
}

.modal__invoice_form .modal__form_group:nth-child(3) {
    -ms-grid-column: 1;
    -ms-grid-row: 2;
    grid-area: 2 / 1 / 3 / 2;
}

.modal__invoice_form .modal__form_group:nth-child(4) {
    -ms-grid-column: 2;
    -ms-grid-row: 3;
    -ms-grid-row-span: 3;
    grid-area: 3 / 2 / 6 / 3;
}

.modal__invoice_form .modal__form_group:nth-child(5) {
    -ms-grid-column: 1;
    -ms-grid-row: 4;
    grid-area: 4 / 1 / 5 / 2;
}

.modal__invoice_form .modal__form_group:nth-child(6) {
    -ms-grid-column: 1;
    -ms-grid-row: 5;
    grid-area: 5 / 1 / 6 / 2;
}

.modal__invoice_form .modal__form_group:nth-child(7) {
    -ms-grid-column: 1;
    -ms-grid-row: 6;
    -ms-grid-column-span: 2;
    grid-area: 6 / 1 / 7 / 3;
}

.modal__invoice_form .modal__form_group:nth-child(8) {
    -ms-grid-column: 1;
    -ms-grid-row: 3;
    grid-area: 3 / 1 / 4 / 2;
}

.modal__invoice_form_file {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    height: 100%;
    padding-left: 10px;
    border-left: 1px solid #fe6d6a;
    font-style: italic;
    color: #7d808a;
}

.modal__object-name .modal__form_group:nth-child(3) {
    margin-bottom: 0;
}

.modal__object-name_link {
    position: relative;
    height: 20px;
    text-align: center;
}

.modal__delete .modal__content {
    padding-bottom: 15px;
}

.modal__delete .title-1 {
    margin-bottom: 25px;
    text-align: center;
}

.footer {
  padding: 30px 0 25px;
  background-color: #21324e;
}

.footer__grid {
  display: -ms-grid;
  -ms-grid-columns: 1fr 1fr 2fr;
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
}

.footer__grid_item:nth-child(1) {
  -ms-grid-column: 1;
}
.footer__grid_item:nth-child(2) {
  -ms-grid-column: 2;
}
.footer__grid_item:nth-child(3) {
  -ms-grid-column: 3;
}

.footer__grid_title {
  margin-bottom: 5px;
  font-weight: bold;
  color: #ffffff;
}

.footer__grid_list_item {
  margin-bottom: 5px;
  color: #ffffff;
}

.footer__grid_list_item_link {
  color: #ffffff;
}
.footer__grid_list_item_link:hover {
  color: #fe6d6a;
}

.footer__contacts {
  display: -ms-grid;
  -ms-grid-columns: 1fr 1fr;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.footer__contacts .footer__grid_list_item:nth-child(1) {
  -ms-grid-column: 1;
  -ms-grid-row-span: 2;
  grid-row-start: 1;
  grid-row-end: 3;
  padding-right: 10px;
  line-height: 17px;
}
.footer__contacts .footer__grid_list_item:nth-child(2) {
  -ms-grid-column: 2;
  -ms-grid-row: 1;
}
.footer__contacts .footer__grid_list_item:nth-child(3) {
  -ms-grid-column: 2;
  -ms-grid-row: 2;
}

@media (max-width: 767.98px) {
  .footer__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .footer__grid_item:nth-child(1) {
    -ms-grid-column: 1;
    -ms-grid-row: 2;
    grid-row-start: 2;
  }
  .footer__grid_item:nth-child(2) {
    -ms-grid-column: 1;
    -ms-grid-row: 3;
    grid-row-start: 3;
  }
  .footer__grid_item:nth-child(3) {
    -ms-grid-column: 1;
    -ms-grid-row: 1;
    grid-row-start: 1;
    margin-bottom: 20px;
  }
  .footer__grid_list_item {
    margin-bottom: 10px;
  }
  .footer__grid_title {
    margin-bottom: 10px;
  }
  .footer__contacts {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .footer__contacts .footer__grid_list_item:nth-child(1) {
    -ms-grid-column: 1;
    -ms-grid-row-span: 1;
    grid-row-start: 1;
    grid-row-end: 2;
    padding-right: 0;
    line-height: 17px;
  }
  .footer__contacts .footer__grid_list_item:nth-child(2) {
    -ms-grid-column: 1;
    -ms-grid-row: 2;
  }
  .footer__contacts .footer__grid_list_item:nth-child(3) {
    -ms-grid-column: 1;
    -ms-grid-row: 3;
  }
}

.delivery {
    flex: 1;    
    padding-top: 30px;
    padding-bottom: 30px;
}

.contacts {
    flex: 1;    
    padding-top: 30px;
    padding-bottom: 30px;
}

.checkbox-group {
  margin-bottom: 5px;
}
.checkbox-group .checkbox {
  cursor: pointer;
  position: relative;
  padding-left: 20px;
}
.checkbox-group .checkbox input[type="checkbox"] {
   position: absolute;
   top: 0;
   left: 0;
   opacity: 0;
}
.checkbox-group .checkbox input[type="checkbox"] + .checkbox-box::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 width: 12px;
 height: 12px;
 border: 1px solid #21324e;
 background-color: #fff;
 border-radius: 2px; 
}
.checkbox-group .checkbox input[type="checkbox"] + .checkbox-box::after {
 content: '';
 position: absolute;
 top: 4px;
 left: 4px;
 width: 6px;
 height: 6px;
 background-color: #fe6d6a;
 border-radius: 0; 
 opacity: 0;
}
.checkbox-group .checkbox input[type="checkbox"]:checked + .checkbox-box::after {
 opacity: 1;
}