@charset "UTF-8";
@font-face {
  font-family: logistics-icon-font;
  src: url("/fonts/user-fonts/logistics-icon-font.woff") format("woff");
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: OpenSans;
  src: local("OpenSans"), local("OpenSans-Regular");
  src: url("/fonts/user-fonts/OpenSans/OpenSans-Regular.woff2") format("woff2");
  src: url("/fonts/user-fonts/OpenSans/OpenSans-Regular.woff") format("woff");
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: OpenSans;
  src: local("OpenSans"), local("OpenSans-SemiBold");
  src: url("/fonts/user-fonts/OpenSans/OpenSans-SemiBold.woff2") format("woff2");
  src: url("/fonts/user-fonts/OpenSans/OpenSans-SemiBold.woff") format("woff");
  font-style: normal;
  font-weight: 600;
}
@font-face {
  font-family: OpenSans;
  src: local("OpenSans"), local("OpenSans-ExtraBold");
  src: url("/fonts/user-fonts/OpenSans/OpenSans-ExtraBold.woff2") format("woff2");
  src: url("/fonts/user-fonts/OpenSans/OpenSans-ExtraBold.woff") format("woff");
  font-style: normal;
  font-weight: 800;
}
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  scrollbar-color: #FF3A3A black;
  scrollbar-width: thin;
}
*::-webkit-scrollbar {
  background: black;
  width: 5px;
}
*::-webkit-scrollbar-thumb {
  background: #FF3A3A;
  border: 1px solid black;
}

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

ul, li {
  list-style-type: none;
}

html,
body,
header,
main,
footer {
  display: flex;
}

body {
  min-height: 100%;
  overflow-x: hidden;
}

html,
body,
main {
  flex-direction: column;
  flex-grow: 1;
}

body {
  font-family: OpenSans, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.4;
  color: #282828;
  font-weight: 400;
}

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

a {
  text-decoration: none;
  color: inherit;
}

input:focus,
textarea:focus,
select:focus,
button:focus {
  outline: none;
}

textarea {
  resize: none;
}

button {
  cursor: pointer;
}

.form {
  display: flex;
  flex-direction: column;
}

.form-login__title.title {
  text-align: center;
  margin-bottom: 25px;
}
.form-login .input-group {
  margin-bottom: 15px;
}
.form-login__checkbox-stay {
  margin: 5px 0 17px;
}
.form-login__submit.button {
  width: 224px;
  align-self: center;
}
@media screen and (max-width: 460px) {
  .form-login__submit.button {
    width: 600%;
  }
}

.form-search {
  position: relative;
}
.form-search__submit {
  display: flex;
  width: 20px;
  height: 20px;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: transparent;
}
.form-search__submit:before {
  content: "";
  font-family: logistics-icon-font;
  font-size: 16px;
  line-height: 1;
  color: black;
  font-weight: 400;
}
.form-search .input-group__input.input {
  padding-right: 38px;
}

.form-filter__inputs {
  display: grid;
  grid-row-gap: 15px;
  grid-column-gap: 17px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
  margin-bottom: 15px;
}
@media screen and (max-width: 560px) {
  .form-filter__inputs {
    grid-template-columns: minmax(0, 1fr);
  }
}
.form-filter__buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.form-filter__apply.button {
  width: 236px;
}
.form-filter_companies .form-filter__group-area {
  grid-column: 1/-1;
}

.form-process-company__inputs {
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-gap: 11px 15px;
}
.form-process-company__inputs .input-group,
.form-process-company__inputs .select-group {
  grid-column: 1/span 2;
}
.form-process-company__buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 560px) {
  .form-process-company__buttons {
    flex-direction: column;
  }
}
.form-process-company__save.button {
  width: 50%;
  width: 100%;
}
@media screen and (max-width: 560px) {
  .form-process-company__save.button {
    width: 100%;
    margin-bottom: 10px;
  }
}
.form-process-company__create.button {
  width: calc(50% - 20px);
}
@media screen and (max-width: 560px) {
  .form-process-company__create.button {
    width: 100%;
  }
}

.form-create-order__inputs {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.form-create-order__section {
  width: calc(50% - 136px / 2);
}
@media screen and (max-width: 1240px) {
  .form-create-order__section {
    width: calc(50% - 30px / 2);
  }
}
@media screen and (max-width: 600px) {
  .form-create-order__section {
    width: 100%;
    margin-bottom: 15px;
  }
  .form-create-order__section:last-child {
    margin-bottom: 0;
  }
}
.form-create-order__section > .input-group, .form-create-order__section > .form-create-order__pair, .form-create-order__section > .select-group {
  margin-bottom: 15px;
}
.form-create-order__section > .input-group:last-child, .form-create-order__section > .form-create-order__pair:last-child, .form-create-order__section > .select-group:last-child {
  margin-bottom: 0;
}
.form-create-order__section .input-group_textarea .input-group__input {
  height: 95px;
}
.form-create-order .form-create-order__pair {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.form-create-order .form-create-order__pair > * {
  width: calc(50% - 12px / 2);
}
@media screen and (max-width: 768px) {
  .form-create-order .form-create-order__pair > * {
    width: 100%;
    margin-bottom: 15px;
  }
  .form-create-order .form-create-order__pair > *:last-child {
    margin-bottom: 0;
  }
}
.form-create-order__submit.button {
  margin-left: auto;
}
@media screen and (max-width: 600px) {
  .form-create-order__submit.button {
    width: 100%;
    margin: 0;
  }
}
.form-create-order__block {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
}
.form-create-order__title {
  font-family: OpenSans, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.3;
  color: black;
  font-weight: 600;
  padding: 0;
  margin: 0;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .form-create-order__title {
    font-size: 16px;
  }
}
.form-create-order__var-input-group {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 15px;
}
.form-create-order__var-input-group:last-child {
  margin-bottom: 0;
}
.form-create-order__var-input-group .input-group {
  width: 100%;
}
.form-create-order__var-input-button-box {
  width: 15px;
  margin-left: 15px;
}
.form-create-order__var-input-more {
  padding: 0;
  margin: 0;
  font-family: OpenSans, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.3;
  color: black;
  font-weight: 600;
  text-decoration: underline;
  margin-left: auto;
  border: none;
  background-color: transparent;
  cursor: pointer;
  margin-right: 35px;
}
.form-create-order__var-input-more:focus {
  outline: none;
}

.closer {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 20px;
  height: 20px;
}
.closer:after, .closer:before {
  position: absolute;
  content: "";
  width: 130%;
  height: 2px;
  background-color: #000;
}
.closer:after {
  transform: rotate(45deg);
}
.closer:before {
  transform: rotate(-45deg);
}

.input-group_full {
  width: 100%;
}
.input-group:not([disabled]):hover .input-group__wrapper {
  border-color: black;
}
.input-group_focus .input-group__wrapper {
  border-color: black;
}
.input-group_error .input-group__wrapper {
  border-color: #FF6969 !important;
}
.input-group_error:not([disabled]):hover .input-group__wrapper {
  border-color: #FF6969 !important;
}
.input-group_error .input-group__input::-webkit-placeholder, .input-group_error .input-group__input::placeholder {
  color: #FF3A3A !important;
}
.input-group__wrapper {
  display: flex;
  align-items: center;
  border-radius: 20px;
  border: 1px solid #DEDEDE;
  overflow: hidden;
}
.input-group__input {
  height: 40px;
  flex-grow: 1;
  padding: 0 17px;
  width: 100%;
}
.input-group__input_small {
  height: 32px;
}
.input-group__error-message {
  font-family: OpenSans, Arial, sans-serif;
  font-size: 12px;
  line-height: 1;
  color: #FF3A3A;
  font-weight: 400;
  padding: 5px 20px 0 20px;
}
.input-group__error-message_red {
  background-color: #FF6969;
  font-family: OpenSans, Arial, sans-serif;
  font-size: 13px;
  line-height: 1;
  color: white;
  font-weight: 400;
  padding: 8px 15px;
  border-radius: 10px;
  margin-top: 10px;
}
.input-group_white .input-group__wrapper {
  border-color: white;
}
.input-group_white .input-group__input {
  color: white;
}
.input-group_white .input-group__input::-webkit-placeholder, .input-group_white .input-group__input::placeholder {
  color: #ccc;
}
.input-group_white.input-group_focus .input-group__wrapper {
  border-color: white;
}
.input-group_white:not([disabled]):hover .input-group__wrapper {
  border-color: white;
}
.input-group_date .input-group__input {
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}
.input-group_date .input-group__input::-webkit-calendar-picker-indicator {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  opacity: 0;
}
.input-group_date .input-group__wrapper {
  position: relative;
}
.input-group_date .input-group__wrapper:after {
  content: "";
  display: block;
  font-family: logistics-icon-font;
  font-size: 13px;
  line-height: 1;
  color: #aaa;
  font-weight: 400;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.input-group_textarea .input-group__input {
  height: 70px;
  padding-top: 10px;
}
.input-group_textarea .input-group__input::-webkit-placeholder, .input-group_textarea .input-group__input::placeholder {
  padding-top: 0;
  line-height: 15px;
}

.radio-group {
  position: relative;
}
.radio-group__input {
  position: absolute;
  top: 9px;
  left: 7px;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.radio-group__label {
  position: relative;
  font-family: OpenSans, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.4;
  color: #000;
  font-weight: 400;
  cursor: pointer;
}
.radio-group__label:before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 1px solid #848484;
  border-radius: 50%;
  margin-right: 10px;
  position: relative;
  top: 3px;
  box-sizing: border-box;
}
.radio-group__input:checked + .radio-group__label:before {
  border: 5px solid #000;
}
.radio-group_white .radio-group__label {
  color: white;
}
.radio-group_white .radio-group__label:before {
  border-color: white;
}
.radio-group_white .radio-group__input:checked + .radio-group__label:before {
  border: 5px solid white;
}

.checkbox-group {
  position: relative;
}
.checkbox-group__input {
  position: absolute;
  top: 9px;
  left: 7px;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.checkbox-group__label {
  position: relative;
  font-family: OpenSans, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.4;
  color: #000;
  font-weight: 400;
  cursor: pointer;
}
.checkbox-group__label:before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 1px solid #848484;
  border-radius: 50%;
  margin-right: 10px;
  position: relative;
  top: 3px;
  box-sizing: border-box;
}
.checkbox-group__input:checked + .checkbox-group__label:before {
  border: 5px solid #000;
}
.checkbox-group_white .checkbox-group__label {
  color: white;
}
.checkbox-group_white .checkbox-group__label:before {
  border-color: white;
}
.checkbox-group_white .checkbox-group__input:checked + .checkbox-group__label:before {
  border: 5px solid white;
}

.input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: OpenSans, Arial, sans-serif;
  font-size: 15px;
  line-height: 1;
  color: black;
  font-weight: 400;
  border: none;
  background-color: transparent;
}
.input::-webkit-placeholder, .input::placeholder {
  font-family: OpenSans, Arial, sans-serif;
  font-size: 15px;
  line-height: 38px;
  color: rgba(0, 0, 0, 0.6);
  font-weight: 400;
}
.input[type=number] {
  -moz-appearance: textfield;
}
.input[type=number]::-webkit-outer-spin-button, .input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  appearance: none;
}

.logo {
  display: flex;
  align-items: center;
  width: 128px;
  position: relative;
}
.logo:active {
  top: 2px;
}
.logo__img {
  display: flex;
}

.title {
  font-family: OpenSans, Arial, sans-serif;
  font-size: 20px;
  line-height: 1.4;
  color: black;
  font-weight: 600;
}
.title_big {
  font-size: 30px;
}
@media screen and (max-width: 768px) {
  .title_big {
    font-size: 20px;
  }
}

.button {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  border-radius: 50px;
  max-width: 100%;
  border: 1px solid #212121;
  width: 236px;
  background-color: #212121;
  font-family: OpenSans, Arial, sans-serif;
  font-size: 14px;
  line-height: 1;
  color: white;
  font-weight: 400;
  padding: 0 20px;
  transition: 0.2s;
  cursor: pointer;
  position: relative;
  text-align: center;
}
.button:not([disabled]):hover {
  background-color: #414141;
  border-color: #414141;
}
.button_white {
  background-color: white;
  color: black;
}
.button_white:not([disabled]):hover {
  background-color: #212121;
  border-color: #212121;
  color: white;
}
.button_white-full {
  background-color: white;
  border-color: white;
  color: black;
}
.button_white-full:not([disabled]):hover {
  background-color: black;
  border-color: black;
  color: white;
}
.button_link {
  background: transparent;
  border: none;
  color: black;
  text-decoration: underline;
  width: auto;
  padding: 0 10px;
}
.button_link:not([disabled]):hover {
  background: transparent;
}
.button_search:before {
  content: "";
  font-family: logistics-icon-font;
  font-size: 16px;
  line-height: 1;
  color: white;
  font-weight: 400;
  display: inline-block;
  margin-right: 10px;
  margin-left: -20px;
  z-index: 1;
}

.responsive-button {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  border-radius: 50px;
  max-width: 100%;
  border: 1px solid #212121;
  background-color: #212121;
  font-family: OpenSans, Arial, sans-serif;
  font-size: 14px;
  line-height: 1;
  color: white;
  font-weight: 400;
  padding: 0 20px;
  transition: 0.2s;
  cursor: pointer;
  position: relative;
  text-align: center;
}
.responsive-button:not([disabled]):hover {
  background-color: #414141;
  border-color: #414141;
}
.responsive-button_mobile-600 .responsive-button__content_desktop {
  display: flex;
}
@media screen and (max-width: 600px) {
  .responsive-button_mobile-600 .responsive-button__content_desktop {
    display: none;
  }
}
.responsive-button_mobile-600 .responsive-button__content_mobile {
  display: none;
}
@media screen and (max-width: 600px) {
  .responsive-button_mobile-600 .responsive-button__content_mobile {
    display: flex;
  }
}
.responsive-button_mobile-600 .responsive-button__content_big {
  font-size: 24px;
  font-weight: 700;
}

.burger {
  display: flex;
  align-items: center;
  width: 23px;
  height: 16px;
  position: relative;
  cursor: pointer;
}
.burger__layer {
  width: 100%;
  height: 2px;
  background-color: white;
  position: absolute;
  left: 0;
}
.burger__layer:nth-child(1) {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.burger__layer:nth-child(2) {
  transition: 0.2s;
  top: calc(50% - 1px);
}
.burger__layer:nth-child(3) {
  transition: 0.2s;
  top: calc(50% - 1px);
}
.burger__layer:nth-child(4) {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.burger.js-trigger-active .burger__layer:nth-child(1) {
  width: 0;
}
.burger.js-trigger-active .burger__layer:nth-child(2) {
  transform: rotate(45deg);
}
.burger.js-trigger-active .burger__layer:nth-child(3) {
  transform: rotate(-45deg);
}
.burger.js-trigger-active .burger__layer:nth-child(4) {
  width: 0;
}

.account-info {
  display: flex;
  padding: 8px 10px 3px 25px;
}
.account-info__media {
  width: 70px;
  height: 70px;
  border-radius: 9999999px/9999999px;
  margin-right: 10px;
  border: 5px solid #212121;
  position: relative;
  top: -20px;
  flex-shrink: 0;
}
.account-info__avatar {
  height: 100%;
  width: 100%;
  display: flex;
  border-radius: 9999999px/9999999px;
}
.account-info__details {
  display: flex;
  flex-direction: column;
}
.account-info__name {
  font-family: OpenSans, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.3;
  color: white;
  font-weight: 400;
  margin-bottom: 7px;
}
.account-info__email {
  font-family: OpenSans, Arial, sans-serif;
  font-size: 13px;
  line-height: 1.3;
  color: #AFAFAF;
  font-weight: 400;
  word-break: break-word;
}
.account-info__email:hover {
  text-decoration: underline;
}

.icon {
  position: relative;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.icon:before {
  font-family: logistics-icon-font;
  font-size: 20px;
  line-height: 1;
  color: black;
  font-weight: 400;
}
.icon_white:before {
  color: white;
}
.icon_building:before {
  content: "";
}
.icon_car:before {
  content: "";
}

.pseudo-icon:before {
  font-family: logistics-icon-font;
  font-size: 20px;
  line-height: 1;
  color: black;
  font-weight: 400;
}
.pseudo-icon_building:before {
  content: "";
}
.pseudo-icon_car:before {
  content: "";
}
.pseudo-icon_exit:before {
  content: "";
}

.copyright {
  font-family: OpenSans, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #C7C7C7;
  font-weight: 400;
}

.company-details {
  padding: 20px;
  background-color: white;
  border-radius: 30px;
  display: grid;
  grid-column-gap: 20px;
  grid-template-columns: minmax(130px, 42%) 58%;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 768px) {
  .company-details {
    padding: 20px 10px 20px 15px;
    border-radius: 20px;
  }
}
@media screen and (max-width: 560px) {
  .company-details {
    grid-template-columns: minmax(0, 1fr);
    grid-column-gap: 0;
    grid-row-gap: 20px;
  }
}
.company-details__right-block {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) minmax(150px, 1fr);
  grid-gap: 11px 15px;
}
@media screen and (max-width: 1366px) {
  .company-details__right-block {
    grid-gap: 11px 8px;
  }
}
.company-details__right-block .text-pair:last-child {
  grid-column-start: 1;
  grid-column-end: -1;
}
.company-details__name {
  display: block;
  font-family: OpenSans, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: black;
  font-weight: 600;
  margin-bottom: 8px;
}
.company-details__name:not([disabled]):hover {
  text-decoration: underline;
}
.company-details__status-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media screen and (max-width: 560px) {
  .company-details__status-block {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.company-details__status {
  margin-bottom: 4px;
}
@media screen and (max-width: 560px) {
  .company-details__status {
    margin-right: 20px;
  }
}

.company-status {
  font-family: OpenSans, Arial, sans-serif;
  font-size: 12px;
  line-height: 1;
  color: white;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 16px;
  border-radius: 4px;
}
.company-status_green {
  background-color: #49D08F;
}
.company-status_gray {
  background-color: #BDBDBD;
}
.company-status_orange {
  background-color: #EB4432;
}
.company-status_yellow {
  background-color: #D7B640;
}
.company-status_white {
  background-color: #fff;
  color: #282828;
  border: 1px solid gray;
}

.select-group:not([disabled]):hover .select-group__select.custom-select {
  border-color: black;
}
.select-group__select.custom-select {
  width: 100%;
}
.select-group__err-msg {
  font-family: OpenSans, Arial, sans-serif;
  font-size: 12px;
  line-height: 1.3;
  color: #FF3A3A;
  font-weight: 400;
  margin-top: 5px;
  padding: 0 15px;
}
.select-group_error .custom-select,
.select-group_error .multi-select {
  border-color: #FF3A3A;
}
.select-group_error .custom-select:before,
.select-group_error .multi-select:before {
  border-color: #FF3A3A transparent transparent transparent;
}
.select-group_error .custom-select__label,
.select-group_error .multi-select__label {
  color: #FF3A3A;
}
.select-group_error .custom-select__label::-webkit-placeholder, .select-group_error .custom-select__label::placeholder,
.select-group_error .multi-select__label::-webkit-placeholder,
.select-group_error .multi-select__label::placeholder {
  color: #FF3A3A;
}
.select-group_error:not([disabled]):hover .select-group__select.custom-select {
  border-color: #FF3A3A;
}

.custom-select {
  height: 40px;
  border: 1px solid #DEDEDE;
  border-radius: 20px;
  display: flex;
  align-items: center;
  padding-left: 15px;
  padding-right: 25px;
  position: relative;
}
.custom-select_selected {
  border-color: black;
}
.custom-select:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 4px 0 4px;
  border-color: #9a9a9a transparent transparent transparent;
  display: block;
  position: absolute;
  right: 10px;
  z-index: 1;
  @inclue centerY();
}
.custom-select__label, .custom-select__input {
  font-family: OpenSans, Arial, sans-serif;
  font-size: 14px;
  line-height: 1;
  color: black;
  font-weight: 400;
  flex-grow: 1;
  height: 100%;
  width: 100%;
  border: none;
  padding-bottom: 3px;
  background-color: transparent;
}
.custom-select__dropdown {
  display: none;
  position: absolute;
  left: -1px;
  top: 100%;
  z-index: 3;
  background-color: white;
  width: calc(100% + 2px);
  border: 1px solid #DEDEDE;
  border-top: none;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
  max-height: 200px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.08);
}
.custom-select__options {
  max-height: 200px;
  overflow-y: auto;
  padding-bottom: 5px;
}
.custom-select__option {
  font-family: OpenSans, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.2;
  color: black;
  font-weight: 400;
  padding: 5px 14px 6px;
  transition: 0.2s;
  cursor: pointer;
}
.custom-select__option:not([disabled]):hover {
  background-color: #F4F4F4;
}
.custom-select_show {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-color: transparent;
}
.custom-select_show:before {
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
}
.custom-select_show .custom-select__dropdown {
  display: block;
}

.multi-select {
  height: 40px;
  border: 1px solid #DEDEDE;
  border-radius: 20px;
  display: flex;
  align-items: center;
  padding-left: 15px;
  padding-right: 25px;
  position: relative;
}
.multi-select_selected {
  border-color: black;
}
.multi-select:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 4px 0 4px;
  border-color: #9a9a9a transparent transparent transparent;
  display: block;
  position: absolute;
  right: 10px;
  z-index: 1;
  @inclue centerY();
}
.multi-select__label {
  font-family: OpenSans, Arial, sans-serif;
  font-size: 14px;
  line-height: 1;
  color: black;
  font-weight: 400;
  flex-grow: 1;
  height: 100%;
  width: 100%;
  border: none;
  padding-bottom: 3px;
  background-color: transparent;
}
.multi-select__search {
  margin: 10px;
}
.multi-select__dropdown {
  display: none;
  position: absolute;
  left: -1px;
  top: 100%;
  z-index: 3;
  background-color: white;
  width: calc(100% + 2px);
  border: 1px solid #DEDEDE;
  border-top: none;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
  max-height: 200px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.08);
}
.multi-select__options {
  max-height: 200px;
  overflow-y: auto;
  padding-bottom: 5px;
}
.multi-select__option {
  font-family: OpenSans, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.2;
  color: black;
  font-weight: 400;
  padding: 5px 14px 6px;
  transition: 0.2s;
  cursor: pointer;
}
.multi-select__option:not([disabled]):hover {
  background-color: #F4F4F4;
}
.multi-select_show {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-color: transparent;
}
.multi-select_show:before {
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
}
.multi-select_show .multi-select__dropdown {
  display: block;
}

.multi-select-result {
  display: flex;
  flex-wrap: wrap;
  margin-top: 5px;
}
.multi-select-result .multi-option {
  margin-right: 6px;
  margin-bottom: 6px;
}

.multi-option {
  display: flex;
  align-items: center;
  border-radius: 20px;
  border: 1px solid #DEDEDE;
  padding: 4px 10px;
  cursor: pointer;
}
.multi-option__label {
  font-family: OpenSans, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.2;
  color: black;
  font-weight: 400;
  background: #F8F8F8;
  box-sizing: border-box;
}
.multi-option__closer {
  background: #DEDEDE;
  border: 1px solid #DEDEDE;
  width: 14px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  margin-left: 10px;
}
.multi-option__closer:before, .multi-option__closer:after {
  content: "";
  width: 58%;
  height: 1px;
  display: block;
  position: absolute;
  background: #9A9A9A;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.multi-option__closer:after {
  transform: translate(-50%, -50%) rotate(45deg);
}

.back-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 16px;
  position: relative;
}
.back-link:before {
  content: "";
  font-family: logistics-icon-font;
  font-size: 16px;
  line-height: 1;
  color: black;
  font-weight: 400;
  display: block;
}

.company-summary {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.08);
  border-radius: 30px;
  border: 1px solid #888;
  background-color: #eee;
  padding: 20px 10px 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media screen and (max-width: 600px) {
  .company-summary {
    border-radius: 20px;
    padding: 14px 10px 16px;
  }
}
.company-summary__content {
  min-width: 185px;
}
@media screen and (max-width: 600px) {
  .company-summary__content {
    width: 100%;
    min-width: auto;
  }
}
.company-summary__count {
  margin-bottom: 3px;
}
.company-summary__number {
  font-family: OpenSans, Arial, sans-serif;
  font-size: 34px;
  line-height: 1.26;
  color: black;
  font-weight: 600;
}
@media screen and (max-width: 600px) {
  .company-summary__number {
    font-size: 16px;
  }
}
.company-summary__unit {
  font-family: OpenSans, Arial, sans-serif;
  font-size: 13px;
  line-height: 1.23;
  color: black;
  font-weight: 600;
}
.company-summary__desc {
  font-family: OpenSans, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.23;
  color: black;
  font-weight: 400;
}
.company-summary_small-number .company-summary__number {
  font-size: 26px;
}
@media screen and (max-width: 600px) {
  .company-summary_small-number .company-summary__number {
    font-size: 14px;
  }
}
.company-summary_small-number .company-summary__count {
  margin-bottom: 5px;
}
.company-summary_purple {
  border-color: #9244B7;
  background-color: #faf7fc;
}
.company-summary_purple .company-summary__number, .company-summary_purple .company-summary__unit {
  color: #9244B7;
}
.company-summary_violet {
  border-color: #4F4499;
  background-color: #EBE9F8;
}
.company-summary_violet .company-summary__number, .company-summary_violet .company-summary__unit {
  color: #4F4499;
}
.company-summary_orange {
  border-color: #EC8F72;
  background-color: #F8EDEA;
}
.company-summary_orange .company-summary__number, .company-summary_orange .company-summary__unit {
  color: #EC8F72;
}
.company-summary_yellow {
  border-color: #D7B640;
  background-color: #FBF6E6;
}
.company-summary_yellow .company-summary__number, .company-summary_yellow .company-summary__unit {
  color: #D7B640;
}
.company-summary_magenta {
  border-color: #CC4094;
  background-color: #FEFAFC;
}
.company-summary_magenta .company-summary__number, .company-summary_magenta .company-summary__unit {
  color: #CC4094;
}
@media screen and (max-width: 600px) {
  .company-summary_mobile-wide {
    grid-column: 1/-1;
  }
  .company-summary_mobile-wide .company-summary__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 400px;
  }
  .company-summary_mobile-wide .company-summary__count {
    flex-shrink: 0;
    margin-right: 10px;
  }
  .company-summary_mobile-wide .company-summary__desc {
    max-width: 140px;
  }
}

.del-button {
  border: none;
  display: flex;
  align-content: inherit;
  justify-content: center;
  position: relative;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  background-color: #ED7269;
}
.del-button:before, .del-button:after {
  content: "";
  width: 6px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: calc(50% + 0px);
  left: calc(50% - 0px);
  transform: translate(-50%, -50%) rotate(45deg);
}
.del-button:before {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.color-tag {
  font-family: OpenSans, Arial, sans-serif;
  font-size: 12px;
  line-height: 1.5;
  color: #000;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px 15px;
  border-radius: 4px;
  border: 1px solid #000;
  background: transparent;
}
.color-tag_green {
  border-color: #49D08F;
  background-color: #49D08F;
  color: #fff;
}
.color-tag_darkgreen {
  border-color: #6daa8d;
  background-color: #6daa8d;
  color: #fff;
}
.color-tag_yellow {
  border-color: #D7B640;
  background-color: #D7B640;
  color: #fff;
}
.color-tag_red {
  border-color: #EB4432;
  background-color: #EB4432;
  color: #fff;
}
.color-tag_black {
  border-color: #000;
  background-color: #000;
  color: #fff;
}

.user-actions {
  display: flex;
  align-items: center;
}
.user-actions__action {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 5px;
  background: transparent;
  border: none;
  transition: 0.2s;
  cursor: pointer;
}
.user-actions__action:last-child {
  margin-right: 0;
}
.user-actions__action:not([disabled]):hover {
  transform: scale(1.25);
}

.tag-input {
  padding: 5px 15px;
  width: 200px;
  display: flex;
}
.tag-input__label {
  margin-right: 15px;
}
.tag-input__control {
  flex-shrink: 1;
  flex-grow: 1;
  width: 100%;
  height: 26px;
  padding: 0 10px;
  background: white;
  border: none;
  border-bottom: 1px solid #000;
}
.tag-input_small {
  width: 130px;
}
.tag-input_small .tag-input__control {
  height: 20px;
}

.user-comment {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.user-comment__section:nth-child(1), .user-comment__section:nth-child(2) {
  width: calc(20% - 20px);
}
@media screen and (max-width: 1340px) {
  .user-comment__section:nth-child(1), .user-comment__section:nth-child(2) {
    width: calc(50% - 20px);
  }
}
@media screen and (max-width: 600px) {
  .user-comment__section:nth-child(1), .user-comment__section:nth-child(2) {
    width: 100%;
  }
}
.user-comment__section:nth-child(3) {
  width: calc(60% - 20px);
}
@media screen and (max-width: 1340px) {
  .user-comment__section:nth-child(3) {
    width: 100%;
  }
}
.user-comment__author {
  display: flex;
  flex-direction: column;
}
.user-comment .text-common {
  word-break: break-word;
}

.text-common {
  padding: 0;
  margin: 0;
  font-family: OpenSans, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.4;
  color: #282828;
  font-weight: 400;
}

.text-label {
  padding: 0;
  margin: 0;
  font-family: OpenSans, Arial, sans-serif;
  font-size: 13px;
  line-height: 1.5;
  color: #8C8C8C;
  font-weight: 600;
}

.text-pair__label {
  font-family: OpenSans, Arial, sans-serif;
  font-size: 13px;
  line-height: 1.5;
  color: #8C8C8C;
  font-weight: 600;
  margin-bottom: 1px;
}
.text-pair__text {
  font-family: OpenSans, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.4;
  color: #282828;
  font-weight: 400;
}

.text-arrow {
  margin: 0 14px;
}
.text-arrow:before {
  content: "";
  font-family: logistics-icon-font;
  font-size: 8px;
  line-height: 1;
  color: black;
  font-weight: 800;
  position: relative;
  top: -1px;
}

.text-fw-600 {
  font-weight: 600;
}

.carriers-list {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.carriers-list .carrier-card {
  margin-bottom: 10px;
}

.carrier-card {
  background-color: white;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.08);
  border-radius: 30px;
}
@media screen and (max-width: 600px) {
  .carrier-card {
    border-radius: 15px;
  }
}
.carrier-card__body, .carrier-card__footer {
  padding: 17px 23px 20px;
  border-bottom: 1px solid #EBEBEB;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 1430px) {
  .carrier-card__body, .carrier-card__footer {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 600px) {
  .carrier-card__body, .carrier-card__footer {
    flex-direction: column;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.carrier-card__body {
  padding-bottom: 10px;
}
.carrier-card__footer {
  padding-bottom: 13px;
}
.carrier-card__section {
  margin-bottom: 10px;
}
.carrier-card__section_name {
  width: calc(20% - 15px);
  min-width: 150px;
  margin-right: 15px;
}
.carrier-card__section_directions {
  width: calc(30% - 15px);
  margin-right: 15px;
  flex-grow: 1;
}
.carrier-card__section_contacts {
  width: calc(40% - 15px);
  min-width: 320px;
  margin-right: 15px;
}
@media screen and (max-width: 1700px) {
  .carrier-card__section_contacts {
    min-width: 180px;
    width: calc(25% - 15px);
  }
}
.carrier-card__section_pinned {
  width: calc(10% - 15px);
  min-width: 80px;
}
.carrier-card__section_vehicles {
  width: calc(20% - 15px);
  flex-shrink: 0;
  margin-right: 15px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1430px) {
  .carrier-card__section_vehicles {
    width: 90px;
  }
}
.carrier-card__section_documents {
  width: calc(30% - 15px);
  flex-shrink: 0;
  margin-right: 15px;
}
@media screen and (max-width: 1430px) {
  .carrier-card__section_documents {
    flex-grow: 1;
    margin-right: 0;
  }
}
.carrier-card__section_attributes {
  justify-content: flex-end;
  flex-grow: 1;
}
@media screen and (max-width: 1430px) {
  .carrier-card__section_attributes {
    width: 100%;
    margin-left: 105px;
    justify-content: flex-start;
  }
}
.carrier-card__section_documents, .carrier-card__section_attributes {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.carrier-card__section_documents .color-tag, .carrier-card__section_attributes .color-tag {
  margin-right: 5px;
  margin-bottom: 5px;
}
@media screen and (max-width: 1430px) {
  .carrier-card__section_name, .carrier-card__section_directions, .carrier-card__section_contacts, .carrier-card__section_pinned {
    width: calc(50% - 8px);
    flex-grow: 0;
    margin-right: 0;
  }
}
@media screen and (max-width: 1430px) {
  .carrier-card__section_directions, .carrier-card__section_contacts {
    order: 2;
  }
}
@media screen and (max-width: 600px) {
  .carrier-card__section_name, .carrier-card__section_directions, .carrier-card__section_contacts, .carrier-card__section_pinned, .carrier-card__section_vehicles, .carrier-card__section_documents, .carrier-card__section_attributes {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}
@media screen and (max-width: 600px) {
  .carrier-card__section_directions, .carrier-card__section_contacts {
    order: 0;
  }
}
.carrier-card__name {
  word-break: break-word;
  display: block;
  font-family: OpenSans, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: black;
  font-weight: 600;
  margin-bottom: 8px;
}
.carrier-card__name:not([disabled]):hover {
  text-decoration: underline;
}
.carrier-card__contacts-box .complex-contacts {
  margin-top: 10px;
}
.carrier-card__contacts-box .complex-contacts:first-child {
  margin-top: 0px;
}
.carrier-card__vehicles-count {
  padding: 0;
  margin: 0;
  font-family: OpenSans, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.4;
  color: green;
  font-weight: 600;
}
@media screen and (max-width: 1700px) {
  .carrier-card .complex-contacts {
    flex-direction: column;
  }
}
@media screen and (max-width: 1700px) {
  .carrier-card .complex-contacts__section {
    width: 100%;
  }
}

.carrier-item-card {
  background-color: white;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.08);
  border-radius: 30px;
}
.carrier-item-card__section {
  border-bottom: 1px solid #EBEBEB;
  padding: 17px 23px 20px;
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}
@media screen and (max-width: 960px) {
  .carrier-item-card__section .carrier-item-card-info-section {
    margin-bottom: 10px;
  }
  .carrier-item-card__section .carrier-item-card-info-section:last-child {
    margin-bottom: 0;
  }
}
.carrier-item-card__section .carrier-item-card-info-section:nth-child(1), .carrier-item-card__section .carrier-item-card-info-section:nth-child(2) {
  width: calc(30% - 10px);
  margin-right: 15px;
}
.carrier-item-card__section .carrier-item-card-info-section:nth-child(3) {
  width: calc(40% - 10px);
}
@media screen and (max-width: 960px) {
  .carrier-item-card__section .carrier-item-card-info-section:nth-child(1) {
    margin-right: 20px;
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 960px) {
  .carrier-item-card__section .carrier-item-card-info-section:nth-child(2) {
    margin-right: 0;
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 960px) {
  .carrier-item-card__section .carrier-item-card-info-section:nth-child(3) {
    width: 100%;
  }
}
@media screen and (max-width: 500px) {
  .carrier-item-card__section .carrier-item-card-info-section:nth-child(1), .carrier-item-card__section .carrier-item-card-info-section:nth-child(2), .carrier-item-card__section .carrier-item-card-info-section:nth-child(3) {
    width: 100%;
    margin-right: 0;
  }
}
.carrier-item-card__section .user-comment {
  width: 100%;
}
.carrier-item-card__section_no-border {
  border-color: transparent;
}
.carrier-item-card__header-section {
  border-bottom: 1px solid #EBEBEB;
  padding: 17px 23px 20px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
@media screen and (max-width: 1340px) {
  .carrier-item-card__header-section {
    flex-wrap: wrap;
    padding-bottom: 7px;
  }
}
.carrier-item-card__header-section .carrier-item-card-info-section {
  flex-shrink: 0;
}
.carrier-item-card__header-section .carrier-item-card-info-section:nth-child(1) {
  width: 210px;
  margin-right: 15px;
}
.carrier-item-card__header-section .carrier-item-card-info-section:nth-child(2) {
  width: 220px;
  margin-right: 15px;
}
.carrier-item-card__header-section .carrier-item-card-info-section:nth-child(3) {
  margin-right: 15px;
  flex-grow: 1;
  flex-shrink: 1;
}
.carrier-item-card__header-section .carrier-item-card-info-section:nth-child(4) {
  width: 260px;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
}
@media screen and (max-width: 1340px) {
  .carrier-item-card__header-section .carrier-item-card-info-section:nth-child(1), .carrier-item-card__header-section .carrier-item-card-info-section:nth-child(2), .carrier-item-card__header-section .carrier-item-card-info-section:nth-child(3), .carrier-item-card__header-section .carrier-item-card-info-section:nth-child(4) {
    margin-right: 0;
    margin-bottom: 10px;
    width: calc(50% - 10px);
    flex-grow: 0;
  }
}
@media screen and (max-width: 600px) {
  .carrier-item-card__header-section .carrier-item-card-info-section:nth-child(1), .carrier-item-card__header-section .carrier-item-card-info-section:nth-child(2), .carrier-item-card__header-section .carrier-item-card-info-section:nth-child(3), .carrier-item-card__header-section .carrier-item-card-info-section:nth-child(4) {
    width: 100%;
  }
}
@media screen and (max-width: 1340px) {
  .carrier-item-card__header-section .carrier-item-card-info-section:nth-child(4) {
    justify-content: flex-start;
  }
}
.carrier-item-card__operator {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
@media screen and (max-width: 600px) {
  .carrier-item-card__operator-button {
    margin-left: auto;
  }
}
.carrier-item-card__add-contact-button.button {
  margin-left: auto;
}
.carrier-item-card__destinations, .carrier-item-card__vehicle-types, .carrier-item-card__documents, .carrier-item-card__ecmts, .carrier-item-card__tags {
  display: flex;
  flex-wrap: wrap;
}
.carrier-item-card__destination.color-tag, .carrier-item-card__vehicle-type.tag-input, .carrier-item-card__ecmt.tag-input, .carrier-item-card__document.color-tag, .carrier-item-card__document.tag-input, .carrier-item-card__tag.color-tag {
  margin-right: 5px;
  margin-bottom: 5px;
}
@media screen and (max-width: 850px) {
  .carrier-item-card__vehicle-type.tag-input {
    width: calc(33% - 5px);
  }
}
@media screen and (max-width: 600px) {
  .carrier-item-card__vehicle-type.tag-input {
    width: calc(49% - 5px);
  }
}
@media screen and (max-width: 430px) {
  .carrier-item-card__vehicle-type.tag-input {
    width: 100%;
  }
}
@media screen and (max-width: 430px) {
  .carrier-item-card__ecmt.tag-input {
    width: calc(49% - 5px);
  }
}
.carrier-item-card__comment-block .input {
  height: 100px;
}
.carrier-item-card__add-comment.color-tag {
  width: 200px;
  margin-top: 10px;
}

.carrier-item-card-info-section {
  display: flex;
  flex-direction: column;
}
.carrier-item-card-info-section_tools {
  flex-direction: row;
  align-items: center;
}
@media screen and (max-width: 500px) {
  .carrier-item-card-info-section_tools {
    flex-direction: column;
    align-items: stretch;
  }
}
.carrier-item-card-info-section__actions.user-actions {
  margin-left: auto;
  padding-left: 100px;
}
@media screen and (max-width: 500px) {
  .carrier-item-card-info-section__actions.user-actions {
    padding-left: 0;
  }
}
.carrier-item-card-info-section .text-common {
  word-break: break-word;
}

.complex-contacts {
  display: flex;
  justify-content: space-between;
}
.complex-contacts__section {
  display: flex;
  flex-direction: column;
  width: calc(50% - 5px);
}
.complex-contacts__contact-entry {
  word-break: break-word;
}

@media screen and (min-width: 1001px) {
  .mobile-filter-buttons {
    display: none;
  }
}
.mobile-filter-buttons .button {
  width: 100%;
}

.panel-menu {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  background-color: #212121;
  width: 300px;
}
@media screen and (max-width: 1000px) {
  .panel-menu {
    transition: 0.3s;
    position: fixed;
    height: 100%;
    z-index: 100;
    top: 0;
    left: -120%;
  }
}
@media screen and (max-width: 500px) {
  .panel-menu {
    width: 100%;
  }
}
@media screen and (max-width: 1000px) {
  .panel-menu.js-modal-shown {
    left: 0;
  }
}
.panel-menu__wrapper {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  overflow-y: auto;
}
.panel-menu__logo-wrapper {
  padding: 20px 30px 30px;
  background-color: black;
}
.panel-menu__logo.logo {
  width: 128px;
}
@media screen and (max-width: 1000px) {
  .panel-menu__logo.logo {
    visibility: hidden;
    width: 90px;
  }
}
.panel-menu__body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.panel-menu__navigation {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.panel-menu__footer {
  padding: 15px;
}
@media screen and (max-width: 1000px) {
  .panel-menu__footer {
    padding-top: 12px;
  }
}
.panel-menu__copyright.copyright {
  text-align: center;
}

.companies-region {
  opacity: 1;
}

.create-order-region {
  padding: 30px 20px 30px;
  background-color: white;
  border-radius: 30px;
}
@media screen and (max-width: 768px) {
  .create-order-region {
    padding-top: 25px;
  }
}
.create-order-region__header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.create-order-region__back-link.back-link {
  margin-right: 25px;
}

.trans-details {
  background-color: white;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.08);
  border-radius: 30px;
}
@media screen and (max-width: 768px) {
  .trans-details {
    border-radius: 20px;
  }
}
.trans-details__top {
  padding: 17px 23px 20px;
  border-bottom: 1px solid #EBEBEB;
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(6, 1fr);
  grid-template-areas: "td-t-left1 td-t-right1 td-t-left2 td-t-right2 td-t-full td-t-full";
}
@media screen and (max-width: 768px) {
  .trans-details__top {
    padding: 9px 20px 15px;
    grid-gap: 15px;
    grid-template-columns: repeat(2, minmax(0, 50%));
    grid-template-areas: "td-t-left1 td-t-right1" "td-t-left2 td-t-right2" "td-t-full td-t-full";
  }
}
@media screen and (max-width: 600px) {
  .trans-details__top {
    grid-template-columns: repeat(5, minmax(0, 20%));
    grid-template-areas: "td-t-left1 td-t-left1 td-t-right1 td-t-right1 td-t-right1" "td-t-left2 td-t-left2 td-t-right2 td-t-right2 td-t-right2" "td-t-full td-t-full td-t-full td-t-full td-t-full";
  }
}
.trans-details__top .text-pair:nth-child(1) {
  grid-area: td-t-left1;
}
.trans-details__top .text-pair:nth-child(2) {
  grid-area: td-t-right1;
}
.trans-details__top .text-pair:nth-child(3) {
  grid-area: td-t-left2;
}
.trans-details__top .text-pair:nth-child(4) {
  grid-area: td-t-right2;
}
.trans-details__top .text-pair:nth-child(5) {
  grid-area: td-t-full;
}
.trans-details__top-row-2 {
  padding: 17px 23px 20px;
  border-bottom: 1px solid #EBEBEB;
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(6, 1fr);
}
@media screen and (max-width: 768px) {
  .trans-details__top-row-2 {
    grid-template-columns: minmax(0, 1fr);
  }
}
.trans-details__top-row-2 .text-pair:last-child {
  grid-column: 2/-1;
}
@media screen and (max-width: 768px) {
  .trans-details__top-row-2 .text-pair:last-child {
    grid-column: 1/-1;
  }
}
.trans-details__bottom {
  padding: 17px 23px 20px;
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(6, minmax(0, 16.66666%));
}
@media screen and (max-width: 768px) {
  .trans-details__bottom {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.trans-details__bottom .text-pair:nth-child(5), .trans-details__bottom .text-pair:nth-child(8), .trans-details__bottom .text-pair:nth-child(9), .trans-details__bottom .text-pair:nth-child(12), .trans-details__bottom .text-pair:nth-child(13), .trans-details__bottom .text-pair:nth-child(16), .trans-details__bottom .text-pair:nth-child(17) {
  grid-column-end: span 2;
}
@media screen and (max-width: 768px) {
  .trans-details__bottom .text-pair:nth-child(5), .trans-details__bottom .text-pair:nth-child(8), .trans-details__bottom .text-pair:nth-child(9), .trans-details__bottom .text-pair:nth-child(12), .trans-details__bottom .text-pair:nth-child(13), .trans-details__bottom .text-pair:nth-child(16), .trans-details__bottom .text-pair:nth-child(17) {
    grid-column-end: span 3;
  }
}
@media screen and (max-width: 600px) {
  .trans-details__bottom .text-pair:nth-child(5), .trans-details__bottom .text-pair:nth-child(8), .trans-details__bottom .text-pair:nth-child(9), .trans-details__bottom .text-pair:nth-child(12), .trans-details__bottom .text-pair:nth-child(13), .trans-details__bottom .text-pair:nth-child(16), .trans-details__bottom .text-pair:nth-child(17) {
    grid-column-end: span 6;
  }
}
@media screen and (max-width: 768px) {
  .trans-details__bottom .text-pair {
    grid-column-end: span 3;
  }
}
@media screen and (max-width: 600px) {
  .trans-details__bottom .text-pair {
    grid-column-end: span 6;
  }
}
.trans-details .text-pair__text {
  font-weight: 600;
}

.desktop-filter {
  padding: 20px;
  background-color: white;
  border-radius: 30px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.08);
}
.desktop-filter__block {
  margin-bottom: 25px;
}
.desktop-filter__title.title {
  margin-bottom: 9px;
}

.company-info-block {
  background-color: white;
  padding: 15px 20px 20px;
  border-radius: 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 17%)) auto;
  grid-gap: 20px;
}
@media screen and (max-width: 1240px) {
  .company-info-block {
    grid-template-columns: minmax(0, 35%) minmax(0, 65%);
    grid-column-gap: 15px;
  }
}
@media screen and (max-width: 600px) {
  .company-info-block {
    padding: 10px;
    border-radius: 20px;
  }
}
@media screen and (max-width: 600px) {
  .company-info-block_variant-2 {
    grid-template-columns: minmax(0, 58%) minmax(0, 42%);
  }
  .company-info-block_variant-2 > *:nth-child(1), .company-info-block_variant-2 > *:nth-child(4) {
    grid-column: 1/-1;
  }
}
@media screen and (max-width: 600px) {
  .company-info-block_variant-3 {
    grid-template-columns: minmax(0, 50%) minmax(0, 50%);
  }
  .company-info-block_variant-3 > *:nth-child(3) {
    grid-column: 1/-1;
  }
  .company-info-block_variant-3 > *:nth-child(3) .company-info-block__action {
    width: 100%;
  }
}
.company-info-block_green {
  border: 1px solid #40CC4E;
  background-color: #FAFFFA;
}
.company-info-block__user-tools {
  display: flex;
  justify-content: flex-end;
  grid-column-start: 4;
  width: 100%;
}
@media screen and (max-width: 1240px) {
  .company-info-block__user-tools {
    grid-column-start: 2;
    justify-content: flex-start;
  }
}
@media screen and (max-width: 600px) {
  .company-info-block__action {
    width: 100%;
  }
}

.company-trans-preview {
  background-color: white;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.08);
  border-radius: 30px;
}
@media screen and (max-width: 768px) {
  .company-trans-preview {
    border-radius: 20px;
  }
}
.company-trans-preview__top {
  padding: 17px 23px 20px;
  border-bottom: 1px solid #EBEBEB;
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(4, 16.5%) auto;
}
@media screen and (max-width: 1400px) {
  .company-trans-preview__top {
    grid-template-columns: repeat(2, 50%);
  }
}
@media screen and (max-width: 1240px) {
  .company-trans-preview__top {
    grid-template-columns: repeat(4, 16.5%) auto;
  }
}
@media screen and (max-width: 768px) {
  .company-trans-preview__top {
    grid-template-columns: repeat(2, 50%);
    padding: 9px 20px 15px;
  }
}
.company-trans-preview__bottom {
  padding: 17px 23px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 560px) {
  .company-trans-preview__bottom {
    padding: 17px 20px 20px;
    flex-direction: column;
    align-items: flex-start;
  }
}
.company-trans-preview__more {
  margin-left: 20px;
}
@media screen and (max-width: 560px) {
  .company-trans-preview__more {
    margin-left: auto;
    margin-top: 10px;
    padding: 0;
  }
}

.pagination {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style-type: none;
  margin: 0 -2px;
  flex-wrap: wrap;
}
.pagination__item {
  margin: 5px 2px;
}
.pagination__link {
  height: 35px;
  min-width: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 6px;
  padding-right: 6px;
  border-radius: 8px;
  border: none;
  background-color: transparent;
  transition: 0.2s;
  font-family: OpenSans, Arial, sans-serif;
  font-size: 14px;
  line-height: 1;
  color: black;
  font-weight: 400;
}
.pagination__link:not([disabled]):hover {
  background: black;
  color: white;
}
.pagination__link:not([disabled]):hover:before {
  color: white;
}
.pagination__link_current {
  font-weight: 600;
}
.pagination__link_first, .pagination__link_last {
  background-color: white;
}
.pagination__link_first:before, .pagination__link_last:before {
  content: "";
  font-family: logistics-icon-font;
  font-size: 10px;
  line-height: 1;
  color: black;
  font-weight: 400;
  transition: 0.2s;
}
.pagination__link_first:before {
  transform: rotate(180deg);
}
.pagination__link.js-locked-link {
  cursor: default;
}
.pagination__link.js-locked-link:not([disabled]):hover {
  background: transparent;
  color: black;
}
.pagination__link.js-locked-link:before {
  color: #BBBBBB;
}
.pagination__link.js-locked-link.pagination__link_first:not([disabled]):hover, .pagination__link.js-locked-link.pagination__link_last:not([disabled]):hover {
  background-color: white;
}
.pagination__link.js-locked-link.pagination__link_first:not([disabled]):hover:before, .pagination__link.js-locked-link.pagination__link_last:not([disabled]):hover:before {
  color: #BBBBBB;
}

.section__title-block {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (max-width: 560px) {
  .section__title-block {
    padding-left: 0px;
    padding-right: 0px;
  }
}
@media screen and (max-width: 560px) {
  .section__title-block {
    flex-direction: column;
    align-items: flex-start;
  }
}
.section__title-block .section__title {
  padding: 0;
  margin-right: 20px;
}
@media screen and (max-width: 560px) {
  .section__title-block .section__title {
    margin-bottom: 8px;
  }
}
.section__title-block .section__back {
  margin-bottom: 16px;
  margin-right: 20px;
}
@media screen and (max-width: 560px) {
  .section__title-block .section__back {
    margin-bottom: 8px;
  }
}
.section__title-block .section__company-status {
  margin-bottom: 16px;
}
.section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.section__header-tools {
  margin-bottom: 16px;
  margin-left: auto;
}
.section__title {
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 16px;
}

.section-login {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(/img/user-img/bg/login-bg.jpg);
  background-size: cover;
  background-position: center center;
  padding-top: 45px;
  padding-bottom: 30px;
}
@media screen and (max-width: 960px) {
  .section-login {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(/img/user-img/bg/login-bg-960.jpg);
    background-size: cover;
    background-position: center center;
  }
}
.section-login__logo.logo {
  width: 185px;
  margin-bottom: 30px;
}
.section-login__form-wrapper {
  width: 660px;
  max-width: calc(100% - 30px);
  border-radius: 40px;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 35px 110px 40px;
  display: flex;
  flex-direction: column;
  max-height: 430px;
  overflow-y: auto;
}
@media screen and (max-width: 768px) {
  .section-login__form-wrapper {
    padding: 40px;
  }
}
@media screen and (max-width: 560px) {
  .section-login__form-wrapper {
    padding-left: 8px;
    padding-right: 8px;
  }
}

.section-companies__list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-row-gap: 10px;
}

.section-company-info {
  margin-bottom: 35px;
}
.section-company-info__info-blocks {
  margin-bottom: 40px;
}
@media screen and (max-width: 600px) {
  .section-company-info__info-blocks {
    margin-bottom: 20px;
  }
}
.section-company-info__info-block {
  margin-bottom: 10px;
}
.section-company-info__info-block:last-child {
  margin-bottom: 0;
}
.section-company-info__summary-blocks {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(207px, 1fr));
}
@media screen and (max-width: 600px) {
  .section-company-info__summary-blocks {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-gap: 5px 10px;
  }
}

.section-company-trans__actions {
  margin-bottom: 20px;
}
.section-company-trans__list {
  margin-bottom: 30px;
}
.section-company-trans__list .company-trans-preview {
  margin-bottom: 10px;
}
.section-company-trans__list .company-trans-preview:last-child {
  margin-bottom: 0;
}
.section-company-trans__pagination-wrapper {
  display: flex;
  justify-content: center;
}

.modal {
  position: fixed;
  z-index: 101;
  top: calc(50% - 40px);
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  transition: 0.3s;
  visibility: hidden;
  opacity: 0;
  max-width: calc(100% - 30px);
}
@media screen and (max-height: 600px) {
  .modal {
    position: absolute;
    top: 50px;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 1000px) {
  .modal {
    position: absolute;
    top: 100px;
    transform: translateX(-50%);
  }
}
.modal.js-modal-shown {
  visibility: visible;
  opacity: 1;
}
.modal__wrapper {
  background-color: white;
  padding: 35px 125px 40px 125px;
  border-radius: 30px;
}
@media screen and (max-width: 1000px) {
  .modal__wrapper {
    padding: 35px 40px 40px 40px;
  }
}
@media screen and (max-width: 768px) {
  .modal__wrapper {
    padding: 30px 10px 30px 10px;
  }
}
.modal__closer.closer {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 15px;
  height: 15px;
}
@media screen and (max-width: 768px) {
  .modal__closer.closer {
    right: 0;
    top: -20px;
  }
}
.modal__closer.closer:before, .modal__closer.closer:after {
  background-color: #fff;
}
.modal__title.title {
  margin-bottom: 30px;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .modal__title.title {
    margin-bottom: 20px;
  }
}

.modal-tools {
  display: flex;
  position: fixed;
  z-index: 101;
  max-height: calc(100% - 100px);
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  border-radius: 30px;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  transition: 0.2s;
}
@media screen and (min-width: 1001px) {
  .modal-tools {
    display: none;
  }
}
.modal-tools__wrapper {
  padding: 25px 35px;
  background-color: white;
  border-radius: 20px;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  height: calc(100vh - 100px);
  overflow-y: auto;
}
@media screen and (max-width: 560px) {
  .modal-tools__wrapper {
    padding: 25px 15px;
  }
}
.modal-tools__result {
  max-height: 100%;
  overflow-y: auto;
  margin-top: 20px;
}
.modal-tools__result > * {
  margin-bottom: 10px;
}
.modal-tools__result > *:last-child {
  margin-bottom: 0;
}
.modal-tools__section {
  margin-bottom: 20px;
}
.modal-tools__section:last-child {
  margin-bottom: 0;
}
.modal-tools__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5px;
}
.modal-tools.js-modal-shown {
  visibility: visible;
  opacity: 1;
}

.filter-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  grid-column-gap: 20px;
  margin-bottom: 50px;
}
@media screen and (max-width: 1279px) {
  .filter-layout {
    grid-template-columns: 1fr 340px;
  }
}
@media screen and (max-width: 1240px) {
  .filter-layout {
    grid-template-columns: minmax(0, 1fr);
    grid-row-gap: 20px;
  }
}
.filter-layout__filter-area {
  padding-top: 45px;
}
@media screen and (max-width: 1240px) {
  .filter-layout__filter-area {
    grid-row-start: 1;
    padding-top: 0;
  }
}
@media screen and (max-width: 1000px) {
  .filter-layout__filter-area {
    display: none;
  }
}
@media screen and (min-width: 1240px) and (min-height: 701px) {
  .filter-layout__filter.desktop-filter {
    position: sticky;
    top: 15px;
  }
}

.labeled-block {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.labeled-block__label {
  display: block;
  margin-bottom: 3px;
}

.main-menu {
  padding: 0;
  margin: 0;
  list-style-type: none;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.main-menu__item {
  display: flex;
  align-items: center;
  width: 100%;
  transition: 0.2s;
  position: relative;
  margin-bottom: 6px;
}
.main-menu__item::before {
  content: "";
  display: block;
  width: 4px;
  height: 100%;
  position: absolute;
  z-index: 1;
  background-color: #FF3A3A;
  border-radius: 0px 4px 4px 0px;
  top: 0;
  left: 0;
  transition: inherit;
  opacity: 0;
}
.main-menu__item:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 1001px) {
  .main-menu__item:last-child {
    display: none;
  }
}
@media screen and (max-width: 1000px) {
  .main-menu__item:last-child {
    margin-top: auto;
  }
}
.main-menu__item:hover, .main-menu__item_active {
  background-color: black;
}
.main-menu__item:hover::before, .main-menu__item_active::before {
  opacity: 1;
}
.main-menu__link {
  font-family: OpenSans, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.3;
  color: white;
  font-weight: 600;
  padding: 18px 18px 18px 60px;
  position: relative;
  display: flex;
  width: 100%;
}
.main-menu__link:before {
  color: white;
  position: absolute;
  left: 27px;
  top: 50%;
  transform: translateY(-50%);
}

.user-menu {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.user-menu__item {
  display: flex;
  align-items: center;
  width: 100%;
  transition: 0.2s;
  position: relative;
  margin-right: 30px;
}
.user-menu__item:last-child {
  margin-right: 0;
}
.user-menu__link {
  font-family: OpenSans, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.3;
  color: black;
  font-weight: 400;
  padding-left: 23px;
  position: relative;
  display: flex;
  width: 100%;
}
.user-menu__link:before {
  color: black;
  position: absolute;
  font-size: 15px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.user-menu__link:hover {
  text-decoration: underline;
}

.page {
  height: 100vh;
  background-color: #E5E5E5;
}
.page_locked {
  overflow: hidden;
}
.page_android .input::-webkit-placeholder, .page_android .input::placeholder {
  line-height: 45px;
}
.page_android .input.textarea::-webkit-placeholder, .page_android .input.textarea::placeholder {
  line-height: 10px;
}
.page__wrapper {
  display: flex;
  flex-grow: 1;
}
.page__content {
  padding: 20px 30px;
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .page__content {
    padding-top: 85px;
  }
}
@media screen and (max-width: 768px) {
  .page__content {
    padding: 15px;
    padding-top: 85px;
  }
}

.header {
  background-color: white;
  border-radius: 30px;
  padding: 21px 30px;
  margin-bottom: 20px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 1000px) {
  .header {
    display: none;
  }
}
.header__menu.user-menu {
  margin-left: auto;
}

.mobile-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: black;
  display: block;
  z-index: 110;
}
@media screen and (min-width: 1001px) {
  .mobile-header {
    display: none;
  }
}
.mobile-header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 15px;
}
.mobile-header__logo.logo {
  width: 110px;
}

.overlay {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  background-color: rgba(0, 0, 0, 0.75);
  visibility: hidden;
  opacity: 0;
  transition: 0.2s;
}
.overlay_shown {
  z-index: 90;
  visibility: visible;
  opacity: 1;
}

.extra-bold {
  font-weight: 800;
}

.semi-bold {
  font-weight: 600;
}

.white {
  color: white;
}

.black {
  color: black;
}

.orange {
  color: #ED4D44;
}

.red {
  color: #FF3A3A;
}

.link {
  color: inherit;
  cursor: pointer;
}
.link:hover {
  text-decoration: underline;
}

.full-grid-row {
  grid-column: 1/-1;
}
