

/* Start:/local/components/onlogsystem/support.widget/templates/.default/style.css?174843062810688*/
:root {
    --sw-bottom-pos: 30px;
    --sw-right-pos: 30px;
    --sw-width: 60px;
    --sw-active-width: 320px;
    --sw-open-width: 500px;
    --sw-btn-height: 60px;
    --sw-btn-border-radius: 40px;
    --sw-btn-border-radius--active: 10px;
    --sw-title-font-size: 1rem;
}

.sw {
    position: fixed;
    bottom: var(--sw-bottom-pos);
    right: var(--sw-right-pos);
    width: var(--sw-width);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    transition: width .3s, border-radius .1s;
    z-index: 1010;
    box-shadow: 0 0 20px 0 rgba(0,5,115,.15);
    border-radius: var(--sw-btn-border-radius);
    max-height: 600px;
    overflow: hidden;
}
.sw.--active {
    width: var(--sw-active-width);
    border-radius: var(--sw-btn-border-radius--active);
}
@media (min-width: 992px) {
    .sw:hover {
        width: var(--sw-active-width);
        border-radius: var(--sw-btn-border-radius--active);
    }
}

.sw.--open {
    width: var(--sw-open-width);
    max-width: 100%;
}

/* ######## CALL BTN ######## */

.sw__btn {
    position: relative;
    width: 100%;
    height: var(--sw-btn-height);
    border: none;
    background-color: #3460B4;
    padding: 0;
    border-radius: var(--sw-btn-border-radius);
    cursor: pointer;
    transition: border-radius .1s;
    outline: none;
    z-index: 1;
}
.sw.--open .sw__btn {
    display: none;
}
.sw.--active .sw__btn {
    width: 100%;
    border-radius: var(--sw-btn-border-radius--active);
}
@media (min-width: 992px) {
    .sw:hover .sw__btn {
        width: 100%;
        border-radius: var(--sw-btn-border-radius--active);
    }
}
.sw__btn::before,
.sw__btn::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 28px;
    width: 2px;
    height: 1rem;
    cursor: pointer;
    background-color: #fff;
    border: none;
    outline: none;
    opacity: 0;
    transition: opacity .15s;
}
.sw__btn::before {
    transform: translate(-50%, -50%) rotate(45deg)
}
.sw__btn::after {
    transform: translate(-50%, -50%) rotate(-45deg)
}
.sw.--active .sw__btn::before,
.sw.--active .sw__btn::after {
    opacity: 1;
}
.sw__btn-text {
    font-family: "Manrope", sans-serif;
    font-weight: 600;
    font-size: var(--sw-title-font-size);
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity .15s;
    white-space: nowrap;
    letter-spacing: .02em;
}
.sw__btn-text.--long {
    opacity: 0;
}
.sw.--active .sw__btn-text.--short {
    opacity: 0;
}
.sw.--active .sw__btn-text.--long {
    opacity: 1;
}

@media (min-width: 992px) {
    .sw:hover .sw__btn-text.--short,
    .sw__btn:hover .sw__btn-text.--short {
        opacity: 0;
    }
    .sw:hover .sw__btn-text.--long,
    .sw__btn:hover .sw__btn-text.--long {
        opacity: 1;
    }
}

/* ######## CATEGORIES ######## */

.sw-categories {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    background-color: #f0f5ff;
    border-radius: 0 0 var(--sw-btn-border-radius--active) var(--sw-btn-border-radius--active);
    padding: 24px 10px 10px;
    margin-top: -10px;
    max-height: calc(100vh - (var(--sw-bottom-pos) * 2) - var(--sw-btn-height));
    overflow-x: hidden;
    overflow-y: auto;
}
.sw.--open .sw-categories {
    display: none;
}
.sw-categories__item {
    width: 100%;
    height: 44px;
    flex-shrink: 0;
    font-family: Manrope,sans-serif;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: .02em;
    color: #3460b4;
    background-color: #ffffff;
    padding: 0;
    outline: none;
    border: 1px solid #3460b4;
    border-radius: 8px;
    cursor: pointer;
    transition: width .3s, border-radius .1s;
}
.sw-categories__auth {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: inherit;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
}
.sw__auth-btn.--skip {
    border: none;
    outline: none;
    background: none;
    font-size: .725rem;
    cursor: pointer;
}

/* ######## FORM ######## */

.sw-form {
    width: 100%;
}
.sw-form__body {
    padding: 40px 20px 20px;
    background-color: #f0f5ff;
    border-radius: 0 0 var(--sw-btn-border-radius--active) var(--sw-btn-border-radius--active);
    margin-top: -10px;
    max-height: calc(600px - (var(--sw-bottom-pos) * 2) - var(--sw-btn-height));
    overflow-x: hidden;
    overflow-y: auto;
}
.sw-form__header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: var(--sw-btn-height);
    background: #3460b4;
    border-radius: var(--sw-btn-border-radius--active);
    cursor: pointer;
    z-index: 1;
}
.sw-form__header::before,
.sw-form__header::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 28px;
    width: 2px;
    height: 1rem;
    cursor: pointer;
    background-color: #fff;
    border: none;
    outline: none;
    transition: opacity .15s;
}
.sw-form__header::before {
    transform: translate(-50%, -50%) rotate(45deg)
}
.sw-form__header::after {
    transform: translate(-50%, -50%) rotate(-45deg)
}
.sw-form__title {
    font-family: "Manrope", sans-serif;
    font-weight: 600;
    font-size: var(--sw-title-font-size);
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity .15s;
    white-space: nowrap;
    letter-spacing: .02em;
}
.sw-form__item:not(:first-child) {
    margin-top: 20px;
}
.sw-form__item.--result {
    text-align: center;
    color: #0eab70;
    font-weight: 700;
}
.sw-form__item.--result.--error {
    color: red;
}
.sw-form__item.--result.--success {
    color: #0eab70;
}
.sw-form__item.--result:empty + .sw-form__item {
    margin-top: 0;
}
.sw-form .file-input-ui {
    background-color: #fff;
    border: 1px solid #c7ccd7;
}
.sw-form .file-input-ui.has-error {
    border-color: red;
}
.sw-form__item .field {
    margin-bottom: 4px;
}
.sw-form__caption {
    display: block;
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
    color: #3d3d3d;
    white-space: nowrap;
    margin-bottom: 8px;
}
.sw .sw-form input[type="text"].has-error,
.sw .sw-form input[type="email"].has-error,
.sw .sw-form textarea.has-error {
    outline: none;
}
.sw .sw-form textarea {
    resize: vertical;
}
.sw .sw-form input[type="text"],
.sw .sw-form input[type="email"],
.sw .sw-form textarea {
    cursor: default;
}
.sw-form__file-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
}
.sw-form__file-block {
    position: relative;
    width: 100%;
    height: 44px;
    background-color: #0eab70;
    border-radius: 8px;
    cursor: pointer;
    transition: outline-color,border .5s ease-in-out;
}
.has-error ~ .sw-form__file-block {
    border: 1px solid red;
}
.error + .sw-form__file-block {
    margin-top: 10px
}
.sw-form__file-block::before,
.sw-form__file-block::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 20px;
    background-color: #fff;
}
.sw-form__file-block::before {
    transform: translate(-50%, -50%) rotate(90deg)
}
.sw-form__file-block::after {
    transform: translate(-50%, -50%)
}
.sw .sw-form input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    user-select: none;
    pointer-events: none;
}
.sw-form__file-info {
    font-size: 14px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    color: #3460b4;
    cursor: pointer;
}
.sw-form__item .error {
    color: red;
    font-size: .875rem;
}

.sw .button.disabled.load {
    pointer-events: none;
    user-select: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Ccircle cx='40' cy='100' r='15' fill='%23FFF' stroke='%23FFF' stroke-width='15'%3E%3Canimate attributeName='opacity' begin='-.4' calcMode='spline' dur='2' keySplines='.5 0 .5 1;.5 0 .5 1' repeatCount='indefinite' values='1;0;1;'/%3E%3C/circle%3E%3Ccircle cx='100' cy='100' r='15' fill='%23FFF' stroke='%23FFF' stroke-width='15'%3E%3Canimate attributeName='opacity' begin='-.2' calcMode='spline' dur='2' keySplines='.5 0 .5 1;.5 0 .5 1' repeatCount='indefinite' values='1;0;1;'/%3E%3C/circle%3E%3Ccircle cx='160' cy='100' r='15' fill='%23FFF' stroke='%23FFF' stroke-width='15'%3E%3Canimate attributeName='opacity' begin='0' calcMode='spline' dur='2' keySplines='.5 0 .5 1;.5 0 .5 1' repeatCount='indefinite' values='1;0;1;'/%3E%3C/circle%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 40px auto;
    color: transparent;
    transition: none;
}

/* ######## CUSTOM SCROLL ######## */

/* Полоса прокрутки */
.custom-scroll::-webkit-scrollbar {
    width: 6px; /* ширина для вертикальной полосы */
    height: 6px; /* высота для горизонтальной полосы */
}
/* Ползунок или "thumb" */
.custom-scroll::-webkit-scrollbar-thumb {
    background-color: #0d2a68; /* Цвет ползунка */
    border-radius: 6px; /* Закругленные углы */
}
/* Поведение ползунка при наведении */
.custom-scroll::-webkit-scrollbar-thumb:hover {
    background-color: #0d2a68; /* Изменение цвета при наведении */
}
/* Трек или "track" */
.custom-scroll::-webkit-scrollbar-track {
    background: #fff; /* Цвет трека */
    border-radius: 6px;
}
.bx-firefox .custom-scroll  {
    scrollbar-width: thin; /* Возможные значения: auto, thin, none */
    scrollbar-color: #0d2a68 #fff; /* Цвет ползунка и трека */
}

/* ######## MEDIA ######## */

@media (max-width: 767px) {
    :root {
        --sw-right-pos: 15px;
    }
}
@media (max-width: 767px) {
    :root {
        --sw-bottom-pos: 15px;
        --sw-right-pos: 15px;
        --sw-active-width: calc(100% - (var(--sw-right-pos) * 2));
        --sw-open-width: calc(100% - (var(--sw-right-pos) * 2));
        --sw-width: 44px;
        --sw-btn-height: 44px;
        --sw-title-font-size: 14px;
        --sw-btn-border-radius--active: 8px;
    }
    .sw-form__header::before,
    .sw-form__header::after,
    .sw__btn::before,
    .sw__btn::after {
        width: 2px;
        height: 14px;
    }
    .sw-categories__item {
        font-size: 14px;
    }
    .sw .sw-form textarea {
        min-height: 200px;
    }
    .sw-form .file-input-ui {
        min-height: 46px;
    }
}
/* End */


/* Start:/local/templates/onlogsystem/template_styles.css?1773759857201064*/
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

* {
  box-sizing: border-box;
}

ul, ol {
  list-style-position: inside;
}

.breadcrumbs {
  display: flex;
  align-items: center !important;
}
.breadcrumbs .item {
  margin-right: 10px;
}
.breadcrumbs .item i {
  margin-right: 3px;
}
@media (max-width: 767px) {
  .breadcrumbs {
    font-size: 14px;
  }
}

.button {
  display: inline-flex;
  padding: 12px 24px;
  border: 1px solid #CAD3E1;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
  color: #9199AA;
  line-height: 1.1;
}
.button.filled {
  display: flex;
  width: 100%;
  justify-content: center;
}
.button.large {
  padding: 15px 50px;
}
.button.small {
  font-size: 0.725rem;
  padding: 0.5rem 1rem;
}
.button:hover {
  color: #0EAB70;
  border-color: #0EAB70;
}
.button.blue {
  font-weight: 600;
  border-color: #3460B4;
  color: #3460B4;
}
.button.blue:not(.bordered) {
  color: #fff;
  background-color: #3460B4;
}
.button.blue:hover:not(.bordered) {
  background-color: #0D2A68;
  border-color: #0D2A68;
}
.button.blue:hover.bordered {
  color: #fff;
  background-color: #3460B4;
}
.button.green {
  font-weight: 600;
  border-color: #0EAB70;
  color: #0EAB70;
}
.button.green:not(.bordered) {
  color: #fff;
  background-color: #0EAB70;
}
.button.green:hover:not(.bordered) {
  background-color: #00613C;
  border-color: #00613C;
}
.button.green:hover.bordered {
  color: #fff;
  background-color: #0EAB70;
}
.button.disabled {
  cursor: initial;
  opacity: 0.5;
}
.button:not(.disabled), .button:not(:disabled) {
  cursor: pointer;
}
@media (max-width: 575px) {
  .button {
    padding: 12px 24px !important;
  }
}

.title-button {
  display: inline-flex;
  padding: 13px 24px;
  border: 1px solid #000;
  border-radius: 8px;
  color: #000 !important;
}
.title-button:not(.disabled), .title-button:not(:disabled) {
  cursor: pointer;
}

.clipboard-button {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 8px;
  border: 1px solid #707070;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #707070;
  cursor: pointer;
}

html {
  min-height: 100%;
  width: 100%;
}

body {
  position: relative;
  margin: 0;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  font-family: Manrope, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #000;
  -webkit-font-smoothing: antialiased;
  text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
  width: 100%;
}
body:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s, visibility 0s linear 0.5s;
  z-index: 10;
}
@media (min-width: 1200px) {
  body.menu-hovered:after {
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
  }
}
@media (max-width: 1199px) {
  body.menu-active:after {
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
  }
}

.page-wrapper {
  background: linear-gradient(152.46deg, #F0F6FF 14.38%, #FFFFFF 68.4%) no-repeat;
}

a {
  transition: all 0.3s ease-in-out;
}
a:not(.button), a:not(.title-button) {
  color: #3460B4;
}
a:not(.button):hover, a:not(.title-button):hover {
  color: #0EAB70;
}
a:not(.browser-default) {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

p {
  margin-top: 0;
  margin-bottom: 10px;
}

h1, .h1 {
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  margin: 20px 0;
  line-height: normal;
}

h2, h2 {
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 15px;
  margin-top: 1rem;
}

h3, .h3 {
  font-size: 20px;
  line-height: 146.6%;
  letter-spacing: 0.4px;
  margin-bottom: 15px;
}

@media (max-width: 767px) {
  h1, .h1 {
    font-size: 30px;
  }
}
.container {
  width: 100%;
  padding: 0 100px;
}
@media (max-width: 1199px) {
  .container {
    padding: 0 20px;
  }
}

header .top-line {
  background-color: #F3F3F3;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
header .top-line ul {
  padding: 5px 0;
  margin: 0;
  list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-size: 14px;
}
header .top-line ul li {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
header .top-line ul li > div {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
header .top-line ul li a {
  color: #22262D;
}
header .top-line ul li.phone {
  font-size: 16px;
  line-height: 22px;
}
header .top-line ul li.phone .desc {
  font-size: 11px;
  line-height: 15px;
}
header .top-line ul li + li {
  margin-left: 60px;
}
header .middle-line {
  display: flex;
  align-items: center;
  padding: 39px 100px 40px 0;
}
header .middle-line .main-menu--toggler-wrapper {
  width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .middle-line .content {
  display: flex;
  align-items: center;
  flex: 1 0 auto;
}
header .middle-line .content .logo {
  margin-right: 1rem;
}
header .middle-line .content .logo a {
  display: block;
}
header .middle-line .content .logo a img {
  display: block;
  max-width: 100%;
}
header .middle-line .content .widgets {
  display: flex;
  align-items: center;
  margin-left: auto;
}
header .middle-line .content .widgets .user-bar {
  margin-left: 30px;
  display: inline-flex;
  gap: 1rem;
  position: relative;
}
header .middle-line .content .widgets .user-bar .basket-link {
  position: relative;
}
header .middle-line .content .widgets .user-bar .basket-link .count-wrapper {
  width: 20px;
  height: 20px;
  position: absolute;
  top: -10px;
  right: -10px;
}
header .middle-line .content .widgets .user-bar .auth-link-mobile {
  display: none;
}
header .middle-line .content .widgets .user-bar .mobile-menu {
  display: none;
}
header .middle-line .content .widgets .user-bar .btn {
  border: 1px solid #000;
  border-radius: 8px;
  color: #000;
  display: inline-flex;
  padding: 13px 24px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
header .middle-line .content .widgets .user-bar .btn:hover {
  color: #0EAB70;
  border-color: #0EAB70;
}
header .bottom-line {
  margin-bottom: 40px;
}
@media (max-width: 1199px) {
  header .middle-line {
    padding: 39px 20px 40px 20px;
  }
  header .middle-line .main-menu--toggler-wrapper {
    justify-content: flex-start;
  }
}
@media (max-width: 767px) {
  header .top-line {
    display: none;
  }
  header .middle-line {
    padding: 25px 15px 20px 15px;
  }
  header .middle-line .main-menu--toggler-wrapper {
    margin-right: 15px;
    width: 34px;
  }
  header .middle-line .content .logo {
    width: 130px;
  }
  header .middle-line .content .widgets .user-bar .title-button {
    text-indent: -9999px;
    border: none;
    padding: 0;
    width: 32px;
    height: 32px;
    background-image: url(/local/templates/onlogsystem/images/mobile-user.png);
    background-position: center center;
    background-repeat: no-repeat;
  }
}
@media (max-width: 575px) {
  header .middle-line {
    min-width: 0;
  }
  header .middle-line .content {
    min-width: 0;
  }
  header .middle-line .content .widgets {
    min-width: 0;
    margin-left: auto;
  }
  header .middle-line .content .widgets .user-bar {
    min-width: 0;
    margin-left: 8px;
    gap: 8px;
    flex-shrink: 0;
    align-items: center;
  }
  header .middle-line .basket-link,
  header .middle-line .currency-chooser {
    display: none !important;
  }
  header .middle-line .auth-link-desktop {
    display: none !important;
  }
  header .middle-line .auth-link-mobile {
    display: inline-flex !important;
    position: relative;
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    margin-left: -10px;
    align-items: center;
    justify-content: center;
  }
  header .middle-line .auth-link-mobile .count-wrapper {
    display: inline-flex !important;
    width: 20px;
    height: 20px;
    align-items: center;
    justify-content: center;
    background-color: #0EAB70;
    color: #ffffff;
    font-size: 11px;
    position: absolute;
    border-radius: 5px;
    top: -8px;
    right: -8px;
  }
  header .middle-line .auth-logout-link {
    display: none !important;
  }
  header .middle-line .user-bar .mobile-menu {
    position: absolute;
    box-shadow: 0 0 20px 0 rgba(0, 5, 115, 0.0705882353);
    background-color: #ffffff;
    padding: 15px 18px;
    top: 100%;
    right: 0;
    z-index: 1000;
    min-width: 135px;
    display: block !important;
    border-radius: 5px;
  }
  header .middle-line .user-bar .mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 14px;
  }
  header .middle-line .user-bar .mobile-menu ul li + li {
    border-top: 0.3px solid #707070;
  }
  header .middle-line .user-bar .mobile-menu ul a {
    padding: 8px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #707070;
    white-space: nowrap;
  }
  header .bottom-line {
    display: none;
  }
}

main {
  margin-right: 100px;
  margin-bottom: 100px;
  flex: 1 0 auto;
  display: flex;
  align-items: stretch;
  position: relative;
  min-width: 0;
}
main .page-header {
  margin-bottom: 50px;
}
main .page-header h1 {
  margin: 0;
}
main .page-content {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 28px 50px 50px;
  flex: 1 1 0;
  min-width: 0;
  order: 2;
}
main .page-content .section .section-header {
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
main .page-content .section .section-header h2 {
  margin-bottom: 0;
  margin-top: 0;
}
main .page-content .section .section-header .button {
  font-size: 14px;
}
main .page-content .section + .section {
  margin-top: 70px;
}
main .page-content .section.faq-popular {
  margin-top: 100px;
}
@media (max-width: 1199px) {
  main {
    margin: 0 0 80px;
    padding: 0 20px;
  }
  main .page-content {
    padding: 28px 20px 52px;
  }
}
@media (max-width: 1199px) {
  main {
    margin: 0 0 40px;
    padding: 0;
  }
  main .page-content {
    padding: 28px 15px 52px;
  }
}

.main-menu--wrapper {
  order: 1;
  width: 100px;
  position: relative;
  z-index: 1001;
}
@media (max-width: 1199px) {
  .main-menu--wrapper {
    position: absolute;
    left: 0;
    top: 0;
    display: none;
  }
}

.shadow-block {
  box-shadow: 0 0 20px rgba(0, 5, 115, 0.07);
}

footer {
  background: #F5F9FF;
  border-radius: 35px 35px 0 0;
  padding: 60px 0 40px;
}
footer .top {
  display: grid;
  gap: 100px;
  grid-template-columns: repeat(4, 1fr);
}
footer .top .column .phone {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
footer .top .column .phone > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
footer .top .column .phone a {
  font-size: 18px;
  color: #22262D;
}
footer .top .column .phone .desc {
  font-size: 11px;
}
footer .top .column .address {
  margin-top: 30px;
  font-size: 13px;
}
footer .bottom {
  margin-top: 40px;
}
footer .bottom p {
  color: #707070;
  font-size: 13px;
}
footer .bottom p:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  footer .top {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.tabs-toggler {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
  padding: 0;
  list-style: none;
}
.tabs-toggler li {
  position: relative;
  padding: 13px 0;
  font-size: 14px;
  line-height: 22px;
  font-weight: 600;
  color: #637381;
}
.tabs-toggler li:hover:not(.selected) {
  cursor: pointer;
  color: #000;
}
.tabs-toggler li.selected {
  color: #000;
}
.tabs-toggler li.selected:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #0EAB70;
}
.tabs-toggler li + li {
  margin-left: 30px;
}

.chooser {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px;
  font-size: 14px;
  cursor: initial;
  position: relative;
  border: 1px solid transparent;
  border-radius: 8px;
}
.chooser .chooser-dropdown {
  position: absolute;
  z-index: 10;
  display: none;
  top: 100%;
  right: 0;
  padding: 8px 16px;
  border-radius: 5px;
  background: #FFF;
  box-shadow: 0 0 20px 0 rgba(0, 5, 115, 0.07);
}
.chooser .chooser-dropdown ul {
  display: inline-flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  list-style: none;
}
.chooser .chooser-dropdown ul li {
  display: flex;
  align-items: center;
  line-height: 2.5;
}
.chooser .chooser-dropdown ul li .check {
  width: 8px;
  height: 7px;
  margin-right: 5px;
}
.chooser .chooser-dropdown ul li .check.checked {
  background-image: url(/local/templates/onlogsystem/images/check.svg);
  background-repeat: no-repeat;
  background-position: center center;
}
.chooser .chooser-dropdown ul li a {
  display: block;
  flex: 1 0 auto;
}
.chooser .chooser-dropdown ul li + li a {
  border-top: 1px solid rgba(112, 112, 112, 0.4);
}
.chooser:hover .chooser-dropdown {
  display: block;
}
.chooser .dropdown-icon {
  width: 14px;
  height: 5px;
  background-image: url(/local/templates/onlogsystem/images/dropdown-icon.svg);
  background-position: center center;
  background-repeat: no-repeat;
}
.chooser.site-chooser .icon {
  width: 12px;
  height: 12px;
  background-image: url(/local/templates/onlogsystem/images/lang.svg);
  background-position: center center;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .chooser .name {
    display: none;
  }
  .chooser.site-chooser .icon {
    width: 18px;
    height: 18px;
  }
}

.ReactModal__Overlay {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 72px;
}

.ReactModal__Content {
  display: inline-flex;
  width: 465px;
}

.modal-form {
  position: relative;
  width: 100%;
  border-radius: 20px;
  padding: 40px;
  background-color: #fff;
  box-shadow: 0 0 20px 0 rgba(0, 5, 115, 0.07);
}
.modal-form .title {
  font-size: 30px;
  margin-bottom: 23px;
  margin-right: 60px;
}
.modal-form .form {
  margin-top: 20px;
}
.modal-form .form .buttons {
  margin-top: 30px;
}
.modal-form .form .privacy-link {
  color: #3460B4;
}
.modal-form .form .errors {
  font-size: 0.875rem;
  color: red;
  text-align: center;
}
.modal-form .form .errors a {
  text-decoration: underline;
  color: inherit;
}
.modal-form .form .errors a:hover {
  text-decoration: none;
}
.modal-form .form .reset-link {
  text-decoration: underline;
  cursor: pointer;
  text-align: center;
}
.modal-form .form .reset-link:hover {
  text-decoration: none;
}
.modal-form .complete-message {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
}
.modal-form .complete-message h2 {
  margin: 0 0 10px;
}
.modal-form .close {
  position: absolute;
  top: 25px;
  right: 25px;
}

.bottom-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.bottom-menu ul li a {
  color: #22262D;
}
.bottom-menu ul li + li {
  margin-top: 10px;
}

@media (max-width: 575px) {
  .ReactModal__Content {
    width: 100%;
  }
  .modal-form {
    padding: 40px 16px;
  }
  .modal-form .title {
    font-size: 25px;
    margin-right: 49px;
    margin-bottom: 10px;
  }
  .modal-form .close {
    top: 14px;
    right: 14px;
  }
}
#onlog-widget-container {
  margin-bottom: 2rem;
}

[data-entity=basketCount] .counter {
  background: rgb(14, 171, 112);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  height: 20px;
  width: 20px;
  color: rgb(255, 255, 255);
  font-size: 11px;
  font-style: normal;
  font-weight: 500;
  line-height: 0;
  text-indent: 0px;
}

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

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

.main-menu--opener {
  display: none;
  position: absolute;
  bottom: 100%;
  padding: 40px 0 60px 39px;
  background-color: #F5F9FF;
  width: 315px;
  border-radius: 0 20px 0 0;
}
.main-menu--opener .main-menu--toggler {
  padding: 0 14px 0 12px;
  font-weight: 600;
}

.main-menu--closer {
  display: none;
}
@media (max-width: 1199px) {
  .main-menu--closer {
    position: absolute;
    display: block;
    bottom: 100%;
    padding: 20px 20px 40px;
    background-color: #F5F9FF;
    width: 290px;
    border-radius: 0 20px 0 0;
  }
}
@media (max-width: 575px) {
  .main-menu--closer {
    padding-bottom: 0 !important;
    display: flex;
    justify-content: flex-end;
  }
}

ul.main-menu {
  margin: 0;
  list-style: none;
  padding: 12px 0 0 39px;
}
ul.main-menu a {
  color: #22262D;
}
ul.main-menu ul {
  margin: 14px 0 0 2.75rem;
  padding: 0;
  list-style: none;
  display: none;
}
ul.main-menu ul > li + li {
  margin-top: 10px;
}
ul.main-menu ul a {
  display: block;
  line-height: 1.45;
}
ul.main-menu > li {
  display: flex;
  flex-direction: column;
}
ul.main-menu > li.mobile {
  display: none;
}
ul.main-menu > li > a {
  position: relative;
  display: flex;
  align-items: center;
}
ul.main-menu > li > a .icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
ul.main-menu > li > a .text {
  text-indent: -9999px;
  margin-left: 13px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
ul.main-menu > li > a .text .toggler {
  width: 20px;
  height: 12px;
  margin-left: 0.5rem;
  cursor: default;
  display: none;
  transition: transform 0.2s ease;
  background-image: url("/local/templates/onlogsystem/images/dropdown-icon.svg");
  background-repeat: no-repeat;
  background-position: center center;
}
ul.main-menu > li > a.selected > .text {
  font-weight: 600;
}
ul.main-menu > li + li {
  margin-top: 20px;
}
@media (max-width: 575px) {
  ul.main-menu > li.mobile {
    display: block;
  }
  ul.main-menu > li.bottom-delimeter {
    border-bottom: 1px solid #707070;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
}

.main-menu--toggler {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 32px;
  border: 0.5px solid #383838;
  cursor: pointer;
}
.main-menu--toggler .icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}
.main-menu--toggler .icon span {
  display: block;
  width: 16px;
  height: 1px;
  background-color: #383838;
  transition: all 0.3s ease-in-out;
}
.main-menu--toggler .icon span + span {
  margin-top: 4px;
}
.main-menu--toggler .text {
  margin-left: 5px;
}

@media (min-width: 1200px) {
  body.menu-hovered .main-menu--opener {
    display: block;
  }
}
body.menu-hovered ul.main-menu {
  position: absolute;
  background-color: #F5F9FF;
  width: 315px;
  padding-bottom: 40px;
  border-radius: 0 0 20px 0;
}
body.menu-hovered ul.main-menu > li {
  margin-right: 39px;
}
body.menu-hovered ul.main-menu > li.delimeter {
  border-top: 1px solid #707070;
  padding-top: 20px;
}
body.menu-hovered ul.main-menu > li > a .text {
  text-indent: 0;
}
body.menu-hovered ul.main-menu > li > a .text .toggler {
  display: block;
}
body.menu-hovered ul.main-menu > li.active > a .text .toggler, body.menu-hovered ul.main-menu > li.is-open > a .text .toggler {
  transform: rotate(180deg);
}
body.menu-hovered ul.main-menu > li.active > ul, body.menu-hovered ul.main-menu > li.is-open > ul {
  display: block;
}

.menu-active .main-menu--toggler .icon span {
  transform: rotate(-45deg);
  margin-top: -1px;
}
.menu-active .main-menu--toggler .icon span:first-child {
  margin-top: 1px;
  transform: rotate(45deg);
}
.menu-active .main-menu--toggler .icon span:last-child {
  display: none;
}
.menu-active .main-menu--wrapper {
  display: block;
  width: 220px;
  padding-bottom: 40px;
  border-radius: 0 0 20px 0;
  margin-right: 32px;
}
@media (max-width: 1199px) {
  .menu-active .main-menu--wrapper {
    width: 290px;
    background-color: #F5F9FF;
  }
}
.menu-active ul.main-menu {
  padding-left: 20px;
}
.menu-active ul.main-menu > li.delimeter {
  border-top: 1px solid #707070;
  padding-top: 20px;
}
.menu-active ul.main-menu > li > a .icon {
  display: none;
}
.menu-active ul.main-menu > li > a .text {
  margin-left: 0;
  text-indent: 0;
}
.menu-active ul.main-menu > li > a .text .toggler {
  display: block;
}
.menu-active ul.main-menu > li.active > a .text .toggler, .menu-active ul.main-menu > li.is-open > a .text .toggler {
  transform: rotate(180deg);
}
.menu-active ul.main-menu > li.active > ul, .menu-active ul.main-menu > li.is-open > ul {
  display: block;
  margin-left: 0.75rem !important;
}
@media (max-width: 767px) {
  .menu-active ul.main-menu > li {
    margin-right: 20px;
  }
}

.topest-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.topest-menu li a {
  color: #22262D;
}
.topest-menu li a.selected {
  font-weight: 600;
}
.topest-menu li + li {
  margin-left: 60px;
}

.form-section + .form-section {
  margin-top: 2rem;
}

.form-group {
  display: grid;
  align-items: flex-start;
  margin-bottom: 15px;
  grid-template-columns: 1fr;
  grid-column-gap: 15px;
}
.form-group.column-2 {
  grid-template-columns: repeat(2, 1fr);
}
.form-group.column-3 {
  grid-template-columns: repeat(3, 1fr);
}
.form-group .column {
  position: relative;
}
.form-group .column .error {
  font-size: 0.875rem;
  color: red;
}
@media (max-width: 575px) {
  .form-group {
    grid-template-columns: 1fr !important;
    grid-row-gap: 10px;
    margin-bottom: 10px;
  }
}

input[type=text]:not(.browser-default),
input[type=password]:not(.browser-default),
input[type=email]:not(.browser-default),
textarea:not(.browser-default) {
  width: 100%;
  padding: 13px 14px 14px;
  border-radius: 8px;
  border: 1px solid #C7CCD7;
  background: #fff;
  color: #000;
  font-size: 14px;
  line-height: inherit;
  transition: outline-color, border 0.5s ease-in-out;
}
input[type=text]:not(.browser-default):active, input[type=text]:not(.browser-default):focus,
input[type=password]:not(.browser-default):active,
input[type=password]:not(.browser-default):focus,
input[type=email]:not(.browser-default):active,
input[type=email]:not(.browser-default):focus,
textarea:not(.browser-default):active,
textarea:not(.browser-default):focus {
  outline: #0EAB70 solid 2px;
  border-color: transparent;
}
input[type=text]:not(.browser-default)::-moz-placeholder, input[type=password]:not(.browser-default)::-moz-placeholder, input[type=email]:not(.browser-default)::-moz-placeholder, textarea:not(.browser-default)::-moz-placeholder {
  color: #6A7283;
  font-size: 14px;
}
input[type=text]:not(.browser-default)::placeholder,
input[type=password]:not(.browser-default)::placeholder,
input[type=email]:not(.browser-default)::placeholder,
textarea:not(.browser-default)::placeholder {
  color: #6A7283;
  font-size: 14px;
}
input[type=text]:not(.browser-default).large,
input[type=password]:not(.browser-default).large,
input[type=email]:not(.browser-default).large,
textarea:not(.browser-default).large {
  padding: 17px 39px 17px 20px;
}
input[type=text]:not(.browser-default) + label,
input[type=password]:not(.browser-default) + label,
input[type=email]:not(.browser-default) + label,
textarea:not(.browser-default) + label {
  position: absolute;
  opacity: 0;
  font-size: 0.725rem;
  left: 17px;
  top: -12px;
  line-height: 22px;
  background-color: #fff;
  padding: 0 4px;
  transition: opacity 0.2s ease-in-out;
  font-weight: 600;
  color: #707070;
}
input[type=text]:not(.browser-default) ::-moz-placeholder, input[type=password]:not(.browser-default) ::-moz-placeholder, input[type=email]:not(.browser-default) ::-moz-placeholder, textarea:not(.browser-default) ::-moz-placeholder {
  -moz-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
input[type=text]:not(.browser-default) ::placeholder,
input[type=password]:not(.browser-default) ::placeholder,
input[type=email]:not(.browser-default) ::placeholder,
textarea:not(.browser-default) ::placeholder {
  transition: color 0.3s ease-in-out;
}
input[type=text]:not(.browser-default):not(:-moz-placeholder) + label, input[type=password]:not(.browser-default):not(:-moz-placeholder) + label, input[type=email]:not(.browser-default):not(:-moz-placeholder) + label, textarea:not(.browser-default):not(:-moz-placeholder) + label {
  opacity: 1;
}
input[type=text]:not(.browser-default):not(:placeholder-shown) + label, input[type=text]:not(.browser-default):focus + label, input[type=text]:not(.browser-default):active + label,
input[type=password]:not(.browser-default):not(:placeholder-shown) + label,
input[type=password]:not(.browser-default):focus + label,
input[type=password]:not(.browser-default):active + label,
input[type=email]:not(.browser-default):not(:placeholder-shown) + label,
input[type=email]:not(.browser-default):focus + label,
input[type=email]:not(.browser-default):active + label,
textarea:not(.browser-default):not(:placeholder-shown) + label,
textarea:not(.browser-default):focus + label,
textarea:not(.browser-default):active + label {
  opacity: 1;
}
input[type=text]:not(.browser-default):not(:placeholder-shown)::-moz-placeholder, input[type=text]:not(.browser-default):focus::-moz-placeholder, input[type=text]:not(.browser-default):active::-moz-placeholder, input[type=password]:not(.browser-default):not(:placeholder-shown)::-moz-placeholder, input[type=password]:not(.browser-default):focus::-moz-placeholder, input[type=password]:not(.browser-default):active::-moz-placeholder, input[type=email]:not(.browser-default):not(:placeholder-shown)::-moz-placeholder, input[type=email]:not(.browser-default):focus::-moz-placeholder, input[type=email]:not(.browser-default):active::-moz-placeholder, textarea:not(.browser-default):not(:placeholder-shown)::-moz-placeholder, textarea:not(.browser-default):focus::-moz-placeholder, textarea:not(.browser-default):active::-moz-placeholder {
  color: transparent;
}
input[type=text]:not(.browser-default):not(:-moz-placeholder)::placeholder, input[type=password]:not(.browser-default):not(:-moz-placeholder)::placeholder, input[type=email]:not(.browser-default):not(:-moz-placeholder)::placeholder, textarea:not(.browser-default):not(:-moz-placeholder)::placeholder {
  color: transparent;
}
input[type=text]:not(.browser-default):not(:placeholder-shown)::placeholder, input[type=text]:not(.browser-default):focus::placeholder, input[type=text]:not(.browser-default):active::placeholder,
input[type=password]:not(.browser-default):not(:placeholder-shown)::placeholder,
input[type=password]:not(.browser-default):focus::placeholder,
input[type=password]:not(.browser-default):active::placeholder,
input[type=email]:not(.browser-default):not(:placeholder-shown)::placeholder,
input[type=email]:not(.browser-default):focus::placeholder,
input[type=email]:not(.browser-default):active::placeholder,
textarea:not(.browser-default):not(:placeholder-shown)::placeholder,
textarea:not(.browser-default):focus::placeholder,
textarea:not(.browser-default):active::placeholder {
  color: transparent;
}
input[type=text]:not(.browser-default).has-error,
input[type=password]:not(.browser-default).has-error,
input[type=email]:not(.browser-default).has-error,
textarea:not(.browser-default).has-error {
  border-color: red !important;
}
@media (max-width: 575px) {
  input[type=text]:not(.browser-default).large,
  input[type=password]:not(.browser-default).large,
  input[type=email]:not(.browser-default).large,
  textarea:not(.browser-default).large {
    padding: 14px 40px 15px !important;
  }
}

textarea:not(.browser-default) {
  min-height: 112px;
}

input[type=checkbox] {
  display: none;
}
input[type=checkbox] + label {
  display: block;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
}
input[type=checkbox] + label a {
  color: #3460B4;
}
input[type=checkbox] + label a:hover {
  color: #0D2A68;
}
input[type=checkbox] + label:before {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  border-radius: 5px;
  border: 1px solid #000;
  width: 19px;
  height: 19px;
  top: 50%;
  transform: translateY(-9px);
}
input[type=checkbox]:checked + label:before {
  background-color: #3460B4;
  border-color: #3460B4;
  background-image: url(/local/templates/onlogsystem/images/checkbox.svg);
  background-position: center center;
  background-repeat: no-repeat;
}
input[type=checkbox].has-error + label {
  color: red;
}
input[type=checkbox].has-error + label:before {
  border-color: red;
}
@media (max-width: 575px) {
  input[type=checkbox] + label {
    font-size: 14px;
    line-height: 146%;
  }
}

.has-error input[type=text]:not(.browser-default),
.has-error input[type=password]:not(.browser-default),
.has-error input[type=email]:not(.browser-default),
.has-error textarea:not(.browser-default) {
  border-color: #FFA299;
}
.has-error input[type=text]:active, .has-error input[type=text]:focus,
.has-error input[type=password]:active,
.has-error input[type=password]:focus,
.has-error input[type=email]:active,
.has-error input[type=email]:focus,
.has-error textarea:active,
.has-error textarea:focus {
  outline: none;
}

.social-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
.social-links--item {
  width: 50px;
  height: 50px;
}
.social-links--item a {
  display: block;
}
.social-links--item img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .social-links {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .social-links {
    display: flex;
    justify-content: flex-start;
  }
}
@media (max-width: 575px) {
  .social-links {
    gap: 20px;
  }
  .social-links--item {
    width: 25px;
    height: 25px;
  }
}

.teazers {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.teazers .teazer {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  padding: 20px;
  border-radius: 18px;
  background: #FFF;
  box-shadow: 0 0 20px 0 rgba(0, 5, 115, 0.07);
}
.teazers .teazer .image {
  width: 40px;
  height: 40px;
}
.teazers .teazer .image img {
  display: block;
  margin: 0 auto;
}
.teazers .teazer .description {
  margin-top: 20px;
}
@media (max-width: 991px) {
  .teazers .teazer {
    flex: 0 0 calc((100% - 32px) / 2);
  }
}
@media (max-width: 767px) {
  .teazers .teazer {
    flex: 0 0 100%;
  }
}
@media (max-width: 575px) {
  .teazers .teazer {
    padding: 20px 25px;
    flex-direction: row;
    gap: 15px;
  }
  .teazers .teazer .description {
    margin-top: 0;
    font-size: 14px;
  }
}

.section.faq {
  display: flex;
  flex-direction: column;
}

.faq-section .columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 32px;
}
.faq-section .faq-item {
  border-radius: 18px;
  background: #FFF;
  box-shadow: 0 0 20px 0 rgba(0, 5, 115, 0.1);
  padding: 20px 50px 20px 40px;
}
.faq-section .faq-item .name {
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.faq-section .faq-item .name .circle {
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #0EAB70;
  margin-right: 14px;
}
.faq-section .faq-item .name .text {
  margin-right: 16px;
}
.faq-section .faq-item .name .icon {
  margin-left: auto;
  flex: 0 0 28px;
  width: 28px;
  height: 10px;
}
.faq-section .faq-item .name .icon img {
  display: block;
  width: 100%;
}
.faq-section .faq-item .content {
  display: none;
  font-size: 14px;
  padding: 0 0 0 22px;
  margin-top: 10px;
}
.faq-section .faq-item.active .content {
  display: block;
}
.faq-section .faq-item.active .name .icon {
  transform: rotate(180deg);
}
.faq-section .faq-item + .faq-item {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .faq-section .columns {
    grid-template-columns: 1fr;
    grid-row-gap: 20px;
  }
  .faq-section .faq-item {
    padding: 20px 20px 20px 20px;
  }
}

.faq-search-form {
  order: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  position: relative;
}
.faq-search-form input {
  outline: none !important;
  border: 1px solid #C7CCD7;
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  border-right: none !important;
  position: relative;
}
.faq-search-form input:not([type=submit]):active, .faq-search-form input:not([type=submit]):focus {
  border: 1px solid #0EAB70 !important;
}
.faq-search-form input[type=submit]:not(.reset) {
  background: #3460B4;
  color: #fff;
  padding: 13px 55px 14px;
  font-size: 14px;
  border: 1px solid #3460B4;
  border-top-right-radius: 8px !important;
  border-bottom-right-radius: 8px !important;
  cursor: pointer;
  line-height: inherit;
}
.faq-search-form input.reset {
  background: none;
  border: none;
  padding: 0;
  text-decoration: underline;
  margin-left: 16px;
  text-transform: lowercase;
  font-size: 12px;
  cursor: pointer;
}
.faq-search-form input.reset:hover {
  text-decoration: none;
}
@media (min-width: 768px) {
  .faq-search-form:after {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background-image: url("/local/templates/onlogsystem/images/search-gray.svg");
    position: absolute;
    left: 50px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
  }
  .faq-search-form input:not([type=submit]) {
    padding-left: 85px;
  }
}
@media (max-width: 767px) {
  .faq-search-form input[type=submit] {
    padding: 13px 32px 14px;
    background-image: url("/local/templates/onlogsystem/images/search-white.svg");
    text-indent: -9999px;
    background-repeat: no-repeat;
    background-position: center center;
  }
}

.faq-menu {
  order: 2;
}

.component .faq-section {
  order: 3;
}

.tabs-links {
  display: flex;
  gap: 40px;
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
}
.tabs-links .link {
  font-weight: 600;
  font-size: 14px;
  padding: 13px 0;
  position: relative;
  color: #707070;
  cursor: pointer;
}
.tabs-links .link a {
  color: inherit;
}
.tabs-links .link.selected {
  color: #383838;
  cursor: default;
}
.tabs-links .link.selected:after {
  content: "";
  position: absolute;
  display: block;
  height: 2px;
  width: 100%;
  left: 0;
  bottom: 0;
  background-color: #00AB55;
}
.tabs-links .link:hover {
  color: #383838;
}

table.table {
  border: 1px solid #DBE0EC;
  border-radius: 18px;
  overflow: hidden;
  border-spacing: 0;
}
table.table thead td, table.table thead th {
  background-color: #EFF3FB;
}
table.table tr + tr td {
  border-top: 1px solid #DBE0EC;
}
table.table td {
  padding: 0.5rem 1rem;
}
table.table th {
  padding: 1rem;
}
table.table td + td,
table.table th + th {
  border-left: 1px solid #DBE0EC;
}

.contacts-page h2 {
  margin-top: 0;
}
.contacts-page .country-card {
  border-radius: 18px;
  background: #FFF;
  box-shadow: 0 0 20px 0 rgba(0, 5, 115, 0.07);
  padding: 30px;
  display: flex;
  align-items: stretch;
  gap: 60px;
}
.contacts-page .country-card .contacts {
  flex: 0 0 40%;
}
.contacts-page .country-card .contacts .dropdown-select {
  margin-bottom: 20px;
}
.contacts-page .country-card .map {
  flex: 1 0 0;
  overflow: hidden;
  border-radius: 18px;
}
.contacts-page .country-card .phone {
  color: #22262D;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 0.24px;
  margin-bottom: 15px;
}
.contacts-page .country-card .email {
  line-height: 146.6%;
  letter-spacing: 0.32px;
  margin-bottom: 15px;
}
.contacts-page .country-card .address {
  color: #22262D;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}
.contacts-page .country-card .time {
  margin-top: 10px;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}
.contacts-page .country-card .staff {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}
.contacts-page .country-card .staff .image {
  flex: 0 0 70px;
}
.contacts-page .country-card .staff .image img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}
.contacts-page .country-card .staff .content .name {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
}
.contacts-page .country-card .staff .content .description {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  margin-top: 10px;
  line-height: 120%;
}
@media (max-width: 767px) {
  .contacts-page .country-card {
    flex-direction: column;
    padding: 15px;
  }
  .contacts-page .country-card .contacts {
    flex: 1 0 0;
  }
  .contacts-page .country-card .map {
    width: 100%;
    flex: 0 0 auto;
    min-height: 400px;
  }
}

.contacts-req {
  margin-top: 70px;
}
.contacts-req .requisites {
  margin-bottom: 32px;
}

.dropdown-select {
  border-radius: 8px;
  border: 1px solid #DBE0EC;
  padding: 17px 39px 17px 20px;
  position: relative;
}
.dropdown-select .label {
  position: absolute;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  background-color: #fff;
  left: 17px;
  top: 0;
  transform: translateY(-50%);
  z-index: 2;
  padding: 0 4px;
  opacity: 0;
  color: #707070;
  transition: opacity 0.3s ease-in-out;
}
.dropdown-select .label .required {
  color: red;
}
.dropdown-select.opened .label, .dropdown-select.focused .label {
  opacity: 1;
}
.dropdown-select .value {
  font-size: 14px;
  font-style: normal;
  line-height: 22px;
}
.dropdown-select .placeholder {
  color: #6A7283;
  font-size: 14px;
}
.dropdown-select .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 12px;
  height: 7px;
  position: absolute;
  right: 24px;
  top: 50%;
  margin-top: -4px;
}
.dropdown-select .dropdown-items {
  display: none;
  position: absolute;
  top: 100%;
  left: -1px;
  right: -1px;
  background-color: #fff;
  border: 1px solid #DBE0EC;
  padding: 7px 20px;
  border-radius: 0 0 8px 8px;
  z-index: 20;
}
.dropdown-select .dropdown-items ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.dropdown-select .dropdown-items ul li {
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  color: #666;
  cursor: pointer;
  padding: 6px 0;
}
.dropdown-select .dropdown-items ul li:hover {
  color: inherit;
}
.dropdown-select .dropdown-items ul li + li {
  border-top: 1px solid #DBE0EC;
}
.dropdown-select.opened:not(.dropdown) {
  border-radius: 8px 8px 0 0;
}
.dropdown-select.opened .icon {
  transform: rotate(180deg);
}
.dropdown-select.opened .dropdown-items {
  display: block;
}
.dropdown-select.has-error {
  border-color: #FFA299;
}
.dropdown-select.has-error .dropdown-items {
  border-left-color: #FFA299;
  border-right-color: #FFA299;
  border-bottom-color: #FFA299;
}

.search-form {
  order: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  position: relative;
}
.search-form input {
  outline: none !important;
  border: 1px solid #C7CCD7;
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  border-right: none !important;
  position: relative;
}
.search-form input:not([type=submit]):active, .search-form input:not([type=submit]):focus {
  border: 1px solid #0EAB70 !important;
}
.search-form input[type=submit]:not(.reset) {
  background: #3460B4;
  color: #fff;
  padding: 13px 55px 14px;
  font-size: 14px;
  border: 1px solid #3460B4;
  border-top-right-radius: 8px !important;
  border-bottom-right-radius: 8px !important;
  cursor: pointer;
  line-height: inherit;
}
.search-form input.reset {
  background: none;
  border: none;
  padding: 0;
  text-decoration: underline;
  margin-left: 16px;
  text-transform: lowercase;
  font-size: 12px;
  cursor: pointer;
}
.search-form input.reset:hover {
  text-decoration: none;
}
@media (min-width: 768px) {
  .search-form:after {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background-image: url("/local/templates/onlogsystem/images/search-gray.svg");
    position: absolute;
    left: 50px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
  }
  .search-form input:not([type=submit]) {
    padding-left: 85px;
  }
}
@media (max-width: 767px) {
  .search-form input[type=submit] {
    padding: 13px 32px 14px;
    background-image: url("/local/templates/onlogsystem/images/search-white.svg");
    text-indent: -9999px;
    background-repeat: no-repeat;
    background-position: center center;
  }
}

.datepicker {
  transition: all 0.3s ease-in-out;
}
.datepicker .calendar {
  display: none;
  position: absolute;
  top: 100%;
  transform: translateY(1px);
  left: 0;
  box-shadow: 0 0 4px 0 rgba(145, 158, 171, 0.2392156863);
  overflow: hidden;
  flex-direction: column;
  border-radius: 16px;
  padding: 0 12px 15px;
  background-color: #fff;
  z-index: 3;
}
.datepicker .calendar .header {
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.datepicker .calendar .header .month {
  font-weight: 500;
}
.datepicker .calendar .header .controls {
  display: inline-flex;
  align-items: center;
  gap: 24px;
}
.datepicker .calendar .header .controls .control {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}
.datepicker .calendar .header .controls .control svg {
  width: 100%;
  height: 100%;
  fill: #707070;
  transition: all 0.3s ease-in-out;
}
.datepicker .calendar .header .controls .control:hover svg {
  fill: #0EAB70;
}
.datepicker .calendar .react-calendar__month-view__weekdays .react-calendar__month-view__weekdays__weekday {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 40px;
}
.datepicker .calendar .react-calendar__month-view__weekdays .react-calendar__month-view__weekdays__weekday abbr {
  text-decoration: none;
  color: #707070;
  font-size: 0.875rem;
  text-transform: uppercase;
}
.datepicker .calendar .react-calendar__month-view__days {
  width: 252px;
}
.datepicker .calendar .react-calendar__tile {
  display: inline-flex;
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  outline: none;
}
.datepicker .calendar .react-calendar__tile abbr {
  display: inline-flex;
  width: 100%;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background-color: transparent;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}
.datepicker .calendar .react-calendar__tile.react-calendar__month-view__days__day--neighboringMonth {
  color: #707070;
}
.datepicker .calendar .react-calendar__tile.react-calendar__tile--active abbr {
  background-color: #0EAB70;
  color: #fff;
}
.datepicker .calendar .react-calendar__tile:hover:not(.react-calendar__tile--active) abbr {
  background-color: #EFF3FB;
}
.datepicker.opened {
  border-color: #0EAB70;
}
.datepicker.opened .calendar {
  display: flex;
}

.dropdown {
  transition: all 0.3s ease-in-out;
}
.dropdown .options {
  position: absolute;
  display: flex;
  flex-direction: column;
  left: 0;
  top: 100%;
  transform: translateY(1px);
  box-shadow: 0 0 20px 0 rgba(0, 5, 115, 0.0705882353);
  padding: 7px 10px;
  border-radius: 5px;
  background-color: #fff;
  overflow: hidden;
  gap: 4px;
  z-index: 3;
}
.dropdown .options .option {
  display: flex;
  align-items: center;
  min-width: 150px;
  min-height: 35px;
  padding: 8px 15px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
  line-height: 1.2;
}
.dropdown .options .option:hover, .dropdown .options .option.selected {
  background-color: #EFF3FB;
  color: #3460B4;
  border-radius: 5px;
  cursor: pointer;
}
.dropdown.multiply .options .option {
  position: relative;
  padding-left: 35px;
}
.dropdown.multiply .options .option:before {
  display: block;
  content: "";
  position: absolute;
  left: 8px;
  border-radius: 5px;
  border: 1px solid #000;
  width: 15px;
  height: 15px;
  top: 50%;
  transform: translateY(-50%);
}
.dropdown.multiply .options .option.selected:before {
  background-color: #3460B4;
  border-color: #3460B4;
  background-image: url(/local/templates/onlogsystem/images/checkbox.svg);
  background-position: center center;
  background-repeat: no-repeat;
}
.dropdown.opened {
  border-color: #0EAB70;
}

.textarea-ui {
  border-radius: 8px;
  border: 1px solid #DBE0EC;
  position: relative;
  padding: 27px 20px;
}
.textarea-ui .label {
  position: absolute;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  background-color: #fff;
  left: 17px;
  top: 0;
  transform: translateY(-50%);
  z-index: 2;
  padding: 0 4px;
  color: #707070;
  transition: opacity 0.3s ease-in-out;
}
.textarea-ui .label .required {
  color: red;
}
.textarea-ui textarea {
  border: none;
  outline: none;
  background-color: transparent;
  padding: 0;
  margin: 0;
  width: 100%;
  min-height: 66px;
  font-size: 0.875rem;
  font-weight: 500;
  resize: none;
}
.textarea-ui .placeholder {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  padding: 0 20px;
  font-size: 0.875rem;
  color: #707070;
  line-height: 22px;
}
.textarea-ui.focused .placeholder {
  display: none;
}
.textarea-ui.has-error {
  border-color: #FFA299;
}

.textinput-ui {
  position: relative;
}
.textinput-ui .label {
  position: absolute;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  background-color: #fff;
  left: 17px;
  top: 0;
  transform: translateY(-50%);
  z-index: 2;
  padding: 0 4px;
  color: #707070;
  transition: opacity 0.3s ease-in-out;
}
.textinput-ui .label .required {
  color: red;
}

.partial-inputs-ui {
  position: relative;
  border: 1px solid #DBE0EC;
  border-radius: 8px;
}
.partial-inputs-ui .label {
  position: absolute;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  background-color: #fff;
  top: 0;
  transform: translateY(-50%);
  z-index: 2;
  padding: 0 4px;
  color: #707070;
  transition: opacity 0.3s ease-in-out;
}
.partial-inputs-ui .label .required {
  color: red;
}
.partial-inputs-ui .label.name {
  left: 17px;
}
.partial-inputs-ui .label.value {
  left: calc(50% + 37px);
}
.partial-inputs-ui .inputs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.partial-inputs-ui .inputs input {
  border-color: transparent !important;
  outline: none !important;
  border-radius: 8px;
  font-weight: 500;
  padding-top: 17px;
  padding-bottom: 17px;
}
.partial-inputs-ui .inputs input + input {
  border-left: 1px solid #DBE0EC !important;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  text-align: center;
}
.partial-inputs-ui .inputs + .inputs {
  border-top: 1px solid #DBE0EC;
}
.partial-inputs-ui .add-inputs {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 24px;
  height: 24px;
  cursor: pointer;
  left: 50%;
  bottom: 0;
  transform: translateX(-12px) translateY(12px);
}
.partial-inputs-ui .add-inputs svg {
  fill: #0EAB70;
  transition: all 0.3s ease-in-out;
}
.partial-inputs-ui .add-inputs:hover svg {
  fill: #00613C;
}
.partial-inputs-ui .dropdown {
  border-color: transparent !important;
}
.partial-inputs-ui .dropdown + input {
  border-left: 1px solid #DBE0EC !important;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  text-align: center;
}
.partial-inputs-ui.has-error {
  border-color: #FFA299;
}

.file-input-ui {
  position: relative;
  border: 1px solid #DBE0EC;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  width: 100%;
  padding: 0 20px;
  flex: 1 0 auto;
}
.file-input-ui .label {
  position: absolute;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  background-color: #fff;
  top: 0;
  left: 17px;
  transform: translateY(-50%);
  z-index: 2;
  padding: 0 4px;
  color: #707070;
  transition: opacity 0.3s ease-in-out;
}
.file-input-ui .label .required {
  color: red;
}
.file-input-ui .add-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  cursor: pointer;
  flex-shrink: 0;
}
.file-input-ui .add-icon svg {
  width: 20px;
  height: 20px;
  fill: #0EAB70;
  transition: all 0.3s ease-in-out;
}
.file-input-ui .add-icon:hover svg {
  fill: #00613C;
}
.file-input-ui .empty-state {
  margin-left: 12px;
  color: #707070;
  font-size: 0.875rem;
  line-height: 1.35;
}
.file-input-ui .file {
  display: inline-flex;
  justify-content: space-between;
  width: 100%;
  gap: 1rem;
}
.file-input-ui .file .name {
  font-weight: 500;
  font-size: 0.875rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.file-input-ui .file .remove-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 21px;
  height: 21px;
  cursor: pointer;
}
.file-input-ui .file .remove-icon svg {
  fill: #707070;
  transition: all 0.3s ease-in-out;
}
.file-input-ui .file .remove-icon:hover svg {
  fill: #0EAB70;
}
.file-input-ui.has-error {
  border-color: #FFA299;
}

.gabarits-ui {
  position: relative;
  border: 1px solid #DBE0EC;
  border-radius: 8px;
}
.gabarits-ui .row {
  grid-template-columns: 1fr 2fr 1fr;
  gap: 0 !important;
  position: relative;
  transition: background-color 0.3s ease;
}
.gabarits-ui .row .column {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-top: 17px;
  padding-bottom: 17px;
  min-height: 57px;
}
.gabarits-ui .row .column label {
  left: 17px;
  position: absolute;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  background-color: #fff;
  top: 0;
  transform: translateY(-50%);
  z-index: 2;
  padding: 0 4px;
  color: #707070;
  transition: opacity 0.3s ease-in-out;
}
.gabarits-ui .row .column label .required {
  color: red;
}
.gabarits-ui .row .column.dimensions {
  gap: 10px;
}
.gabarits-ui .row .column input {
  outline: none;
  text-align: center;
  max-width: 50px;
  border-bottom: 1px solid #a3a3a3;
  background-color: transparent;
}
.gabarits-ui .row .column input.filled {
  border-bottom-color: transparent;
}
.gabarits-ui .row .column input[type=number]::-webkit-inner-spin-button, .gabarits-ui .row .column input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.gabarits-ui .row .column.weight input {
  max-width: 80%;
}
.gabarits-ui .row .column .separator {
  color: #a3a3a3;
  font-size: 0.875rem;
}
.gabarits-ui .row .column + .column {
  border-left: 1px solid #DBE0EC;
}
.gabarits-ui .row.has-error {
  background-color: #ffe9e9;
}
.gabarits-ui .row.total .column {
  background-color: #EFF3FB;
}
.gabarits-ui .row.total .add-row {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 24px;
  height: 24px;
  cursor: pointer;
  left: 50%;
  top: 0;
  transform: translateX(-12px) translateY(-12px);
}
.gabarits-ui .row.total .add-row svg {
  fill: #0EAB70;
  transition: all 0.3s ease-in-out;
}
.gabarits-ui .row.total .add-row:hover svg {
  fill: #00613C;
}
.gabarits-ui .row + .row {
  border-top: 1px solid #DBE0EC;
}

.dropdown-select__portal-options {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 7px 10px;
  border: 1px solid #d8e0ec;
  border-radius: 12px;
  background-color: #fff;
  box-shadow: 0 16px 32px rgba(24, 37, 62, 0.08);
}

.dropdown-select__portal-option {
  display: flex;
  align-items: center;
  min-height: 35px;
  padding: 8px 15px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.2;
  transition: all 0.3s ease-in-out;
}

.dropdown-select__portal-option:hover,
.dropdown-select__portal-option.selected {
  background-color: #EFF3FB;
  color: #3460B4;
  border-radius: 5px;
  cursor: pointer;
}

.action-fabs {
  display: flex;
  align-items: flex-end;
  gap: 12px;
}
.action-fabs--floating {
  position: fixed;
  right: calc(var(--sw-right-pos, 30px) + var(--sw-width, 60px) + 16px);
  bottom: var(--sw-bottom-pos, 30px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}
.action-fabs--inline {
  position: relative;
  pointer-events: auto;
}
.action-fabs--visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.action-fabs__stack {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  pointer-events: auto;
}
.action-fabs__glow {
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 74px;
  height: 74px;
  transform: translateX(-50%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.action-fabs__glow--save {
  background: rgba(22, 163, 74, 0.1);
  box-shadow: 0 0 24px rgba(22, 163, 74, 0.18);
}
.action-fabs__glow--cancel {
  background: rgba(239, 68, 68, 0.1);
  box-shadow: 0 0 24px rgba(239, 68, 68, 0.16);
}
.action-fabs__btn {
  position: relative;
  width: 60px;
  height: 60px;
  border: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  box-shadow: 0 12px 24px rgba(17, 24, 39, 0.18);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  z-index: 1;
}
.action-fabs__btn:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(17, 24, 39, 0.22);
}
.action-fabs__btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.action-fabs__btn .action-fabs__icon {
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
.action-fabs__btn .action-fabs__icon--save {
  width: 24px;
  height: 24px;
}
.action-fabs__btn .action-fabs__icon--cancel {
  width: 16px;
  height: 16px;
}
.action-fabs__btn--save {
  background: #16a34a;
  box-shadow: 0 12px 24px rgba(22, 163, 74, 0.28);
}
.action-fabs__btn--cancel {
  background: #ef4444;
  box-shadow: 0 10px 22px rgba(239, 68, 68, 0.24);
}
.action-fabs__btn img {
  -o-object-fit: contain;
     object-fit: contain;
}
.action-fabs__label {
  position: absolute;
  left: 50%;
  right: auto;
  top: auto;
  bottom: calc(100% + 12px);
  transform: translateX(-50%) translateY(6px);
  opacity: 0;
  visibility: hidden;
  padding: 12px 18px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 24px rgba(17, 24, 39, 0.12);
  font-size: 13px;
  line-height: 1.3;
  color: #5b667a;
  white-space: nowrap;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  pointer-events: none;
}
.action-fabs__stack:hover .action-fabs__label, .action-fabs__stack:focus-within .action-fabs__label {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 1024px) {
  .action-fabs__label {
    display: none;
  }
}
@media (max-width: 768px) {
  .action-fabs--floating {
    right: 16px;
    bottom: calc(var(--sw-bottom-pos, 30px) + var(--sw-btn-height, 60px) + 12px);
  }
  .action-fabs__btn {
    width: 52px;
    height: 52px;
  }
  .action-fabs__glow {
    width: 68px;
    height: 68px;
    bottom: -8px;
  }
}
@media (max-width: 575px) {
  .action-fabs {
    gap: 10px;
  }
  .action-fabs--floating {
    right: 12px;
    bottom: calc(var(--sw-bottom-pos, 30px) + var(--sw-btn-height, var(--sw-width, 60px)) + 10px);
  }
  .action-fabs__btn {
    width: 44px;
    height: 44px;
  }
  .action-fabs__btn .action-fabs__icon--save {
    width: 18px;
    height: 18px;
  }
  .action-fabs__btn .action-fabs__icon--cancel {
    width: 14px;
    height: 14px;
  }
  .action-fabs__glow {
    width: 58px;
    height: 58px;
    bottom: -8px;
  }
}
.feedback-form {
  position: relative;
  margin: 0 -50px -50px;
  padding: 0 50px 70px;
  overflow: hidden;
  border-radius: 0 0 20px 20px;
}
.feedback-form > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 48px;
}
.feedback-form .intro {
  position: relative;
  width: 350px;
  z-index: 2;
}
.feedback-form .intro .title {
  width: 330px;
}
.feedback-form .intro .title h2 {
  margin: 0;
  line-height: normal;
}
.feedback-form .intro .subtitle {
  margin: 10px 0 17px;
}
.feedback-form .form {
  padding: 2px 0 0;
  position: relative;
  z-index: 2;
}
.feedback-form .form .line {
  display: grid;
  grid-template-columns: 1fr;
  grid-column-gap: 10px;
}
.feedback-form .form .line.top {
  grid-template-columns: 1fr 1fr;
}
.feedback-form .form .line + .line {
  margin-top: 10px;
}
.feedback-form .form .alert {
  margin-top: 30px;
}
.feedback-form .form .buttons {
  margin-top: 30px;
}
.feedback-form:after {
  content: "";
  display: block;
  position: absolute;
  width: 726px;
  height: 392px;
  background-image: url(/local/templates/onlogsystem/images/right.png);
  background-repeat: no-repeat;
  left: -140px;
  bottom: -150px;
}
@media (max-width: 1199px) {
  .feedback-form {
    margin: 0 -15px -50px;
    padding: 0 15px 50px;
  }
  .feedback-form > div {
    width: 470px;
    grid-template-columns: 1fr;
    grid-row-gap: 30px;
  }
  .feedback-form:after {
    left: auto;
    right: -350px;
    top: 50%;
    transform: translateY(-50%);
  }
}
@media (max-width: 767px) {
  .feedback-form > div {
    width: 100%;
  }
  .feedback-form:after {
    display: none;
  }
}

.mailing-form {
  position: relative;
  margin: 0 -45px -45px;
  padding: 30px 45px 45px;
  overflow: hidden;
  border-radius: 0 0 20px 20px;
  background-image: url(/local/templates/onlogsystem/images/right.png);
  background-repeat: no-repeat;
  background-position: center right;
  background-size: contain;
}
.mailing-form .wrapper {
  width: 560px;
  position: relative;
  z-index: 2;
}
.mailing-form .intro .title h2 {
  margin: 0;
}
.mailing-form .form .line + .line {
  margin-top: 10px;
}
.mailing-form .form .input {
  padding: 40px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.mailing-form .form .input input {
  outline: none !important;
  border: 1px solid #C7CCD7;
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  border-right: none !important;
  position: relative;
  height: 45px;
  padding-left: 50px;
}
.mailing-form .form .input input:active, .mailing-form .form .input input:focus {
  border: 1px solid #0EAB70 !important;
  border-right: none !important;
}
.mailing-form .form .input .send-button {
  background: #3460B4;
  color: #fff;
  padding: 13px 0 14px;
  font-size: 14px;
  line-height: normal;
  border-top-right-radius: 8px !important;
  border-bottom-right-radius: 8px !important;
  cursor: pointer;
  height: 45px;
  display: inline-flex;
  align-items: center;
  width: 163px;
  justify-content: center;
}
.mailing-form:after {
  content: "";
  display: block;
  position: absolute;
  width: 726px;
  height: 392px;
  right: -240px;
  bottom: -100px;
}
@media (max-width: 1199px) {
  .mailing-form {
    margin: 0 -15px -50px;
    padding: 0 15px 50px;
  }
}
@media (max-width: 767px) {
  .mailing-form .wrapper {
    width: 100%;
  }
  .mailing-form .form .input {
    display: block;
  }
  .mailing-form .form .input input {
    border: 1px solid #C7CCD7;
    border-radius: 8px !important;
    margin-bottom: 15px;
  }
  .mailing-form .form .input .send-button {
    text-align: center;
    border-radius: 8px !important;
  }
  .mailing-form:after {
    display: none;
  }
}
@media (max-width: 575px) {
  .mailing-form .intro .title h2 {
    line-height: 111%;
    margin-bottom: 10px;
  }
  .mailing-form .form .input input {
    height: 50px;
    padding-left: 50px;
  }
  .mailing-form .form .input .send-button {
    height: 40px;
    display: flex;
    flex: 1 0 auto;
    justify-content: center;
  }
}

.logistic-page-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (max-width: 1199px) {
  .logistic-page-list {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 767px) {
  .logistic-page-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 575px) {
  .logistic-page-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.services-page.sections .menu {
  margin: 2rem 0;
  padding: 1rem;
  border: 2px solid #0EAB70;
  border-radius: 1rem;
}
.services-page.sections .menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.services-page.sections .menu ul.columns {
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  -moz-columns: 2;
       columns: 2;
}
.services-page.sections .menu > ul {
  display: flex;
  gap: 1rem;
}
.services-page.sections .menu > ul > li {
  flex: 1 1 auto;
}
.services-page.sections .menu > ul > li > .name {
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.services-page.sections .menu > ul > li ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.services-page.sections .menu > ul > li ul li {
  line-height: 1.2;
}
.services-page.sections .menu > ul > li ul li a {
  color: #22262D;
}
@media (max-width: 767px) {
  .services-page.sections .menu > ul {
    flex-direction: column;
  }
}
.services-page.section .menu {
  margin: 2rem 0;
  padding: 1rem;
  border: 2px solid #0EAB70;
  border-radius: 1rem;
}
.services-page.section .menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  -moz-columns: 2;
       columns: 2;
}

.documents-page .document {
  display: flex;
  padding: 25px 65px 25px 40px;
  align-items: center;
  gap: 20px;
  border-radius: 18px;
  background: #FFF;
  box-shadow: 0 0 20px 0 rgba(0, 5, 115, 0.07);
}
.documents-page .document .icon {
  background-image: url(/local/templates/onlogsystem/images/icons/document.svg);
  width: 50px;
  height: 50px;
  background-repeat: no-repeat;
  background-size: cover;
}
.documents-page .document .content .name {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 146.6%;
  letter-spacing: 0.4px;
  margin-bottom: 10px;
}
.documents-page .document .content .buttons a {
  display: inline-flex;
  padding: 7px 10px;
  align-items: flex-start;
  gap: 17px;
  border-radius: 8px;
  border: 0.5px solid #707070;
  color: #707070;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  cursor: pointer;
}
.documents-page .document + .document {
  margin-top: 1rem;
}

.requests-list .tabs-links .link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.requests-list .tabs-links .link .count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: #00AB55;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}
.requests-list .search-form {
  min-height: 60px;
}
.requests-list .tab-content-wrapper {
  overflow-x: auto;
}
.requests-list .empty-content {
  padding: 28px 24px;
  border: 1px solid #DBE0EC;
  border-radius: 18px;
  background: #fff;
  color: #6A7283;
}
.requests-list .items {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-width: 720px;
  box-shadow: 0 0 20px 0 rgba(0, 5, 115, 0.0705882353);
  border-radius: 18px;
  border: 1px solid #DBE0EC;
  overflow: hidden;
}
.requests-list .items .item {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, 1fr);
}
.requests-list .items .item.head {
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 19px;
  background-color: #EFF3FB;
  text-align: center;
}
.requests-list .items .item > div {
  padding: 20px;
}
.requests-list .items .item > div.status {
  text-align: center;
}
.requests-list .items .item > div.status .need-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(226, 39, 39, 0.3019607843);
  border-radius: 5px;
  padding: 0 10px;
  color: inherit;
  transition: background-color 0.3s ease;
}
.requests-list .items .item > div.status .need-action:hover {
  background: rgba(255, 0, 0, 0.5);
}
.requests-list .items .item > div + div {
  border-left: 1px solid #DBE0EC;
}
.requests-list .items .item .title a {
  text-decoration: none;
}
.requests-list .items .item .title a:hover {
  text-decoration: none;
}
.requests-list .items .item .file a:hover {
  color: #00613C;
}
.requests-list .items .item + .item {
  border-top: 1px solid #DBE0EC;
}
.requests-list .items.items--confirmed {
  min-width: 1140px;
}
.requests-list .items.items--confirmed .item {
  gap: 0;
  grid-template-columns: 1.15fr 1fr 1fr 1fr 0.9fr 0.85fr;
}
.requests-list .items.items--confirmed .item > div {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.requests-list .items.items--confirmed .item.head > div {
  min-height: 62px;
}
.requests-list .items.items--confirmed .item .title {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  gap: 6px;
}
.requests-list .items.items--confirmed .item .title .meta {
  color: #7A8497;
  font-size: 12px;
  line-height: 16px;
}
.requests-list .items.items--confirmed .item .route,
.requests-list .items.items--confirmed .item .goods,
.requests-list .items.items--confirmed .item .specification,
.requests-list .items.items--confirmed .item .balance {
  line-height: 1.45;
}
.requests-list .items.items--confirmed .item .specification,
.requests-list .items.items--confirmed .item .balance {
  font-weight: 500;
}
.requests-list .items.items--confirmed .item .status-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  background: #EFF3FB;
  color: #3460B4;
}
.requests-list .items.items--confirmed .item .status-chip--success {
  background: #DFF4E8;
  color: #227D54;
}
.requests-list .items.items--confirmed .item .status-chip--warning {
  background: #FFF2D6;
  color: #A86A00;
}
.requests-list .items.items--confirmed .item .status-chip--danger {
  background: #F7D3D3;
  color: #9C4B4B;
}
.requests-list .items.items--confirmed .item .muted {
  color: #7A8497;
  font-weight: 400;
}
@media (max-width: 991px) {
  .requests-list .tabs-links {
    gap: 24px;
    overflow-x: auto;
    padding-bottom: 4px;
  }
  .requests-list .items {
    min-width: 680px;
  }
  .requests-list .items.items--confirmed {
    min-width: 980px;
  }
}

.requests-detail .content {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.requests-detail .deal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.requests-detail .deal-header .status {
  background-color: #EFF3FB;
  border-radius: 8px;
  color: #3460B4;
  font-weight: 400;
  line-height: 1;
  min-width: 524px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
}
.requests-detail .deal-header .kp a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #383838;
  transition: all 0.3s ease-in-out;
}
.requests-detail .deal-header .kp a .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}
.requests-detail .deal-header .kp a .icon svg {
  width: 100%;
  height: 100%;
  fill: #B9C0CE;
  transition: all 0.3s ease-in-out;
}
.requests-detail .deal-header .kp a:hover {
  color: #0EAB70;
}
.requests-detail .deal-header .kp a:hover .icon svg {
  fill: #0EAB70;
}
.requests-detail .contract-form {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.requests-detail .contract-form .contract-fields {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.requests-detail .contract-form .contract-fields section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.requests-detail .contract-form .contract-fields section .row {
  display: grid;
  gap: 20px;
}
.requests-detail .contract-form .contract-fields section .row.columns-repeat-2 {
  grid-template-columns: repeat(2, 1fr);
}
.requests-detail .contract-form .contract-fields section .row.columns-repeat-3 {
  grid-template-columns: repeat(3, 1fr);
}
.requests-detail .contract-form .contract-fields section .row.columns-grid-1-2-1 {
  grid-template-columns: 1fr 2fr 1fr;
}
.requests-detail .contract-form .contract-fields section .row.columns-grid-1-1-2 {
  grid-template-columns: 1fr 1fr 2fr;
}
.requests-detail .contract-form .buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.requests-detail .contract-form .contract-documents {
  margin-top: 1rem;
  margin-bottom: 2rem;
}
.requests-detail .contract-form .contract-documents .document a:not(:hover) {
  text-decoration: underline;
}
.requests-detail .contract-form .contract-documents .document + .document {
  margin-top: 0.5rem;
}
.requests-detail .fields-form {
  margin-top: 2rem;
}
.requests-detail .fields {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
.requests-detail .column.file input {
  padding-left: 50px;
  background-image: url("/images/icons/documents.svg");
  background-size: 19px 19px;
  background-repeat: no-repeat;
  background-position-y: center;
  background-position-x: 1rem;
  cursor: pointer;
}
.requests-detail .deal-request-form {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.requests-detail .deal-request-form .row {
  display: grid;
  gap: 20px;
}
.requests-detail .deal-request-form .row.terms, .requests-detail .deal-request-form .row.adress, .requests-detail .deal-request-form .row.partial {
  grid-template-columns: repeat(2, 1fr);
}
.requests-detail .deal-request-form .row.partial {
  align-items: flex-start;
}
.requests-detail .deal-request-form .row.additional {
  display: flex;
  flex-direction: column;
}
.requests-detail .deal-request-form .row.additional .col1111 {
  grid-template-columns: repeat(4, 1fr);
}
.requests-detail .deal-request-form .row.additional .col121 {
  grid-template-columns: 1fr 2fr 1fr;
}
.requests-detail .deal-request-form .party-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px;
  border: 1px solid #DBE0EC;
  border-radius: 18px;
  background: #FFFFFF;
  box-shadow: 0 0 20px 0 rgba(0, 5, 115, 0.0705882353);
}
.requests-detail .deal-request-form .party-card .party-card__title {
  color: #3460B4;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 500;
}
.requests-detail .deal-request-form .party-card .party-card__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.requests-detail .deal-signing-form {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.requests-detail .deal-signing-form section.specification .file-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-weight: 500;
  gap: 10px;
  color: #707070;
}
.requests-detail .deal-signing-form section.specification .file-link .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}
.requests-detail .deal-signing-form section.specification .file-link .icon svg {
  width: 100%;
  height: 100%;
  transition: all 0.3s ease-in-out;
  fill: #707070;
}
.requests-detail .deal-signing-form section.specification .file-link:hover {
  color: #0EAB70;
}
.requests-detail .deal-signing-form section.specification .file-link:hover .icon svg {
  fill: #0EAB70;
}
.requests-detail .deal-signing-form section.scan > .file {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 991px) {
  .requests-detail .deal-header {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .requests-detail .deal-header .status {
    min-width: 0;
    width: 100%;
  }
  .requests-detail .contract-form {
    gap: 32px;
  }
  .requests-detail .contract-form .contract-fields {
    gap: 28px;
  }
  .requests-detail .contract-form .contract-fields section .row.columns-repeat-2, .requests-detail .contract-form .contract-fields section .row.columns-repeat-3, .requests-detail .contract-form .contract-fields section .row.columns-grid-1-2-1, .requests-detail .contract-form .contract-fields section .row.columns-grid-1-1-2 {
    grid-template-columns: 1fr;
  }
  .requests-detail .contract-form .buttons {
    flex-wrap: wrap;
  }
  .requests-detail .deal-request-form .row.terms, .requests-detail .deal-request-form .row.adress, .requests-detail .deal-request-form .row.partial {
    grid-template-columns: 1fr;
  }
  .requests-detail .deal-request-form .party-card {
    padding: 20px;
  }
  .requests-detail .deal-request-form .party-card .party-card__row {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .requests-detail .content,
  .requests-detail .contract-form,
  .requests-detail .deal-request-form,
  .requests-detail .deal-signing-form {
    gap: 28px;
  }
  .requests-detail .deal-header {
    gap: 14px;
  }
  .requests-detail .deal-header .status {
    min-height: 38px;
    padding: 10px 12px;
    text-align: center;
    line-height: 1.35;
  }
  .requests-detail .contract-form .contract-fields section {
    gap: 16px;
  }
  .requests-detail .contract-form .contract-fields section .row {
    gap: 16px;
  }
  .requests-detail .deal-request-form {
    gap: 28px;
  }
  .requests-detail .deal-request-form .row {
    gap: 16px;
  }
  .requests-detail .deal-request-form .party-card {
    padding: 18px;
    gap: 14px;
  }
  .requests-detail .deal-request-form .party-card .party-card__title {
    font-size: 18px;
  }
  .requests-detail .deal-signing-form section.scan > .file {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 575px) {
  .requests-list .empty-content {
    padding: 20px 16px;
    border-radius: 14px;
  }
  .requests-detail .deal-header .status {
    font-size: 13px;
  }
  .requests-detail .contract-form .buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .requests-detail .deal-request-form .party-card {
    padding: 16px;
    border-radius: 16px;
  }
  .requests-detail .deal-request-form .party-card .party-card__title {
    font-size: 17px;
  }
}
.delivery-page {
  max-width: 1480px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
  padding: 20px 24px 120px;
}

.delivery-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  font-size: 13px;
}
.delivery-breadcrumbs__link {
  color: #4a90d9;
  text-decoration: none;
}
.delivery-breadcrumbs__link:hover {
  text-decoration: underline;
}
.delivery-breadcrumbs__sep {
  color: #9a9fa8;
  font-size: 12px;
}
.delivery-breadcrumbs__current {
  color: #5a5f69;
  font-weight: 500;
}

.delivery-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}
.delivery-header__title {
  font-size: 24px;
  font-weight: 700;
  color: #3a3f47;
  margin: 0;
}

.delivery-tables {
  display: flex;
  flex-direction: column;
  gap: 36px;
  margin-bottom: 40px;
}

.delivery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 16px;
  min-width: 0;
}
@media (max-width: 900px) {
  .delivery-grid {
    grid-template-columns: 1fr;
  }
}

.delivery-header__title {
  font-size: 58px;
  line-height: 1.05;
  font-weight: 400;
}

@media (max-width: 1200px) {
  .delivery-header__title {
    font-size: 44px;
  }
}
.delivery-page {
  max-width: 1520px;
  padding: 8px 8px 120px;
}

.delivery-tables {
  gap: 28px;
  margin-bottom: 28px;
}

.delivery-grid {
  gap: 24px;
  align-items: start;
}

.delivery-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
  min-width: 0;
}

.delivery-grid > * {
  min-width: 0;
}

.delivery-card--general,
.delivery-card--comments {
  grid-column: 1/-1;
}

.delivery-card--origin,
.delivery-card--destination {
  grid-column: span 6;
}

.delivery-card--vessel {
  grid-column: span 5;
}

.delivery-card--release {
  grid-column: span 4;
}

.delivery-card--empty-containers {
  grid-column: span 7;
}

@media (max-width: 1180px) {
  .delivery-grid {
    grid-template-columns: 1fr;
  }
  .delivery-card--general,
  .delivery-card--origin,
  .delivery-card--destination,
  .delivery-card--vessel,
  .delivery-card--release,
  .delivery-card--empty-containers,
  .delivery-card--comments {
    grid-column: 1/-1;
  }
}
@media (max-width: 767px) {
  .delivery-page {
    padding: 12px 12px 108px;
  }
  .delivery-header {
    gap: 12px;
    margin-bottom: 18px;
  }
  .delivery-header__title {
    font-size: 30px;
    line-height: 1.08;
  }
  .delivery-tables {
    gap: 20px;
    margin-bottom: 20px;
  }
  .delivery-grid {
    gap: 18px;
  }
}
@media (max-width: 575px) {
  .delivery-page {
    padding: 8px 6px 104px;
  }
  .delivery-header__title {
    font-size: 26px;
  }
  .delivery-grid {
    gap: 14px;
  }
}
.delivery-grid {
  align-items: stretch;
}

.delivery-grid--fcl .delivery-card--general,
.delivery-grid--fcl .delivery-card--vessel,
.delivery-grid--fcl .delivery-card--release,
.delivery-grid--fcl .delivery-card--empty-containers,
.delivery-grid--ftl .delivery-card--origin,
.delivery-grid--ftl .delivery-card--destination,
.delivery-grid--lcl .delivery-card--origin,
.delivery-grid--lcl .delivery-card--destination,
.delivery-grid--ltl .delivery-card--origin,
.delivery-grid--ltl .delivery-card--destination,
.delivery-grid--avia .delivery-card--origin,
.delivery-grid--avia .delivery-card--destination {
  min-height: 100%;
}

.delivery-tabs {
  border-bottom: 2px solid #e2e5e9;
  margin-bottom: 28px;
}
.delivery-tabs__list {
  display: flex;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.delivery-tabs__list::-webkit-scrollbar {
  height: 0;
}
.delivery-tabs__item {
  flex-shrink: 0;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 500;
  color: #9a9fa8;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.delivery-tabs__item:hover {
  color: #3a3f47;
  background: #f7f8fa;
}
.delivery-tabs__item--active {
  color: #4a90d9;
  border-bottom-color: #4a90d9;
}
.delivery-tabs__item--active:hover {
  background: none;
}

@media (max-width: 767px) {
  .delivery-tabs__list {
    flex-wrap: wrap;
    overflow: visible;
    row-gap: 4px;
  }
  .delivery-tabs__item {
    flex-shrink: 1;
    padding: 10px 14px;
    white-space: normal;
  }
}
@media (max-width: 1024px) {
  .delivery-tabs__list {
    flex-wrap: wrap;
    overflow: visible;
    row-gap: 4px;
  }
  .delivery-tabs__item {
    flex-shrink: 1;
    padding: 10px 16px;
    white-space: normal;
  }
}
.delivery-card {
  background: #ffffff;
  border: 1px solid #e2e5e9;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  padding: 22px;
}
.delivery-card--full {
  grid-column: 1/-1;
}
.delivery-card__title {
  font-size: 15px;
  font-weight: 600;
  color: #3460B4;
  margin: 0 0 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e2e5e9;
}
.delivery-card__body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.delivery-card {
  border: 1px solid #d8e0ec;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(20, 39, 74, 0.06);
  padding: 28px;
}

.delivery-card__title {
  margin: 0 0 22px;
  padding-bottom: 0;
  border-bottom: 0;
  color: #3460B4;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
}

.delivery-card__body {
  gap: 18px;
}

.delivery-card__inline-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
  min-width: 0;
}

.delivery-card__inline-grid > * {
  min-width: 0;
}

.delivery-card__title::after {
  content: ":";
}

.delivery-card {
  height: 100%;
}

.delivery-card--general,
.delivery-card--vessel,
.delivery-card--release,
.delivery-card--empty-containers {
  grid-column: span 6;
}

.delivery-card--origin,
.delivery-card--destination {
  grid-column: span 6;
}

.delivery-card--comments {
  grid-column: 1/-1;
}

.delivery-card--comments .delivery-field,
.delivery-card--comments .textarea-ui,
.delivery-card--comments .textarea-ui textarea,
.delivery-card--comments .textarea-ui .placeholder {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0;
  box-sizing: border-box;
}

.delivery-card--comments .textarea-ui {
  min-height: 112px;
}

.delivery-card--comments .textarea-ui textarea {
  min-height: 112px;
}

@media (max-width: 767px) {
  .delivery-card {
    padding: 20px 16px;
    border-radius: 20px;
  }
  .delivery-card__title {
    margin-bottom: 18px;
    font-size: 16px;
  }
  .delivery-card__body {
    gap: 14px;
  }
  .delivery-card__inline-grid {
    gap: 14px;
  }
}
@media (max-width: 575px) {
  .delivery-card {
    padding: 18px 14px;
    border-radius: 18px;
  }
  .delivery-card__title {
    margin-bottom: 16px;
    font-size: 15px;
  }
  .delivery-card__inline-grid {
    gap: 12px;
  }
}
.delivery-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.delivery-field__label {
  font-size: 13px;
  font-weight: 500;
  color: #5a5f69;
}
.delivery-field__required {
  color: #e74c3c;
  margin-left: 2px;
}
.delivery-field__input, .delivery-field__select, .delivery-field__textarea {
  width: 100%;
  padding: 9px 12px;
  font-size: 14px;
  color: #3a3f47;
  background: #ffffff;
  border: 1px solid #ccd0d5;
  border-radius: 6px;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.delivery-field__input:focus, .delivery-field__select:focus, .delivery-field__textarea:focus {
  border-color: #4a90d9;
  box-shadow: 0 0 0 2px rgba(74, 144, 217, 0.12);
}
.delivery-field__select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%239a9fa8'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
  cursor: pointer;
}
.delivery-field__textarea {
  resize: vertical;
  min-height: 80px;
}
.delivery-field__readonly {
  padding: 9px 12px;
  background: #f7f8fa;
  border: 1px solid #e2e5e9;
  border-radius: 6px;
  font-size: 14px;
  color: #5a5f69;
}
.delivery-field__hint {
  font-size: 11px;
  color: #9a9fa8;
}
.delivery-field__hint--warning {
  color: #f39c12;
  font-weight: 500;
}
.delivery-field__file {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}
.delivery-field__file-input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.delivery-field__file-btn {
  flex-shrink: 0;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  color: #4a90d9;
  background: #e3f2fd;
  border: 1px solid #4a90d9;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}
.delivery-field__file-btn:hover {
  background: #4a90d9;
  color: #ffffff;
}
.delivery-field__file-name {
  font-size: 13px;
  color: #9a9fa8;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.shipper-search {
  position: relative;
}
.shipper-search__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  max-height: 240px;
  overflow-y: auto;
  background: #ffffff;
  border: 1px solid #ccd0d5;
  border-top: none;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 20;
}
.shipper-search__option {
  padding: 10px 14px;
  cursor: pointer;
  transition: background 0.1s;
}
.shipper-search__option:hover {
  background: #e3f2fd;
}
.shipper-search__option:not(:last-child) {
  border-bottom: 1px solid #e2e5e9;
}
.shipper-search__option-name {
  font-size: 14px;
  font-weight: 500;
  color: #3a3f47;
}
.shipper-search__option-addr {
  font-size: 12px;
  color: #9a9fa8;
  margin-top: 2px;
}

.delivery-field .textinput-ui .label,
.delivery-field .textarea-ui .label {
  font-size: 13px;
  font-weight: 500;
  color: #5a5f69;
  margin-bottom: 4px;
}
.delivery-field .textinput-ui input,
.delivery-field .textinput-ui textarea,
.delivery-field .textarea-ui input,
.delivery-field .textarea-ui textarea {
  width: 100%;
  padding: 9px 12px;
  font-size: 14px;
  border: 1px solid #ccd0d5;
  border-radius: 6px;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.delivery-field .textinput-ui input:focus,
.delivery-field .textinput-ui textarea:focus,
.delivery-field .textarea-ui input:focus,
.delivery-field .textarea-ui textarea:focus {
  border-color: #4a90d9;
  box-shadow: 0 0 0 2px rgba(74, 144, 217, 0.12);
}
.delivery-field .textinput-ui.has-error input, .delivery-field .textinput-ui.has-error textarea,
.delivery-field .textarea-ui.has-error input,
.delivery-field .textarea-ui.has-error textarea {
  border-color: #e74c3c;
}
.delivery-field .dropdown-select .wrapper {
  padding: 9px 12px;
  border: 1px solid #ccd0d5;
  border-radius: 6px;
  transition: border-color 0.15s;
}
.delivery-field .dropdown-select .wrapper .label {
  font-size: 13px;
  font-weight: 500;
  color: #5a5f69;
}
.delivery-field .dropdown-select .wrapper .value {
  font-size: 14px;
  color: #3a3f47;
}
.delivery-field .dropdown-select.opened .wrapper {
  border-color: #4a90d9;
  box-shadow: 0 0 0 2px rgba(74, 144, 217, 0.12);
}
.delivery-field .dropdown-select.has-error .wrapper {
  border-color: #e74c3c;
}
.delivery-field .datepicker .wrapper {
  padding: 9px 12px;
  border: 1px solid #ccd0d5;
  border-radius: 6px;
}
.delivery-field .datepicker .wrapper .label {
  font-size: 13px;
  font-weight: 500;
  color: #5a5f69;
}
.delivery-field .datepicker.has-error .wrapper {
  border-color: #e74c3c;
}
.delivery-field .file-input-ui .label {
  font-size: 13px;
  font-weight: 500;
  color: #5a5f69;
  margin-bottom: 4px;
}
.delivery-field .file-input-ui.has-error .label {
  color: #e74c3c;
}
.delivery-field .textinput-ui input[type=text] {
  font-variant-numeric: tabular-nums;
}
.delivery-field__readonly-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.delivery-field__readonly-label {
  font-size: 13px;
  font-weight: 500;
  color: #5a5f69;
}
.delivery-field__readonly {
  padding: 9px 12px;
  background: #f7f8fa;
  border: 1px solid #e2e5e9;
  border-radius: 6px;
  font-size: 14px;
  color: #5a5f69;
}
.delivery-field__hint {
  font-size: 11px;
  color: #9a9fa8;
  margin-top: 2px;
  display: block;
}
.delivery-field__hint--warning {
  color: #f39c12;
  font-weight: 500;
}

.delivery-field {
  gap: 8px;
}

.delivery-field .textinput-ui,
.delivery-field .textarea-ui,
.delivery-field .file-input-ui,
.delivery-field .dropdown-select.dropdown,
.delivery-field .datepicker.dropdown-select {
  position: relative;
  border: 1px solid #d8e0ec !important;
  border-radius: 14px !important;
  background: #fff !important;
  box-shadow: none !important;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease !important;
}

.delivery-field .textinput-ui.focused,
.delivery-field .textinput-ui:focus-within,
.delivery-field .textarea-ui.focused,
.delivery-field .textarea-ui:focus-within,
.delivery-field .dropdown-select.dropdown.opened,
.delivery-field .dropdown-select.dropdown.focused,
.delivery-field .dropdown-select.dropdown:focus-within {
  border-color: #0eab70 !important;
  box-shadow: 0 0 0 3px rgba(14, 171, 112, 0.16) !important;
  background: #fff !important;
}

.delivery-field .datepicker.dropdown-select.opened,
.delivery-field .datepicker.dropdown-select.focused,
.delivery-field .datepicker.dropdown-select:focus-within {
  border-color: #0eab70 !important;
  box-shadow: 0 0 0 3px rgba(14, 171, 112, 0.16) !important;
  background: #fff !important;
}

.delivery-field .textinput-ui .label,
.delivery-field .textarea-ui .label,
.delivery-field .file-input-ui .label,
.delivery-field .dropdown-select .label,
.delivery-field .datepicker .label,
.delivery-field__readonly-label {
  opacity: 0 !important;
  color: #7b8699 !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  line-height: 1.2 !important;
  left: 14px !important;
  padding: 0 6px !important;
  background: #fff !important;
  transition: opacity 0.16s ease !important;
}

.delivery-field .file-input-ui .label {
  opacity: 1 !important;
  top: 0 !important;
  transform: translateY(-50%) !important;
}

.delivery-field__readonly-label {
  opacity: 1 !important;
  top: 0 !important;
  transform: translateY(-50%) !important;
  position: absolute !important;
}

.delivery-field .textinput-ui.focused .label,
.delivery-field .textinput-ui.has-value .label,
.delivery-field .textinput-ui.always-show-label .label,
.delivery-field .textarea-ui.focused .label,
.delivery-field .textarea-ui.has-value .label,
.delivery-field .file-input-ui.has-value .label,
.delivery-field .dropdown-select.opened .label,
.delivery-field .dropdown-select.has-value .label,
.delivery-field .datepicker.opened .label,
.delivery-field .datepicker.has-value .label,
.delivery-field__readonly-wrap.has-value .delivery-field__readonly-label {
  opacity: 1 !important;
}

.delivery-field .textinput-ui input,
.delivery-field .textarea-ui textarea,
.delivery-field .datepicker .wrapper,
.delivery-field .dropdown-select .wrapper {
  border: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
}

.delivery-field .textinput-ui input,
.delivery-field .textarea-ui textarea,
.delivery-field .file-input-ui,
.delivery-field__readonly-wrap {
  min-height: 58px;
}

.delivery-field .textinput-ui input {
  width: 100%;
  padding: 18px 18px 14px;
  font-size: 16px;
  line-height: 1.35;
  color: #2f3645;
  text-align: left !important;
}

.delivery-field .textarea-ui {
  min-height: 140px;
}

.delivery-field .textarea-ui textarea {
  min-height: 140px;
  padding: 18px 18px 14px;
  font-size: 16px;
  line-height: 1.45;
  color: #2f3645;
  text-align: left !important;
}

.delivery-field .textarea-ui .placeholder {
  top: 18px;
  transform: none;
  padding: 0 18px;
  font-size: 16px;
  line-height: 1.45;
  color: #9aa3b2;
}

.delivery-field .dropdown-select .wrapper,
.delivery-field .datepicker .wrapper {
  min-height: 58px;
  padding: 18px 44px 14px 18px !important;
}

.delivery-field .dropdown-select .value,
.delivery-field .dropdown-select .placeholder,
.delivery-field .datepicker .value,
.delivery-field .datepicker .placeholder {
  font-size: 16px !important;
  line-height: 1.35 !important;
  text-align: left !important;
}

.delivery-field .dropdown-select .placeholder,
.delivery-field .datepicker .placeholder,
.delivery-field .file-input-ui .empty-state {
  color: #9aa3b2 !important;
}

.delivery-field .dropdown-select .icon,
.delivery-field .datepicker .icon {
  right: 16px !important;
}

.delivery-field .file-input-ui {
  justify-content: flex-start;
  padding: 0 18px;
  border-style: dashed !important;
}

.delivery-field .file-input-ui .add-icon {
  display: none;
}

.delivery-field .file-input-ui .empty-state {
  margin-left: 0;
  font-size: 16px;
  line-height: 1.35;
}

.delivery-field .file-input-ui .file {
  align-items: center;
}

.delivery-field__readonly-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 4px;
  padding: 18px 18px 14px;
  border: 1px solid #d8e0ec;
  border-radius: 14px;
  background: #fff;
}

.delivery-field__readonly {
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 16px;
  line-height: 1.35;
  color: #2f3645;
  text-align: left !important;
}

.delivery-field__readonly-wrap:not(.has-value) .delivery-field__readonly {
  min-height: 26px;
  color: #9aa3b2;
}

.delivery-field__hint {
  margin-top: 2px;
  font-size: 12px;
  line-height: 1.35;
  color: #ef4444;
}

.delivery-field__label--frame {
  position: absolute;
  top: -8px;
  left: 14px;
  z-index: 2;
  padding: 0 6px;
  background: #fff;
  color: #7b8699;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
}

.shipper-search {
  position: relative;
  gap: 0;
}

.shipper-search__input {
  width: 100%;
  min-height: 58px;
  padding: 18px 18px 14px;
  border: 1px solid #d8e0ec !important;
  border-radius: 14px;
  background: #fff;
  color: #2f3645;
  font-size: 16px;
  line-height: 1.35;
  text-align: left !important;
  box-shadow: none !important;
}

.shipper-search__input:focus {
  border-color: #0eab70 !important;
  box-shadow: 0 0 0 3px rgba(14, 171, 112, 0.16) !important;
}

.shipper-search__dropdown {
  top: calc(100% + 6px);
  border: 1px solid #d8e0ec;
  border-top: 1px solid #d8e0ec;
  border-radius: 14px;
  box-shadow: 0 16px 32px rgba(24, 37, 62, 0.08);
}

.shipper-search__option {
  padding: 12px 14px;
}

.shipper-search__option-name {
  font-size: 15px;
  line-height: 1.35;
}

.shipper-search__option-addr {
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.4;
}

.delivery-field .file-input-ui {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 18px;
  border-style: dashed !important;
}

.delivery-field .file-input-ui .add-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.delivery-field .file-input-ui .add-icon svg {
  width: 18px;
  height: 18px;
}

.delivery-field .file-input-ui .empty-state {
  display: none !important;
}

.delivery-field .file-input-ui .file {
  width: 100%;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  gap: 12px;
}

.delivery-field .file-input-ui .name {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.delivery-field .file-input-ui .file-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.delivery-field .file-input-ui .file-link {
  color: #3d68c8;
  font-size: 13px;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
}

.delivery-field .file-input-ui .file-link:hover {
  text-decoration: underline;
}

.delivery-card .delivery-field,
.delivery-card .delivery-field .textinput-ui,
.delivery-card .delivery-field .textarea-ui,
.delivery-card .delivery-field .dropdown-select,
.delivery-card .delivery-field .datepicker,
.delivery-card .delivery-field .file-input-ui,
.delivery-card .delivery-field .wrapper,
.delivery-card .delivery-field .value,
.delivery-card .delivery-field .placeholder,
.delivery-card .delivery-field input,
.delivery-card .delivery-field textarea,
.delivery-card .delivery-field__readonly,
.delivery-card .delivery-field__readonly-wrap {
  text-align: left !important;
}

.delivery-card .delivery-field .wrapper,
.delivery-card .delivery-field .value,
.delivery-card .delivery-field .placeholder,
.delivery-card .delivery-field__readonly,
.delivery-card .delivery-field__readonly-wrap:not(.has-value) .delivery-field__readonly {
  justify-content: flex-start !important;
  align-items: flex-start !important;
}

@media (max-width: 767px) {
  .delivery-field .textinput-ui .label,
  .delivery-field .textarea-ui .label,
  .delivery-field .file-input-ui .label,
  .delivery-field .dropdown-select .label,
  .delivery-field .datepicker .label,
  .delivery-field__readonly-label,
  .delivery-field__label--frame {
    left: 12px !important;
    font-size: 11px !important;
  }
  .delivery-field .textinput-ui input,
  .delivery-field .textarea-ui textarea,
  .delivery-field .file-input-ui,
  .delivery-field__readonly-wrap,
  .delivery-field .dropdown-select .wrapper,
  .delivery-field .datepicker .wrapper,
  .shipper-search__input {
    min-height: 52px;
  }
  .delivery-field .textinput-ui input,
  .delivery-field .textarea-ui textarea,
  .delivery-field__readonly-wrap,
  .delivery-field .dropdown-select .wrapper,
  .delivery-field .datepicker .wrapper,
  .shipper-search__input {
    padding-left: 14px !important;
    padding-right: 14px !important;
    font-size: 14px !important;
    line-height: 1.35 !important;
  }
  .delivery-field .dropdown-select .wrapper,
  .delivery-field .datepicker .wrapper {
    padding-right: 38px !important;
  }
  .delivery-field .textarea-ui,
  .delivery-field .textarea-ui textarea {
    min-height: 112px;
  }
  .delivery-field .textarea-ui .placeholder {
    top: 14px;
    padding: 0 14px;
    font-size: 14px;
  }
  .delivery-field .dropdown-select .value,
  .delivery-field .dropdown-select .placeholder,
  .delivery-field .datepicker .value,
  .delivery-field .datepicker .placeholder,
  .delivery-field__readonly,
  .delivery-field .file-input-ui .file {
    font-size: 14px !important;
  }
  .delivery-field .dropdown-select .icon,
  .delivery-field .datepicker .icon {
    right: 14px !important;
  }
  .delivery-field .file-input-ui {
    padding: 14px;
  }
  .delivery-field__hint {
    font-size: 11px;
  }
  .shipper-search__option {
    padding: 10px 12px;
  }
  .shipper-search__option-name {
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .delivery-field .textinput-ui input,
  .delivery-field .textarea-ui textarea,
  .delivery-field__readonly-wrap,
  .delivery-field .dropdown-select .wrapper,
  .delivery-field .datepicker .wrapper,
  .shipper-search__input {
    min-height: 48px;
    font-size: 13px !important;
  }
  .delivery-field .textarea-ui,
  .delivery-field .textarea-ui textarea {
    min-height: 96px;
  }
  .delivery-field .dropdown-select .value,
  .delivery-field .dropdown-select .placeholder,
  .delivery-field .datepicker .value,
  .delivery-field .datepicker .placeholder,
  .delivery-field__readonly {
    font-size: 13px !important;
  }
}
.delivery-tbl__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.delivery-tbl__title {
  font-size: 17px;
  font-weight: 600;
  color: #3a3f47;
  margin: 0;
}
.delivery-tbl__badge {
  display: inline-block;
  padding: 2px 12px;
  background: #e3f2fd;
  color: #4a90d9;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}
.delivery-tbl__wrapper {
  overflow-x: auto;
  border: 1px solid #e2e5e9;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  background: #ffffff;
}
.delivery-tbl__wrapper::-webkit-scrollbar {
  height: 8px;
}
.delivery-tbl__wrapper::-webkit-scrollbar-track {
  background: #f0f1f3;
  border-radius: 4px;
}
.delivery-tbl__wrapper::-webkit-scrollbar-thumb {
  background: #c4c8ce;
  border-radius: 4px;
}
.delivery-tbl__wrapper::-webkit-scrollbar-thumb:hover {
  background: #a8adb5;
}
.delivery-tbl__table {
  border-collapse: separate;
  border-spacing: 0;
  min-width: 100%;
}
.delivery-tbl__th {
  padding: 10px 12px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: #5a5f69;
  background: #f7f8fa;
  border-bottom: 2px solid #e2e5e9;
  white-space: pre-line;
  text-align: left;
  vertical-align: bottom;
  line-height: 1.3;
}
.delivery-tbl__td {
  padding: 6px 8px;
  border-bottom: 1px solid #f0f1f3;
  vertical-align: middle;
  background: #ffffff;
}
.delivery-tbl__row {
  height: 52px;
}
.delivery-tbl__row:hover .delivery-tbl__td {
  background: #fafbfc;
}
.delivery-tbl__row:last-child .delivery-tbl__td {
  border-bottom: none;
}
.delivery-tbl__empty {
  padding: 48px 20px;
  text-align: center;
  color: #9a9fa8;
  font-size: 14px;
}
.delivery-tbl__sticky {
  background: #ffffff;
}
thead .delivery-tbl__sticky {
  background: #f7f8fa;
}
.delivery-tbl__row:hover .delivery-tbl__sticky {
  background: #fafbfc;
}
.delivery-tbl__sticky--last {
  border-right: 2px solid #ccd0d5 !important;
  box-shadow: 3px 0 6px rgba(0, 0, 0, 0.08);
}
.delivery-tbl__totals .delivery-tbl__td {
  background: #eef7ee !important;
  border-top: 2px solid #66bb6a;
  border-bottom: none;
}
.delivery-tbl__totals-cell {
  padding: 10px 12px;
  font-size: 13px;
  color: #2e7d32;
}
.delivery-tbl__totals .delivery-tbl__sticky {
  background: #eef7ee !important;
}

.delivery-cell {
  font-size: 13px;
  color: #3a3f47;
}
.delivery-cell--rownum {
  display: block;
  text-align: center;
  font-weight: 600;
  color: #9a9fa8;
  padding: 4px 0;
}
.delivery-cell--disabled {
  display: block;
  padding: 6px 8px;
  text-align: center;
  color: #c4c8ce;
  background: #f9fafb;
  border-radius: 4px;
  font-style: italic;
  cursor: not-allowed;
}
.delivery-cell--calculated {
  display: block;
  padding: 6px 8px;
  text-align: right;
  color: #5a5f69;
  background: #f7f8fa;
  border-radius: 4px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}
.delivery-cell--input {
  display: block;
  width: 100%;
  padding: 6px 8px;
  border: 1px solid #e2e5e9;
  border-radius: 4px;
  outline: none;
  background: #ffffff;
  transition: border-color 0.15s;
  min-width: 80px;
}
.delivery-cell--input:focus {
  border-color: #4a90d9;
  box-shadow: 0 0 0 2px rgba(74, 144, 217, 0.1);
}
.delivery-cell--number {
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.delivery-cell--number::-webkit-outer-spin-button, .delivery-cell--number::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.delivery-cell--number {
  -moz-appearance: textfield;
}
.delivery-cell--select {
  display: block;
  width: 100%;
  padding: 6px 24px 6px 8px;
  border: 1px solid #e2e5e9;
  border-radius: 4px;
  outline: none;
  background: #ffffff;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='8' height='5' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0l4 5 4-5z' fill='%239a9fa8'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  cursor: pointer;
  min-width: 80px;
  transition: border-color 0.15s;
}
.delivery-cell--select:focus {
  border-color: #4a90d9;
}
.delivery-cell--yesno {
  min-width: 65px;
  width: auto;
}
.delivery-cell--textarea {
  display: block;
  width: 100%;
  padding: 6px 8px;
  border: 1px solid #e2e5e9;
  border-radius: 4px;
  outline: none;
  resize: vertical;
  min-height: 44px;
  font-size: 13px;
  font-family: inherit;
  background: #ffffff;
  transition: border-color 0.15s;
}
.delivery-cell--textarea:focus {
  border-color: #4a90d9;
  box-shadow: 0 0 0 2px rgba(74, 144, 217, 0.1);
}
.delivery-cell--error {
  border-color: #e74c3c !important;
  background: #fef5f5 !important;
}
.delivery-cell--error::-moz-placeholder {
  color: #e74c3c;
}
.delivery-cell--error::placeholder {
  color: #e74c3c;
}
.delivery-cell--dimensions {
  display: flex;
  align-items: center;
  gap: 3px;
  white-space: nowrap;
}
.delivery-cell--dim-input {
  width: 60px;
  min-width: 60px;
  padding: 6px 6px;
  border: 1px solid #e2e5e9;
  border-radius: 4px;
  outline: none;
  font-size: 13px;
  text-align: center;
  transition: border-color 0.15s;
}
.delivery-cell--dim-input::-webkit-outer-spin-button, .delivery-cell--dim-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.delivery-cell--dim-input {
  -moz-appearance: textfield;
}
.delivery-cell--dim-input:focus {
  border-color: #4a90d9;
  box-shadow: 0 0 0 2px rgba(74, 144, 217, 0.1);
}
.delivery-cell--dim-sep {
  color: #9a9fa8;
  font-size: 12px;
  flex-shrink: 0;
}
.delivery-cell--file {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 220px;
}
.delivery-cell__file-trigger {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
}
.delivery-cell__file-input {
  display: none;
}
.delivery-cell__file-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid #e2e5e9;
  border-radius: 4px;
  background: #ffffff;
  color: #4a90d9;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}
.delivery-cell__file-trigger:hover .delivery-cell__file-button {
  border-color: #4a90d9;
}
.delivery-cell__file-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}
.delivery-cell__file-chip {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  padding: 4px 8px;
  border-radius: 999px;
  background: #f2f6fc;
  color: #5a5f69;
  font-size: 12px;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.delivery-cell__file-placeholder {
  color: #9a9fa8;
  font-size: 12px;
  line-height: 1.4;
}
.delivery-cell__file-clear {
  padding: 0;
  border: none;
  background: transparent;
  color: #4a90d9;
  font-size: 12px;
  cursor: pointer;
}

.delivery-cell--dropdown .dropdown-select {
  width: 100%;
  min-width: 0;
  max-width: 100%;
}
.delivery-cell--dropdown .dropdown-select .wrapper {
  width: 100%;
  box-sizing: border-box;
  padding: 5px 28px 5px 8px;
  min-height: 32px;
  border: 1px solid #e2e5e9;
  border-radius: 4px;
  background: #ffffff;
}
.delivery-cell--dropdown .dropdown-select .wrapper .label {
  display: none;
}
.delivery-cell--dropdown .dropdown-select .wrapper .value,
.delivery-cell--dropdown .dropdown-select .wrapper .placeholder {
  display: block;
  padding-right: 8px;
  font-size: 13px;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.delivery-cell--dropdown .dropdown-select .wrapper .placeholder {
  color: #9a9fa8;
}
.delivery-cell--dropdown .dropdown-select .wrapper .icon {
  right: 6px;
}
.delivery-cell--dropdown .dropdown-select .wrapper .icon svg {
  width: 10px;
  height: 6px;
}
.delivery-cell--dropdown .dropdown-select .options,
.delivery-cell--dropdown .dropdown-select .dropdown-items ul {
  width: -moz-max-content;
  width: max-content;
  min-width: 100%;
  max-width: min(360px, 100vw - 48px);
  max-height: 240px;
  align-items: stretch;
  box-sizing: border-box;
  overflow-y: auto;
  font-size: 13px;
  z-index: 10;
}
.delivery-cell--dropdown .dropdown-select .options .option,
.delivery-cell--dropdown .dropdown-select .options li,
.delivery-cell--dropdown .dropdown-select .dropdown-items ul .option,
.delivery-cell--dropdown .dropdown-select .dropdown-items ul li {
  display: block;
  width: 100%;
  box-sizing: border-box;
  min-height: 40px;
  padding: 8px 10px;
  line-height: 1.35;
  white-space: normal;
  word-break: normal;
  overflow-wrap: anywhere;
}
.delivery-cell--dropdown .dropdown-select.opened .wrapper {
  border-color: #4a90d9;
}

.delivery-cell--dropdown-danger .dropdown-select {
  min-width: 248px;
}
.delivery-cell--dropdown-danger .dropdown-select .wrapper .value,
.delivery-cell--dropdown-danger .dropdown-select .wrapper .placeholder {
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
  line-height: 1.25;
}
.delivery-cell--dropdown-danger .dropdown-select .options,
.delivery-cell--dropdown-danger .dropdown-select .dropdown-items ul {
  max-width: min(420px, 100vw - 48px);
}

.delivery-cell--dropdown-sm .dropdown-select {
  width: auto;
  min-width: 104px;
  max-width: 124px;
}
.delivery-cell--dropdown-sm .dropdown-select .wrapper {
  padding: 5px 28px 5px 10px;
}
.delivery-cell--dropdown-sm .dropdown-select .value,
.delivery-cell--dropdown-sm .dropdown-select .placeholder {
  padding-right: 10px;
}

.cargo-table {
  overflow-x: auto;
  border: 1px solid #e2e5e9;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.cargo-table table {
  width: -moz-max-content;
  width: max-content;
  min-width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}
.cargo-table th,
.cargo-table td {
  border-right: 1px solid #e2e5e9;
  border-bottom: 1px solid #e2e5e9;
  padding: 10px 12px;
  vertical-align: middle;
  background: #ffffff;
}
.cargo-table th {
  background: #f2f6fc;
  color: #5a5f69;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  white-space: pre-line;
}
.cargo-table tr:last-child td {
  border-bottom: none;
}
.cargo-table th:last-child,
.cargo-table td:last-child {
  border-right: none;
}
.cargo-table thead th:first-child {
  border-top-left-radius: 24px;
}
.cargo-table thead th:last-child {
  border-top-right-radius: 24px;
}
.cargo-table__head-cell, .cargo-table__body-cell {
  position: relative;
}
.cargo-table__head-cell--sticky {
  position: sticky;
  z-index: 4;
  background: #f2f6fc;
}
.cargo-table__body-cell--sticky {
  position: sticky;
  z-index: 2;
  background: #ffffff;
}
.cargo-table__head-cell--sticky-last, .cargo-table__body-cell--sticky-last {
  box-shadow: inset -1px 0 0 #d8e0ec;
}
.cargo-table--empty td {
  height: 54px;
  color: #9a9fa8;
  text-align: center;
}

.cargo-table {
  overflow-y: hidden;
  border: 1px solid #d8e0ec;
  border-radius: 24px;
  box-shadow: none;
}

.cargo-table th,
.cargo-table td {
  border-right-color: #d8e0ec;
  border-bottom-color: #d8e0ec;
}

.cargo-table th {
  background: #eef3fb;
  color: #3a4458;
}

.cargo-table thead th:first-child {
  border-top-left-radius: 24px;
}

.cargo-table thead th:last-child {
  border-top-right-radius: 24px;
}

.cargo-table__head-cell--sticky,
.cargo-table__body-cell--sticky {
  box-shadow: none;
}

.cargo-table__head-cell--sticky-last,
.cargo-table__body-cell--sticky-last {
  box-shadow: none;
}

.delivery-cell--disabled {
  padding: 0;
  background: transparent;
  border-radius: 0;
  font-style: normal;
  cursor: default;
}

.delivery-cell--calculated {
  padding: 0;
  text-align: center;
  color: #4a90d9;
  background: transparent;
  border-radius: 0;
  font-weight: 600;
}

.cargo-table {
  overflow-y: visible;
}

.cargo-table .delivery-cell--input,
.cargo-table .delivery-cell--textarea,
.cargo-table .delivery-cell--dim-input {
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  padding-left: 0;
  padding-right: 0;
}

.cargo-table .delivery-cell--input:focus,
.cargo-table .delivery-cell--textarea:focus,
.cargo-table .delivery-cell--dim-input:focus {
  border-color: #c7d4ea;
  background: #fff;
  box-shadow: 0 0 0 2px rgba(61, 104, 200, 0.08);
}

.cargo-table .delivery-cell--dropdown .dropdown-select {
  width: 100%;
  max-width: none;
}

.cargo-table .delivery-cell--dropdown .dropdown-select .wrapper {
  min-height: 30px;
  padding: 4px 22px 4px 0;
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.cargo-table .delivery-cell--dropdown .dropdown-select .wrapper .value,
.cargo-table .delivery-cell--dropdown .dropdown-select .wrapper .placeholder {
  padding-right: 0;
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
}

.cargo-table .delivery-cell--dropdown .dropdown-select .wrapper .icon {
  right: 0;
}

.cargo-table .delivery-cell--dropdown-sm .dropdown-select {
  width: 100%;
  min-width: 0;
  max-width: none;
}

.cargo-table .delivery-cell--dropdown-sm .dropdown-select .wrapper {
  padding-right: 18px;
}

.cargo-table .delivery-cell--calculated,
.cargo-table .delivery-cell--disabled {
  box-shadow: none !important;
}

.cargo-table .delivery-cell--dropdown-sm .dropdown-select .wrapper .value,
.cargo-table .delivery-cell--dropdown-sm .dropdown-select .wrapper .placeholder {
  white-space: nowrap;
}

.cargo-table {
  border: 1px solid #d8e0ec;
  border-radius: 24px;
  box-shadow: none;
}

.cargo-table th,
.cargo-table td {
  padding: 14px 12px;
  border-right-color: #d8e0ec;
  border-bottom-color: #d8e0ec;
}

.cargo-table th {
  background: #eef3fb;
  color: #3d465b;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
}

.cargo-table td {
  font-size: 15px;
  color: #4a5160;
  text-align: center;
}

.cargo-table .delivery-cell {
  font-size: 15px;
  color: #4a5160;
}

.cargo-table .delivery-cell--input,
.cargo-table .delivery-cell--textarea,
.cargo-table .delivery-cell--dim-input {
  font-size: 15px;
  color: #3d465b;
}

.cargo-table .delivery-cell--textarea {
  min-height: 40px;
  resize: none;
}

.cargo-table .delivery-cell--dimensions {
  justify-content: center;
}

.cargo-table .delivery-cell--calculated,
.cargo-table .delivery-cell--disabled {
  color: #3460B4;
}

.cargo-table__body-cell--sticky {
  background: #f4f7ff !important;
}

.cargo-table__body-cell--sticky .delivery-cell,
.cargo-table__body-cell--sticky .delivery-cell--input,
.cargo-table__body-cell--sticky .delivery-cell--textarea,
.cargo-table__body-cell--sticky .delivery-cell--dim-input {
  color: #3460B4 !important;
  font-weight: 600;
}

.cargo-table .delivery-cell--dropdown .dropdown-select {
  width: auto !important;
  min-width: 0 !important;
  max-width: 100% !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.cargo-table .delivery-cell--dropdown .dropdown-select .wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: auto !important;
  min-height: auto !important;
  padding: 0 18px 0 0 !important;
  margin: 0 auto;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.cargo-table .delivery-cell--dropdown .dropdown-select .wrapper .value,
.cargo-table .delivery-cell--dropdown .dropdown-select .wrapper .placeholder {
  display: inline-block;
  padding: 0 !important;
  color: inherit;
  font-size: 15px !important;
  line-height: 1.35 !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cargo-table .delivery-cell--dropdown .dropdown-select .wrapper .icon {
  right: 0 !important;
}

.cargo-table .delivery-cell--dropdown .dropdown-select .options {
  min-width: 180px;
  border: 1px solid #d8e0ec;
  border-radius: 14px;
  box-shadow: 0 16px 32px rgba(24, 37, 62, 0.08);
}

.cargo-table .delivery-cell--dropdown-sm .dropdown-select .wrapper .value,
.cargo-table .delivery-cell--dropdown-sm .dropdown-select .wrapper .placeholder {
  overflow: visible;
  text-overflow: clip;
}

.cargo-table .delivery-cell--input,
.cargo-table .delivery-cell--number,
.cargo-table .delivery-cell--textarea,
.cargo-table .delivery-cell--dim-input {
  text-align: center;
}

.cargo-table .delivery-cell--textarea {
  text-align: center;
}

.delivery-cell--file-readonly {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.delivery-cell__file-link {
  color: #3460B4;
  font-size: 12px;
  line-height: 1.35;
  text-decoration: none;
}

.delivery-cell__file-link:hover {
  text-decoration: underline;
}

@media (max-width: 991px) {
  .cargo-table {
    border-radius: 20px;
  }
  .cargo-table th,
  .cargo-table td {
    padding: 12px 10px;
  }
  .cargo-table th {
    font-size: 12px;
  }
  .cargo-table td,
  .cargo-table .delivery-cell,
  .cargo-table .delivery-cell--input,
  .cargo-table .delivery-cell--textarea,
  .cargo-table .delivery-cell--dim-input,
  .cargo-table .delivery-cell--dropdown .dropdown-select .wrapper .value,
  .cargo-table .delivery-cell--dropdown .dropdown-select .wrapper .placeholder {
    font-size: 14px !important;
  }
  .delivery-cell--file {
    min-width: 180px;
  }
}
@media (max-width: 767px) {
  .cargo-table {
    border-radius: 18px;
  }
  .cargo-table table {
    min-width: 880px;
  }
  .cargo-table th,
  .cargo-table td {
    padding: 10px 8px;
  }
  .cargo-table th {
    font-size: 11px;
    line-height: 1.3;
  }
  .cargo-table td,
  .cargo-table .delivery-cell,
  .cargo-table .delivery-cell--input,
  .cargo-table .delivery-cell--textarea,
  .cargo-table .delivery-cell--dim-input,
  .cargo-table .delivery-cell--dropdown .dropdown-select .wrapper .value,
  .cargo-table .delivery-cell--dropdown .dropdown-select .wrapper .placeholder {
    font-size: 13px !important;
    line-height: 1.3 !important;
  }
  .cargo-table .delivery-cell--textarea {
    min-height: 36px;
  }
  .cargo-table .delivery-cell--dropdown .dropdown-select .options {
    max-width: min(300px, 100vw - 24px);
  }
  .cargo-table .delivery-cell--dropdown .dropdown-select .wrapper {
    padding-right: 16px !important;
  }
  .delivery-cell--dim-input {
    width: 52px;
    min-width: 52px;
    padding: 4px 4px;
  }
  .delivery-cell--file {
    min-width: 160px;
    gap: 6px;
  }
  .delivery-cell__file-button {
    min-height: 32px;
    padding: 0 10px;
    font-size: 12px;
  }
  .delivery-cell__file-chip,
  .delivery-cell__file-placeholder,
  .delivery-cell__file-link {
    font-size: 11px;
  }
  .cargo-table__head-cell--sticky {
    position: sticky;
    z-index: 5;
    background: #eef3fb;
  }
  .cargo-table__body-cell--sticky {
    position: sticky;
    z-index: 3;
    background: #f4f7ff !important;
  }
  .cargo-table__head-cell--sticky-last,
  .cargo-table__body-cell--sticky-last {
    box-shadow: inset -1px 0 0 #d8e0ec;
  }
  .cargo-table__body-cell--sticky .delivery-cell,
  .cargo-table__body-cell--sticky .delivery-cell--input,
  .cargo-table__body-cell--sticky .delivery-cell--textarea,
  .cargo-table__body-cell--sticky .delivery-cell--dim-input {
    color: #3460B4 !important;
    font-weight: 600;
  }
}
@media (max-width: 575px) {
  .cargo-table table {
    min-width: 760px;
  }
  .cargo-table th,
  .cargo-table td {
    padding: 9px 7px;
  }
  .cargo-table th {
    font-size: 10px;
  }
  .cargo-table td,
  .cargo-table .delivery-cell,
  .cargo-table .delivery-cell--input,
  .cargo-table .delivery-cell--textarea,
  .cargo-table .delivery-cell--dim-input,
  .cargo-table .delivery-cell--dropdown .dropdown-select .wrapper .value,
  .cargo-table .delivery-cell--dropdown .dropdown-select .wrapper .placeholder {
    font-size: 12px !important;
  }
  .delivery-cell--file {
    min-width: 140px;
  }
  .delivery-cell__file-button {
    min-height: 30px;
    padding: 0 8px;
  }
}
@media (max-width: 700px) {
  .cargo-table table {
    min-width: 700px;
  }
  .cargo-table__head-cell--sticky,
  .cargo-table__body-cell--sticky,
  .cargo-table__head-cell--sticky-last,
  .cargo-table__body-cell--sticky-last {
    position: static;
    left: auto !important;
    box-shadow: none !important;
  }
  .cargo-table__head-cell--sticky {
    background: #eef3fb !important;
  }
  .cargo-table__body-cell--sticky {
    background: #f4f7ff !important;
  }
  .cargo-table__body-cell--sticky .delivery-cell,
  .cargo-table__body-cell--sticky .delivery-cell--input,
  .cargo-table__body-cell--sticky .delivery-cell--textarea,
  .cargo-table__body-cell--sticky .delivery-cell--dim-input {
    color: #3460B4 !important;
    font-weight: 600;
  }
}
.delivery-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, box-shadow 0.15s;
  border: none;
}
.delivery-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.delivery-btn--primary {
  background: #315fc9;
  color: #ffffff;
}
.delivery-btn--primary:hover:not(:disabled) {
  background: #2a54b6;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}
.delivery-btn--secondary {
  background: #ffffff;
  color: #5a5f69;
  border: 1px solid #ccd0d5;
}
.delivery-btn--secondary:hover:not(:disabled) {
  background: #f5f6f8;
  color: #e74c3c;
  border-color: #e74c3c;
}
.delivery-btn--outline {
  background: #e3f2fd;
  color: #4a90d9;
  border: 1px solid #4a90d9;
}
.delivery-btn--outline:hover:not(:disabled) {
  background: #4a90d9;
  color: #ffffff;
}
.delivery-btn--lg {
  padding: 12px 32px;
  font-size: 15px;
  font-weight: 600;
}

.delivery-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 0;
  margin-top: 20px;
  border-top: 1px solid #e2e5e9;
}

.floating-actions {
  position: fixed;
  right: calc(var(--sw-right-pos, 30px) + var(--sw-width, 60px) + 16px);
  bottom: var(--sw-bottom-pos, 30px);
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}
.floating-actions--visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.floating-actions__group {
  display: flex;
  align-items: center;
  gap: 12px;
}
.floating-actions__btn {
  width: 56px;
  height: 56px;
  border: none;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 24px rgba(17, 24, 39, 0.18);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}
.floating-actions__btn:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(17, 24, 39, 0.22);
}
.floating-actions__btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.floating-actions__btn--save {
  background: #16a34a;
  color: #fff;
}
.floating-actions__btn--cancel {
  background: #ef4444;
  color: #fff;
}
.floating-actions__icon {
  font-size: 20px;
  line-height: 1;
}
.floating-actions__hint {
  display: none;
}

@media (max-width: 768px) {
  .floating-actions {
    right: 16px;
    bottom: calc(var(--sw-bottom-pos, 30px) + var(--sw-btn-height, 60px) + 12px);
  }
  .floating-actions__btn {
    width: 52px;
    height: 52px;
  }
}
.directory-page {
  position: relative;
  min-height: 620px;
  max-width: 1032px;
  margin: 0 auto;
  padding: 0 0 90px;
}
.directory-page--embedded {
  max-width: none;
  min-height: 0;
  padding-bottom: 0;
}
.directory-page--embedded .company-card {
  background: transparent;
  box-shadow: none;
}
.directory-page__breadcrumbs {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
  font-size: 12px;
  color: #7d879a;
  flex-wrap: wrap;
}
.directory-page__breadcrumb-link, .directory-page__breadcrumb-current {
  color: inherit;
  text-decoration: none;
}
.directory-page__title {
  margin: 0 0 28px;
  font-size: 34px;
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #171d2d;
}
.directory-page__toolbar {
  display: grid;
  grid-template-columns: 1fr 132px;
  gap: 0;
  margin-bottom: 28px;
}
.directory-page__search-btn {
  border: 0;
  border-radius: 0 12px 12px 0;
  background: #4169cb;
  color: #ffffff;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
}
.directory-page__list {
  display: grid;
  gap: 22px;
}
.directory-page__empty {
  min-height: 180px;
  padding: 40px 20px;
  border-radius: 24px;
  color: #95a0b5;
  background: #ffffff;
  box-shadow: 0 4px 10px rgba(30, 48, 88, 0.05);
  text-align: center;
}
.directory-page__floating-actions {
  position: fixed;
  right: calc(var(--sw-right-pos, 30px) + var(--sw-width, 60px) + 16px);
  bottom: var(--sw-bottom-pos, 30px);
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 12px;
  z-index: 1000;
  pointer-events: none;
  overflow: visible;
}
.directory-page__floating-actions--request {
  position: fixed;
  right: calc(var(--sw-right-pos, 30px) + var(--sw-width, 60px) + 16px);
  bottom: var(--sw-bottom-pos, 30px);
  z-index: 1000;
}
.directory-page__action-stack {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  pointer-events: auto;
  overflow: visible;
}
.directory-page__action-fabs {
  pointer-events: auto;
}
.directory-page__fab {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 0;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(30, 48, 88, 0.08);
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}
.directory-page__fab:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(30, 48, 88, 0.12);
}
.directory-page__fab--add {
  background: #4169cb;
}
.directory-page__fab--save {
  background: #24bf6d;
  font-size: 24px;
}
.directory-page__fab--cancel {
  background: #ef4444;
  font-size: 22px;
}
.directory-page__fab-label {
  position: absolute;
  left: auto;
  right: 50%;
  top: auto;
  bottom: calc(100% + 14px);
  transform: translateX(50%) translateY(6px);
  opacity: 0;
  visibility: hidden;
  min-width: 150px;
  padding: 14px 18px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(30, 48, 88, 0.08);
  font-size: 14px;
  line-height: 1.25;
  color: #4a556d;
  white-space: nowrap;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  pointer-events: none;
  text-align: center;
  z-index: 6;
}
.directory-page__action-stack:hover .directory-page__fab-label, .directory-page__action-stack:focus-within .directory-page__fab-label {
  opacity: 1;
  visibility: visible;
  transform: translateX(50%) translateY(0);
}
.directory-page input[type=text]:not(.browser-default):focus, .directory-page input[type=text]:not(.browser-default):active,
.directory-page input[type=password]:not(.browser-default):focus,
.directory-page input[type=password]:not(.browser-default):active,
.directory-page input[type=email]:not(.browser-default):focus,
.directory-page input[type=email]:not(.browser-default):active,
.directory-page textarea:not(.browser-default):focus,
.directory-page textarea:not(.browser-default):active {
  outline: none !important;
  box-shadow: none;
}
@media (max-width: 1024px) {
  .directory-page__fab-label {
    display: none;
  }
}
@media (max-width: 767px) {
  .directory-page {
    padding-bottom: 108px;
  }
  .directory-page__title {
    margin-bottom: 20px;
    font-size: 26px;
    line-height: 1.08;
  }
  .directory-page__toolbar {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 20px;
  }
  .directory-page__search-btn {
    min-height: 46px;
    border-radius: 12px;
  }
  .directory-page__list {
    gap: 16px;
  }
  .directory-page__floating-actions {
    right: calc(var(--sw-right-pos, 30px) + var(--sw-width, 60px) + 12px);
    bottom: var(--sw-bottom-pos, 30px);
  }
  .directory-page__floating-actions--request {
    right: calc(var(--sw-right-pos, 30px) + var(--sw-width, 60px) + 12px);
    bottom: var(--sw-bottom-pos, 30px);
  }
}
@media (max-width: 575px) {
  .directory-page__title {
    font-size: 22px;
  }
  .directory-page__fab {
    width: 44px;
    height: 44px;
    font-size: 22px;
  }
  .directory-page__floating-actions {
    gap: 8px;
  }
  .directory-page__fab-label {
    min-width: 120px;
    padding: 10px 12px;
    font-size: 12px;
  }
  .directory-page__floating-actions {
    right: calc(var(--sw-right-pos, 30px) + var(--sw-width, 60px) + 10px);
    bottom: var(--sw-bottom-pos, 30px);
  }
  .directory-page__floating-actions--request {
    right: calc(var(--sw-right-pos, 30px) + var(--sw-width, 60px) + 10px);
    bottom: var(--sw-bottom-pos, 30px);
  }
}

.dir-search {
  position: relative;
}
.dir-search__input {
  width: 100%;
  height: 56px;
  padding: 0 58px 0 20px;
  border: 1px solid #95afe6;
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  border-top-left-radius: 12px !important;
  border-bottom-left-radius: 12px !important;
  background: #fff;
  color: #253046;
  font-size: 16px;
  outline: none;
  transition: border-color 0.18s ease;
}
.dir-search__input:focus {
  outline: none !important;
  border-color: #95afe6;
  box-shadow: none;
}
.dir-search__clear {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #ef4444;
  cursor: pointer;
}
.dir-search__clear span {
  display: block;
  font-size: 20px;
  line-height: 1;
}

.company-card {
  border-radius: 24px;
  border: 1px solid #e7edf7;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 10px rgba(30, 48, 88, 0.05);
  overflow: visible;
}
.company-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 36px 38px 36px;
  cursor: default;
}
.company-card__header-main {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 0;
  cursor: pointer;
}
.company-card__name-field {
  position: relative;
  width: 100%;
  max-width: calc(100% - 12px);
  padding-right: 12px;
  padding-top: 10px;
}
.company-card__name-field--active .company-card__name-label {
  opacity: 1;
  transform: translateY(0);
}
.company-card__name-field--invalid .company-card__name-label {
  color: #dc2626;
  opacity: 1;
  transform: translateY(0);
}
.company-card__name-field--invalid .company-card__name-input {
  border-color: #ef4444;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.16);
  background: #fff;
}
.company-card__name-label {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  padding: 0 6px;
  background: rgba(255, 255, 255, 0.96);
  color: #9aa4b8;
  font-size: 12px;
  line-height: 1.1;
  pointer-events: none;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.16s ease, transform 0.16s ease;
}
.company-card__name {
  margin: 0;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 700;
  color: #161d2b;
}
.company-card__name-input {
  border: 1px solid #e7edf7;
  border-radius: 14px;
  padding: 14px 16px 10px;
  min-height: 56px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24);
  font-family: inherit;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 700;
  color: #161d2b;
  outline: none;
  width: 100%;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}
.company-card__name-input::-moz-placeholder {
  color: #8a94a8;
}
.company-card__name-input::placeholder {
  color: #8a94a8;
}
.company-card__name-input:focus {
  border-color: #24bf6d;
  box-shadow: 0 0 0 3px rgba(14, 171, 112, 0.16);
  background: #fff;
}
.company-card__name-error {
  display: inline-block;
  margin-top: 6px;
  font-size: 11px;
  color: #ef4444;
}
.company-card__chevron {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  margin-left: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.18s ease, opacity 0.18s ease;
}
.company-card__chevron:hover, .company-card__chevron:focus-visible {
  transform: translateY(-1px);
  opacity: 0.86;
}
.company-card__chevron-icon {
  width: 12px;
  height: 12px;
  display: block;
  pointer-events: none;
}
.company-card__body {
  padding: 20px 38px 34px;
  overflow: visible;
}
.company-card__documents-panel {
  margin: 10px 0 0;
  overflow: visible;
}
@media (max-width: 767px) {
  .company-card {
    border-radius: 20px;
  }
  .company-card__header {
    align-items: flex-start;
    gap: 14px;
    padding: 22px 18px 20px;
  }
  .company-card__header-main {
    gap: 12px;
  }
  .company-card__name, .company-card__name-input {
    font-size: 16px;
    line-height: 1.3;
  }
  .company-card__name-input {
    min-height: 52px;
    padding: 13px 14px 9px;
  }
  .company-card__body {
    padding: 14px 18px 22px;
  }
  .company-card__documents-panel {
    margin-top: 8px;
  }
}
@media (max-width: 575px) {
  .company-card {
    border-radius: 18px;
  }
  .company-card__header {
    padding: 18px 14px 16px;
  }
  .company-card__body {
    padding: 12px 14px 18px;
  }
  .company-card__chevron {
    margin-top: 4px;
  }
}

.company-form__grid {
  display: grid;
  gap: 28px;
}
.company-form__grid--two-cols, .company-form__grid--sender, .company-form__grid--bottom {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: start;
}
.company-form__grid--receiver {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: start;
  row-gap: 24px;
}
.company-form__section {
  min-width: 0;
}
.company-form__section--warehouse, .company-form__section--full-width {
  grid-column: 2;
}
.company-form__warehouse-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-template-areas: "address map" "address schedule";
  gap: 14px;
  align-items: stretch;
}
.company-form__heading {
  margin: 0 0 16px;
  font-size: 17px;
  line-height: 1.3;
  font-weight: 700;
  color: #4169cb;
}
.company-form__heading--spaced {
  margin-top: 22px;
}
.company-form__stack {
  display: grid;
  gap: 14px;
}
.company-form__stack--contact-grid, .company-form__stack--bank-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  -moz-column-gap: 14px;
       column-gap: 14px;
  row-gap: 14px;
}
.company-form__grid--bottom {
  margin-top: 10px;
}
.company-form__field {
  position: relative;
  min-width: 0;
  padding-top: 10px;
}
.company-form__field--half {
  min-width: 0;
  grid-column: span 1;
}
.company-form__field--full {
  grid-column: 1/-1;
}
.company-form__field--warehouse-address {
  grid-area: address;
}
.company-form__field--warehouse-map {
  grid-area: map;
}
.company-form__field--warehouse-schedule {
  grid-area: schedule;
  align-self: end;
}
.company-form__field--invalid .company-form__label {
  color: #dc2626;
}
.company-form__field--invalid .company-form__control,
.company-form__field--invalid .company-form__file-drop,
.company-form__field--invalid .company-form__file-info,
.company-form__field--invalid .dropdown-select.dropdown {
  border-color: #ef4444;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.18);
  background: #fff;
}
.company-form__field--invalid .company-form__control:focus,
.company-form__field--invalid .company-form__control--error:focus,
.company-form__field--invalid .dropdown-select.dropdown:focus-within,
.company-form__field--invalid .dropdown-select.dropdown.opened,
.company-form__field--invalid .company-form__file-drop:focus-within,
.company-form__field--invalid .company-form__file-info:focus-within {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.18) !important;
  background: #fff;
}
.company-form__label {
  position: absolute;
  top: 0;
  left: 14px;
  z-index: 2;
  padding: 0 6px;
  background: rgba(255, 255, 255, 0.96);
  font-size: 12px;
  line-height: 1.1;
  color: #a7b1c5;
  pointer-events: none;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.16s ease, transform 0.16s ease, color 0.16s ease;
}
.company-form__label--visible {
  opacity: 1;
  transform: translateY(0);
}
.company-form__required {
  color: #ef4444;
}
.company-form .dropdown-select.dropdown {
  width: 100%;
  min-height: 56px;
  padding: 16px 44px 16px 18px;
  border: 1px solid #e7edf7 !important;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}
.company-form .dropdown-select.dropdown .wrapper {
  min-height: 22px;
  cursor: pointer;
}
.company-form .dropdown-select.dropdown .value,
.company-form .dropdown-select.dropdown .placeholder {
  font-size: 15px;
  line-height: 1.45;
  font-weight: 400;
  color: #23304a;
}
.company-form .dropdown-select.dropdown .placeholder {
  color: #7f899e;
}
.company-form .dropdown-select.dropdown .icon {
  right: 18px;
}
.company-form .dropdown-select.dropdown .options {
  min-width: 100%;
  max-width: min(420px, 100vw - 48px);
}
.company-form .dropdown-select.dropdown.opened, .company-form .dropdown-select.dropdown:focus-within {
  border-color: #24bf6d !important;
  box-shadow: 0 0 0 3px rgba(14, 171, 112, 0.16);
  background: #fff;
}
.company-form .dropdown-select.dropdown.has-error {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.16);
  background: #fff;
}
.company-form__field--accountCurrency .dropdown-select.dropdown.opened, .company-form__field--accountCurrency .dropdown-select.dropdown:focus-within {
  border-color: #24bf6d;
  box-shadow: 0 0 0 3px rgba(14, 171, 112, 0.16);
}
.company-form__control {
  width: 100%;
  min-height: 56px;
  padding: 16px 18px;
  border: 1px solid #e7edf7;
  border-radius: 14px;
  outline: none;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24);
  font-family: inherit;
  font-size: 15px;
  line-height: 1.45;
  color: #23304a;
  resize: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}
.company-form__control::-moz-placeholder {
  color: #7f899e;
  opacity: 1;
}
.company-form__control::placeholder {
  color: #7f899e;
  opacity: 1;
}
.company-form__control:focus {
  outline: none !important;
  border-color: #24bf6d;
  box-shadow: 0 0 0 3px rgba(14, 171, 112, 0.16);
  background: #fff;
}
.company-form__control:disabled {
  color: #2f3b52;
  -webkit-text-fill-color: #2f3b52;
  cursor: default;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: none;
}
.company-form__control--textarea {
  padding-top: 18px;
}
.company-form__control--select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #8e97aa 50%), linear-gradient(135deg, #8e97aa 50%, transparent 50%);
  background-position: calc(100% - 22px) calc(50% - 1px), calc(100% - 17px) calc(50% - 1px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 38px;
}
.company-form__control--error {
  border-color: #ef4444;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.16);
  background: #fff;
}
.company-form__field--phone:not(.company-form__field--invalid) .company-form__control:focus, .company-form__field--contactPhone:not(.company-form__field--invalid) .company-form__control:focus {
  border-color: #24bf6d;
  box-shadow: 0 0 0 3px rgba(14, 171, 112, 0.16);
}
.company-form__file-wrapper {
  min-height: 56px;
}
.company-form__file-drop {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border: 1px dashed #e7edf7;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  color: #7b86a0;
  cursor: pointer;
}
.company-form__file-drop.is-disabled {
  cursor: default;
  opacity: 0.9;
}
.company-form__file-drop--error {
  border-color: #ef4444;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.16);
  background: #fff;
}
.company-form__file-drop--compact {
  justify-content: center;
  min-height: 56px;
  border-style: solid;
  border-color: #d8e0ec;
}
.company-form__file-drop--compact .company-form__file-text {
  display: none;
}
.company-form__file-drop--compact .company-form__file-plus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #24bf6d;
  color: #fff;
  font-size: 16px;
  line-height: 1;
}
.company-form__file-plus {
  color: #24bf6d;
  font-size: 20px;
  font-weight: 700;
}
.company-form__file-text {
  color: #7b86a0;
  font-size: 15px;
}
.company-form__file-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid #e7edf7;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
}
.company-form__file-info--error {
  border-color: #ef4444;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.16);
  background: #fff;
}
.company-form__file-info > .company-form__file-remove {
  margin-left: auto;
}
.company-form__file-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-width: 0;
}
.company-form__file-name {
  font-size: 14px;
  color: #2c3951;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.company-form__file-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}
.company-form__file-link {
  border: 0;
  background: transparent;
  color: #4169cb;
  cursor: pointer;
  font-size: 13px;
  padding: 0;
}
.company-form__file-remove {
  border: 0;
  background: transparent;
  color: #ef4444;
  cursor: pointer;
  font-size: 13px;
}
.company-form__grid--bottom .company-form__stack,
.company-form__grid--bottom .company-form__field,
.company-form__grid--bottom .company-form__control--textarea {
  height: 100%;
}
.company-form__grid--bottom .company-form__control--textarea {
  min-height: 120px;
}
.company-form__field--warehouse-address .company-form__control--textarea {
  height: 100%;
  min-height: 160px;
}
.company-form__supplier-switch-wrap {
  margin-top: 28px;
}
.company-form__supplier-switch-wrap--inline {
  display: flex;
  align-items: center;
  min-height: 44px;
  margin-top: 0;
  margin-right: 0;
  max-width: min(620px, 100%);
}
.company-form__supplier-switch {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  gap: 10px;
  font-size: 15px;
  color: #2f3b52;
  cursor: pointer;
}
.company-form__supplier-switch input {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  flex: 0 0 auto;
  -moz-appearance: auto;
       appearance: auto;
  -webkit-appearance: checkbox;
  accent-color: #24bf6d;
}
.company-form__supplier-switch.is-disabled {
  opacity: 0.7;
  cursor: default;
}
.company-form__supplier-hint {
  margin-top: 8px;
  font-size: 12px;
  color: #ef4444;
}
.company-form__footer-actions {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 30px;
  min-height: 44px;
  overflow: visible;
}
.company-form__actions-block--supplier-request {
  padding-top: 34px;
}
.company-form .company-form--postavschiki.company-form--request-view .company-form__footer-actions {
  margin-top: 0;
}
.company-form__mini-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
  align-self: stretch;
  min-height: 44px;
  overflow: visible;
}
.company-form__mini-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: #4169cb;
  cursor: pointer;
  overflow: visible;
  transition: opacity 0.18s ease;
}
.company-form__mini-btn::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 50% !important;
  right: auto !important;
  top: auto !important;
  bottom: calc(100% + 12px) !important;
  transform: translateX(-50%) translateY(6px);
  opacity: 0;
  visibility: hidden;
  min-width: 132px;
  padding: 14px 18px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(30, 44, 76, 0.16);
  color: #454f64;
  font-size: 14px;
  line-height: 1.25;
  white-space: nowrap;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  text-align: center;
  z-index: 6;
}
.company-form__mini-btn:hover::after, .company-form__mini-btn:focus-visible::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.company-form__mini-btn--danger {
  color: #ef4444;
}
.company-form__mini-btn--danger:hover, .company-form__mini-btn--danger:focus-visible {
  opacity: 0.88;
}
.company-form__mini-icon {
  position: relative;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 30px;
}
.company-form__mini-icon-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  display: block;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.18s ease;
}
.company-form__mini-icon-asset {
  position: relative;
  display: block;
  width: 18px;
  height: 18px;
  pointer-events: none;
}
.company-form__mini-icon-asset--edit {
  width: 16px;
  height: 16px;
}
.company-form__mini-icon-asset--delete {
  width: 15px;
  height: 15px;
}
.company-form__mini-icon svg {
  display: block;
  width: 18px;
  height: 18px;
}
.company-form__mini-icon--copy svg {
  width: 17px;
  height: 17px;
}
.company-form__mini-btn:hover .company-form__mini-icon-bg, .company-form__mini-btn:focus-visible .company-form__mini-icon-bg {
  opacity: 1;
}
.company-form__error {
  display: inline-block;
  margin-top: 5px;
  font-size: 11px;
  color: #ef4444;
}
.company-form--disabled .company-form__control,
.company-form--disabled .company-form__file-drop,
.company-form--disabled .company-form__file-info,
.company-form--disabled .dropdown-select.dropdown {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.company-form--disabled .company-form__control:disabled,
.company-form--disabled .company-form__control:disabled:focus,
.company-form--disabled .company-form__control:disabled:active,
.company-form--disabled .company-form__control--select:disabled,
.company-form--disabled .company-form__control--select:disabled:focus,
.company-form--disabled .company-form__control--select:disabled:active {
  outline: none !important;
  border-color: #e7edf7 !important;
  box-shadow: none !important;
  background: rgba(255, 255, 255, 0.75) !important;
}
@media (max-width: 980px) {
  .company-form__grid--two-cols, .company-form__grid--sender, .company-form__grid--receiver, .company-form__grid--bottom, .company-form__stack--contact-grid, .company-form__stack--bank-grid {
    grid-template-columns: 1fr;
  }
  .company-form__section--warehouse, .company-form__section--full-width {
    grid-column: auto;
  }
  .company-form__warehouse-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "address" "map" "schedule";
  }
}
@media (max-width: 767px) {
  .company-form__grid {
    gap: 20px;
  }
  .company-form__heading {
    margin-bottom: 12px;
    font-size: 15px;
  }
  .company-form__stack {
    gap: 12px;
  }
  .company-form__stack--contact-grid, .company-form__stack--bank-grid {
    gap: 12px;
  }
  .company-form__field {
    padding-top: 8px;
  }
  .company-form__label {
    left: 12px;
    font-size: 11px;
  }
  .company-form .dropdown-select.dropdown {
    min-height: 52px;
    padding: 14px 40px 14px 14px;
  }
  .company-form .dropdown-select.dropdown .value,
  .company-form .dropdown-select.dropdown .placeholder {
    font-size: 14px;
  }
  .company-form__control {
    min-height: 52px;
    padding: 14px;
    font-size: 14px;
  }
  .company-form__control--textarea {
    padding-top: 16px;
  }
  .company-form__file-drop, .company-form__file-info {
    min-height: 46px;
  }
  .company-form__file-content {
    align-items: flex-start;
    flex-direction: column;
  }
  .company-form__file-actions {
    gap: 12px;
    flex-wrap: wrap;
  }
  .company-form__supplier-switch-wrap {
    margin-top: 20px;
  }
  .company-form__supplier-switch-wrap--inline {
    margin-right: 0;
    max-width: 100%;
  }
  .company-form__supplier-switch {
    align-items: flex-start;
    font-size: 14px;
    line-height: 1.4;
  }
  .company-form__footer-actions {
    justify-content: flex-start;
    margin-top: 20px;
    min-height: 0;
  }
  .company-form__actions-block--supplier-request {
    padding-top: 24px;
  }
  .company-form .company-form--postavschiki.company-form--request-view .company-form__footer-actions {
    margin-top: 0;
  }
  .company-form__mini-actions {
    gap: 10px;
  }
  .company-form__mini-btn {
    width: 40px;
    height: 40px;
  }
  .company-form__mini-btn::after {
    min-width: 116px;
    padding: 12px 14px;
    font-size: 13px;
  }
}
@media (max-width: 575px) {
  .company-form__grid {
    gap: 16px;
  }
  .company-form__heading {
    font-size: 14px;
  }
  .company-form__stack {
    gap: 10px;
  }
  .company-form__stack--contact-grid {
    grid-template-columns: 1fr;
  }
  .company-form__control {
    min-height: 48px;
    padding: 12px 13px;
    font-size: 13px;
  }
  .company-form .dropdown-select.dropdown {
    min-height: 48px;
    padding: 12px 38px 12px 13px;
  }
  .company-form__mini-btn {
    width: 38px;
    height: 38px;
  }
}

.dir-dialog-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  animation: dir-dialog-fade 0.2s ease;
}

.dir-dialog {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 16px 30px rgba(30, 48, 88, 0.12);
  padding: 28px 32px;
  max-width: 460px;
  width: 90%;
  animation: dir-dialog-slide 0.2s ease;
}
.dir-dialog--notice {
  max-width: 420px;
  padding-top: 34px;
}
.dir-dialog--notice .dir-dialog__title,
.dir-dialog--notice .dir-dialog__message,
.dir-dialog--notice .dir-dialog__actions {
  text-align: center;
  justify-content: center;
}
.dir-dialog--notice .dir-dialog__btn--confirm {
  min-width: 112px;
}
.dir-dialog__badge {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(180deg, #e7f8ef 0%, #d8f1e5 100%);
  color: #18b36a;
  box-shadow: inset 0 0 0 1px rgba(24, 179, 106, 0.18);
}
.dir-dialog__badge svg {
  width: 30px;
  height: 30px;
}
.dir-dialog__title {
  font-size: 18px;
  font-weight: 600;
  color: #20293a;
  margin: 0 0 12px;
}
.dir-dialog__message {
  font-size: 14px;
  color: #3f4a5e;
  line-height: 1.6;
  margin: 0 0 24px;
}
.dir-dialog__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-end;
}
.dir-dialog__btn {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.15s;
}
.dir-dialog__btn--confirm {
  background: #4169cb;
  color: #ffffff;
  border: none;
}
.dir-dialog__btn--confirm:hover {
  background: #365cbc;
}
.dir-dialog__btn--cancel {
  background: #ffffff;
  color: #3f4a5e;
  border: 1px solid #cad5ea;
}
.dir-dialog__btn--cancel:hover {
  background: #f7f9fd;
}

@keyframes dir-dialog-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes dir-dialog-slide {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.supplier-documents-section {
  padding: 22px 28px 20px;
  border: 1px solid rgba(52, 96, 180, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 30px rgba(31, 45, 78, 0.05);
  text-align: left;
}
.supplier-documents-section__header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  justify-content: flex-start;
}
.supplier-documents-section__icon {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: block;
}
.supplier-documents-section__heading {
  min-width: 0;
  flex: 1;
  text-align: left;
}
.supplier-documents-section__title {
  margin: 0;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 500;
  color: #161d2b;
}
.supplier-documents-section__file-list {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  padding-left: 0;
  justify-items: stretch;
}
.supplier-documents-section__file-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.supplier-documents-section__file-link {
  color: #4169cb;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.45;
  word-break: break-word;
  border: 0;
  padding: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}
.supplier-documents-section__file-link:hover, .supplier-documents-section__file-link:focus-visible {
  text-decoration: underline;
}
.supplier-documents-section__file-link--pending {
  color: #6f7a90;
}
.supplier-documents-section__empty {
  font-size: 14px;
  line-height: 1.45;
  color: #7e889c;
  text-align: left;
}
.supplier-documents-section__remove {
  flex: 0 0 auto;
  border: 0;
  padding: 0;
  background: transparent;
  color: #d24444;
  font-size: 13px;
  line-height: 1.2;
  cursor: pointer;
}
.supplier-documents-section__add-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  margin-left: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #8a94aa;
  font-size: 14px;
  line-height: 1.2;
  cursor: pointer;
  transition: color 0.16s ease;
  text-align: left;
  align-self: flex-start;
}
.supplier-documents-section__add-btn:hover, .supplier-documents-section__add-btn:focus-within {
  color: #4169cb;
}
.supplier-documents-section__add-icon {
  margin-right: 6px;
  color: #4169cb;
  font-size: 16px;
  line-height: 1;
}
.supplier-documents-section__add-text {
  color: inherit;
}
@media (max-width: 767px) {
  .supplier-documents-section {
    padding: 18px 20px;
  }
  .supplier-documents-section__file-row {
    gap: 6px;
  }
  .supplier-documents-section__title {
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .supplier-documents-section {
    padding: 16px 14px;
    border-radius: 18px;
  }
  .supplier-documents-section__header {
    gap: 10px;
  }
  .supplier-documents-section__icon {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }
  .supplier-documents-section__file-link, .supplier-documents-section__empty {
    font-size: 13px;
  }
  .supplier-documents-section__add-btn {
    width: auto;
    justify-content: flex-start;
    min-height: 0;
  }
}

.directory-page__floating-actions {
  display: flex;
}

.customs-page {
  position: relative;
  margin-top: 30px;
}
.customs-page__loading {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 32px;
  z-index: 5;
  font-size: 16px;
  color: #6b7280;
  backdrop-filter: blur(2px);
}
.customs-page__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.95fr);
  gap: 32px 36px;
  align-items: start;
}
.customs-page__cell {
  min-width: 0;
}
.customs-page__cell--documents {
  align-self: stretch;
}
@media (max-width: 1180px) {
  .customs-page__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .customs-page {
    margin-top: 22px;
  }
  .customs-page__grid {
    gap: 20px;
  }
}
@media (max-width: 575px) {
  .customs-page {
    margin-top: 18px;
  }
  .customs-page__loading {
    border-radius: 24px;
    font-size: 15px;
  }
  .customs-page__grid {
    gap: 16px;
  }
}

.customs-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}
.customs-header__left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.customs-header__title {
  font-size: 24px;
  font-weight: 700;
  color: #111827;
  margin: 0;
}
.customs-header__subtitle {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
}
.customs-header__right {
  flex-shrink: 0;
}
.customs-header__btn {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: #3b82f6;
  background: #ffffff;
  border: 1px solid #3b82f6;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.15s;
}
.customs-header__btn:hover {
  background: #3b82f6;
  color: #ffffff;
}

.tabs-menu {
  background: #ffffff;
  border-bottom: 3px solid #10b981;
  position: relative;
}
.tabs-menu__list {
  display: flex;
  gap: 0;
  overflow-x: auto;
  padding: 0 24px;
}
.tabs-menu__list::-webkit-scrollbar {
  height: 4px;
}
.tabs-menu__list::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 2px;
}
.tabs-menu__item {
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  background: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.15s;
  position: relative;
}
.tabs-menu__item:hover {
  color: #3b82f6;
  background: #eff6ff;
}
.tabs-menu__item--active {
  color: #059669;
  font-weight: 600;
}
.tabs-menu__item--active::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 3px;
  background: #10b981;
}

@media (max-width: 767px) {
  .tabs-menu__list {
    flex-wrap: wrap;
    overflow: visible;
    row-gap: 4px;
    padding: 0 12px;
  }
  .tabs-menu__item {
    padding: 12px 14px;
    white-space: normal;
  }
}
@media (max-width: 1024px) {
  .tabs-menu__list {
    flex-wrap: wrap;
    overflow: visible;
    row-gap: 4px;
    padding: 0 16px;
  }
  .tabs-menu__item {
    padding: 12px 16px;
  }
  .tabs-menu__item--active::after {
    bottom: 0;
  }
}
.customs-card {
  background: #ffffff;
  border: 1px solid #edf1f7;
  border-radius: 28px;
  padding: 32px 38px;
  box-shadow: 0 18px 40px rgba(31, 51, 84, 0.06);
  min-width: 0;
}
.customs-card__title {
  margin: 0 0 20px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.35;
  color: #4c6db8;
}
.customs-card__fields {
  display: grid;
  gap: 22px;
}
@media (max-width: 767px) {
  .customs-card {
    border-radius: 22px;
    padding: 24px 20px;
  }
}
@media (max-width: 575px) {
  .customs-card {
    border-radius: 20px;
    padding: 20px 16px;
  }
  .customs-card__title {
    margin-bottom: 16px;
    font-size: 16px;
  }
  .customs-card__fields {
    gap: 16px;
  }
}

.customs-field--full {
  grid-column: 1/-1;
}
.customs-field__value {
  position: relative;
  min-height: 58px;
  display: flex;
  align-items: flex-start;
  padding: 16px 20px;
  border: 1px solid #dfe5ef;
  border-radius: 14px;
  background: #ffffff;
  color: #1f2532;
  font-size: 16px;
  line-height: 1.45;
}
.customs-field__value.is-empty {
  color: #8a93a5;
  padding-top: 18px;
  padding-bottom: 12px;
}
.customs-field__value.is-filled {
  padding-top: 18px;
  padding-bottom: 12px;
}
.customs-field__value--multiline {
  min-height: 120px;
}
.customs-field__value--multiline.is-filled, .customs-field__value--multiline.is-empty {
  padding-top: 22px;
}
.customs-field__label {
  position: absolute;
  top: 0;
  left: 14px;
  transform: translateY(-50%);
  padding: 0 6px;
  background: #ffffff;
  font-size: 12px;
  line-height: 1;
  color: #8a93a5;
  opacity: 1;
  pointer-events: none;
}
.customs-field__content {
  display: block;
  width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.customs-field__value.is-empty .customs-field__content {
  color: #8a93a5;
}
.customs-field__value--multiline .customs-field__content {
  white-space: pre-line;
}

.payments-section {
  min-width: 0;
  background: #ffffff;
  border: 1px solid #edf1f7;
  border-radius: 28px;
  padding: 32px 38px;
  box-shadow: 0 18px 40px rgba(31, 51, 84, 0.06);
}
.payments-section__title {
  margin: 0 0 20px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.35;
  color: #4c6db8;
}
.payments-section__total, .payments-section__metric {
  position: relative;
  border: 1px solid #dfe5ef;
  border-radius: 14px;
  background: #ffffff;
}
.payments-section__total {
  padding: 24px 20px 16px;
}
.payments-section__subcaption {
  margin: 18px 0 14px;
  font-size: 15px;
  color: #5d6678;
}
.payments-section__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 20px;
}
.payments-section__metric {
  padding: 22px 18px 14px;
}
.payments-section__caption {
  position: absolute;
  top: 0;
  left: 14px;
  transform: translateY(-50%);
  margin-bottom: 0;
  padding: 0 6px;
  background: #ffffff;
  font-size: 14px;
  line-height: 1.3;
  color: #8a93a5;
}
.payments-section__amount, .payments-section__value {
  color: #1f2532;
  line-height: 1.35;
}
.payments-section__amount {
  font-size: 30px;
  font-weight: 500;
}
.payments-section__value {
  font-size: 16px;
  font-weight: 500;
}
.payments-section__extras {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}
.payments-section__extra {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 2px 0;
  border-top: 1px solid #edf1f7;
  font-size: 15px;
  color: #5d6678;
}
.payments-section__extra strong {
  color: #1f2532;
  font-weight: 600;
}
@media (max-width: 767px) {
  .payments-section {
    border-radius: 22px;
    padding: 24px 20px;
  }
  .payments-section__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .payments-section__amount {
    font-size: 24px;
  }
}
@media (max-width: 575px) {
  .payments-section {
    border-radius: 20px;
    padding: 20px 16px;
  }
  .payments-section__title {
    margin-bottom: 16px;
    font-size: 16px;
  }
  .payments-section__total, .payments-section__metric {
    border-radius: 12px;
  }
  .payments-section__total {
    padding: 22px 16px 14px;
  }
  .payments-section__metric {
    padding: 20px 14px 12px;
  }
  .payments-section__caption {
    font-size: 13px;
  }
  .payments-section__amount {
    font-size: 22px;
  }
  .payments-section__value, .payments-section__subcaption, .payments-section__extra {
    font-size: 14px;
  }
  .payments-section__extra {
    flex-direction: column;
    gap: 6px;
  }
}

.documents-section {
  height: auto;
  min-height: 0;
  min-width: 0;
  background: #ffffff;
  border: 1px solid #edf1f7;
  border-radius: 28px;
  padding: 32px 38px;
  box-shadow: 0 18px 40px rgba(31, 51, 84, 0.06);
}
.documents-section__heading {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 26px;
}
.documents-section__icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 10px 11px;
  border: 1.5px solid #4c6db8;
  border-radius: 14px;
  flex-shrink: 0;
}
.documents-section__icon span {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: #4c6db8;
}
.documents-section__title {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.35;
  color: #1f2532;
}
.documents-section__groups {
  display: grid;
  gap: 22px;
}
.documents-section__group {
  display: grid;
  gap: 14px;
  align-content: start;
}
.documents-section__group-title {
  font-size: 14px;
  font-weight: 600;
  color: #8a93a5;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.documents-section__files {
  display: grid;
  gap: 12px;
}
.documents-section__file-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.documents-section__file-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}
.documents-section__file-link {
  color: #4c6db8;
  font-size: 16px;
  line-height: 1.45;
  text-decoration: none;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.documents-section__file-link:hover {
  color: #3358a7;
  text-decoration: underline;
}
.documents-section__file-link--download {
  font-size: 14px;
  color: #8a93a5;
}
.documents-section__file-link--disabled {
  color: #8a93a5;
  cursor: default;
  text-decoration: none;
}
.documents-section__delete {
  padding: 0;
  border: 0;
  background: transparent;
  color: #b36d6d;
  font-size: 14px;
  cursor: pointer;
  flex-shrink: 0;
}
.documents-section__delete:hover {
  color: #934949;
}
.documents-section__empty {
  color: #8a93a5;
  font-size: 15px;
  line-height: 1.45;
}
.documents-section__add-btn {
  justify-self: start;
  min-width: 154px;
  padding: 11px 16px;
  border: 1px solid #cbd7ef;
  border-radius: 12px;
  background: #f7f9fe;
  color: #4c6db8;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.documents-section__add-btn:hover {
  background: #edf3ff;
  border-color: #4c6db8;
}
@media (max-width: 767px) {
  .documents-section {
    border-radius: 22px;
    padding: 24px 20px;
  }
  .documents-section__heading {
    margin-bottom: 20px;
  }
  .documents-section__file-row {
    flex-direction: column;
    gap: 8px;
  }
}
@media (max-width: 575px) {
  .documents-section {
    border-radius: 20px;
    padding: 20px 16px;
  }
  .documents-section__heading {
    gap: 14px;
    margin-bottom: 16px;
  }
  .documents-section__icon {
    width: 38px;
    height: 38px;
    padding: 8px 9px;
    border-radius: 12px;
  }
  .documents-section__title {
    font-size: 16px;
  }
  .documents-section__groups {
    gap: 18px;
  }
  .documents-section__group-title {
    font-size: 13px;
  }
  .documents-section__file-link, .documents-section__empty {
    font-size: 14px;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .documents-section__add-btn {
    width: 100%;
    min-width: 0;
  }
}

.customs-confirmation {
  margin-top: 28px;
  padding-top: 8px;
}
.customs-confirmation__label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}
.customs-confirmation__label--disabled {
  cursor: default;
}
.customs-confirmation__label input {
  display: none;
}
.customs-confirmation__box {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #b8c7a2;
  border-radius: 4px;
  background: #ffffff;
  color: transparent;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}
.customs-confirmation__text {
  color: #1f2532;
  font-size: 16px;
  line-height: 1.45;
}
.customs-confirmation__meta {
  margin: 12px 0 0 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  color: #7b8698;
  font-size: 13px;
}
.customs-confirmation.is-confirmed .customs-confirmation__box {
  background: #4db77f;
  border-color: #4db77f;
  color: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Manrope, sans-serif;
  font-size: 14px;
  color: #111827;
  background: #f8f9fa;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.order-shell {
  max-width: 1140px;
  margin: 0 auto;
  padding: 28px 24px 40px;
  min-width: 0;
}

.order-shell__breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
  color: #7a8497;
  font-size: 12px;
}

.order-shell__sep {
  color: #97a3b8;
}

.order-shell__hero {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 22px;
}

.order-shell__title {
  margin: 0 0 14px;
  font-size: 28px;
  font-weight: 500;
  color: #171d2d;
}

.order-shell__badge {
  min-width: 430px;
  max-width: 430px;
  padding: 12px 16px;
  border-radius: 8px;
  background: #edf2fb;
  color: #4f70d2;
  font-size: 14px;
  text-align: center;
}

.order-shell__ask-btn {
  min-width: 190px;
  padding: 14px 18px;
  border: 0;
  border-radius: 8px;
  background: #3d68c8;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(61, 104, 200, 0.22);
}

.order-shell__tabs,
.order-subtabs {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: center;
  padding-bottom: 12px;
  margin-bottom: 26px;
}

.order-shell__tab,
.order-subtabs__item {
  position: relative;
  padding: 0 0 10px;
  color: #000000;
  font-size: 14px;
}

.order-shell__tab.is-active::after,
.order-subtabs__item.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -13px;
  height: 2px;
  background: #25d07d;
  border-radius: 999px;
}

.order-shell__dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 6px;
  border-radius: 50%;
  background: #ee4b4b;
  vertical-align: middle;
}

.order-card {
  position: relative;
  min-width: 0;
}

.order-section-kicker {
  margin-bottom: 10px;
  color: #95a0b6;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.order-section-title {
  margin: 0 0 26px;
  font-size: 32px;
  line-height: 1.1;
  color: #20273a;
  font-weight: 500;
}

.order-table {
  width: 100%;
  border-spacing: 0;
  border-collapse: separate;
  overflow: hidden;
  border: 1px solid #d8e0ec;
  border-radius: 18px;
  background: #fff;
}

.order-table th,
.order-table td {
  padding: 14px 16px;
  border-right: 1px solid #d8e0ec;
  border-bottom: 1px solid #d8e0ec;
  font-size: 13px;
  vertical-align: middle;
}

.order-table th {
  background: #eef3fb;
  color: #3a4458;
  font-weight: 500;
  text-align: center;
}

.order-table td:last-child,
.order-table th:last-child {
  border-right: 0;
}

.order-table tr:last-child td {
  border-bottom: 0;
}

.order-table .subhead {
  display: block;
  margin-top: 4px;
  color: #7f8aa0;
  font-size: 10px;
  font-weight: 400;
}

.order-link {
  color: #3f67d0;
  font-weight: 500;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.order-total-row td {
  background: #f7f9fc;
}

.order-danger-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  min-width: 94px;
  border-radius: 7px;
  background: #edb8b7;
  color: #693535;
  font-weight: 600;
}

.order-stack {
  display: grid;
  gap: 10px;
}

.order-table-scroll {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.order-searchbar {
  display: grid;
  grid-template-columns: 1fr 132px;
  margin-bottom: 24px;
  position: relative;
}

.order-searchbar input {
  height: 48px;
  padding: 0 48px 0 18px;
  border: 1px solid #93abde;
  border-right: 0;
  border-radius: 12px 0 0 12px;
  outline: none;
}

.order-searchbar__submit {
  border: 0;
  background: #3d68c8;
  color: #fff;
  border-radius: 0 12px 12px 0;
}

.order-searchbar__clear {
  position: absolute;
  right: 148px;
  top: 8px;
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  color: #8290a8;
  font-size: 22px;
}

.order-download-cell {
  width: 58px;
  text-align: center;
}

.order-download-btn {
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  background: #eef4ff;
  color: #4a72d0;
  cursor: pointer;
}

.order-page-state {
  padding: 18px 20px;
  border: 1px solid #dbe4f2;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  color: #51607a;
}

.order-page-state--error {
  border-color: #f0c9c9;
  background: #fff7f7;
  color: #a44545;
}

.graph-table th:first-child,
.graph-table td:first-child {
  width: 52%;
  text-align: left;
}

.graph-table th:not(:first-child),
.graph-table td:not(:first-child) {
  width: 24%;
  text-align: center;
}

.graph-table,
.graph-table tr,
.graph-table td {
  overflow: visible;
}

.graph-table {
  border-radius: 20px;
}

.graph-table thead tr:first-child th:first-child {
  border-top-left-radius: 20px;
}

.graph-table thead tr:first-child th:last-child {
  border-top-right-radius: 20px;
}

.graph-table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 20px;
}

.graph-table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 20px;
}

.graph-table__title {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.graph-table__asterisk {
  color: #ef4444;
}

.graph-table__hint {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #eef2f7;
  color: #7b8699;
  font-size: 11px;
  cursor: help;
}

.graph-table__hint:focus-visible {
  outline: 2px solid rgba(61, 104, 200, 0.35);
  outline-offset: 2px;
}

.graph-table__hint-popup {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  width: 280px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  color: #111827;
  font-size: 12px;
  line-height: 1.45;
  text-align: left;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(-4px);
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
  z-index: 4;
}

.graph-table__hint:hover .graph-table__hint-popup,
.graph-table__hint:focus-visible .graph-table__hint-popup {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.graph-table__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 122px;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 8px;
  font-size: 12px;
}

.graph-table__pill.is-success {
  background: #bce5d0;
  color: #35664d;
}

.graph-table__pill.is-danger {
  background: #efc7c7;
  color: #8a4d4d;
}

.graph-table__value-shell {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  min-height: 32px;
}

.graph-table__value-text,
.graph-table__date-input {
  width: 150px;
  min-height: 32px;
  box-sizing: border-box;
}

.graph-table__value-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  color: #3a4458;
}

.graph-table__date-input {
  padding: 6px 10px;
  border: 1px solid #c7d1e2;
  border-radius: 8px;
}

.graph-table__cell--editable {
  cursor: pointer;
}

.graph-table__cell--readonly {
  cursor: default;
}

.graph-table__placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  min-height: 32px;
  box-sizing: border-box;
  padding: 0 12px;
  border: 1px dashed #c7d1e2;
  border-radius: 8px;
  color: #5f6e89;
  background: #f8fbff;
}

.graph-table__placeholder--required {
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #ef4444;
  font-weight: 600;
}

.graph-table__dash {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  min-height: 32px;
  box-sizing: border-box;
  color: #9aa5bb;
}

.order-floating-actions {
  position: fixed;
  right: calc(var(--sw-right-pos, 30px) + var(--sw-width, 60px) + 16px);
  bottom: var(--sw-bottom-pos, 30px);
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 10;
}

.order-floating-actions--visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.order-floating-actions__btn {
  position: relative;
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(32, 40, 68, 0.18);
}

.order-floating-actions__btn--save {
  background: #18b36a;
}

.order-floating-actions__btn--cancel {
  background: #ef4444;
}

.order-floating-actions__tooltip {
  position: absolute;
  right: 0;
  bottom: -46px;
  display: none;
  padding: 10px 14px;
  border-radius: 10px;
  white-space: nowrap;
  background: #fff;
  color: #38435a;
  box-shadow: 0 8px 24px rgba(30, 44, 76, 0.16);
}

.order-floating-actions__btn:hover .order-floating-actions__tooltip {
  display: block;
}

.docs-page {
  display: grid;
  gap: 14px;
}

.docs-group {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  border: 1px solid #e6ebf4;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 6px 20px rgba(31, 45, 77, 0.04);
}

.docs-group__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: #4a72d0;
  flex: 0 0 42px;
  align-self: center;
  justify-self: center;
}

.docs-group__icon > img {
  display: block;
  width: 42px;
  height: 42px;
  -o-object-fit: contain;
     object-fit: contain;
}

.docs-group__icon-stack {
  position: relative;
  display: block;
  width: 42px;
  height: 42px;
}

.docs-group__icon-stack-box {
  position: absolute;
  inset: 0;
  display: block;
  width: 42px;
  height: 42px;
  -o-object-fit: contain;
     object-fit: contain;
}

.docs-group__icon-stack-check {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 18px;
  height: 18px;
  -o-object-fit: contain;
     object-fit: contain;
  transform: translate(-50%, -50%);
}

.docs-group__title {
  margin: 2px 0 10px;
  font-size: 15px;
  font-weight: 500;
}

.docs-group__links {
  display: grid;
  gap: 6px;
}

.docs-group__link-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.docs-group__link {
  color: #4a72d0;
  font-size: 12px;
}

.docs-group__remove {
  border: 0;
  background: transparent;
  color: #8591a7;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}

.docs-group__actions {
  display: grid;
  gap: 8px;
  align-content: start;
  padding-top: 10px;
}

.docs-group__action {
  min-width: 118px;
  min-height: 38px;
  padding: 0 18px;
  border: 1px solid #c8d5ef;
  border-radius: 12px;
  background: #f7faff;
  color: #4a72d0;
  text-align: center;
  cursor: pointer;
}

.docs-group__empty {
  color: #96a1b6;
  font-size: 12px;
}

@media (max-width: 1024px) {
  .graph-table th:first-child,
  .graph-table td:first-child {
    width: 48%;
  }
  .graph-table th:not(:first-child),
  .graph-table td:not(:first-child) {
    width: 26%;
  }
  .graph-table__hint-popup {
    width: 240px;
  }
  .finance-table,
  .closing-table {
    min-width: 760px;
  }
  .order-shell {
    padding: 24px 18px 110px;
  }
  .order-shell__hero {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .order-shell__title {
    font-size: 24px;
  }
  .order-shell__badge {
    min-width: 0;
    max-width: 100%;
    width: 100%;
  }
  .order-shell__ask-btn {
    width: 100%;
    min-width: 0;
  }
  .order-shell__tabs,
  .order-subtabs {
    flex-wrap: wrap;
    overflow: visible;
    gap: 10px 18px;
    padding-bottom: 0;
  }
  .order-shell__tab,
  .order-subtabs__item {
    padding-bottom: 4px;
  }
  .order-shell__tab.is-active::after,
  .order-subtabs__item.is-active::after {
    bottom: 0;
  }
  .order-searchbar {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .order-searchbar input {
    border-radius: 12px;
    border-right: 1px solid #93abde;
  }
  .order-searchbar__submit {
    border-radius: 12px;
    min-height: 46px;
  }
  .order-searchbar__clear {
    right: 12px;
    top: 8px;
  }
  .order-floating-actions {
    right: 20px;
    bottom: 96px;
  }
  .docs-group {
    grid-template-columns: 42px minmax(0, 1fr);
  }
  .docs-group__actions {
    grid-column: 1/-1;
    padding-top: 0;
  }
}
@media (max-width: 767px) {
  .order-section-title {
    margin-bottom: 18px;
    font-size: 24px;
  }
  .order-table th,
  .order-table td {
    padding: 12px 10px;
    font-size: 12px;
  }
  .graph-table th:first-child,
  .graph-table td:first-child {
    width: 50%;
  }
  .graph-table th:not(:first-child),
  .graph-table td:not(:first-child) {
    width: 25%;
  }
  .graph-table__title {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 4px 6px;
  }
  .graph-table__hint {
    flex: 0 0 auto;
    margin-top: 1px;
  }
  .graph-table__hint-popup {
    left: 0;
    width: min(220px, 100vw - 56px);
    transform: translateY(-4px);
  }
  .graph-table__hint:hover .graph-table__hint-popup,
  .graph-table__hint:focus-visible .graph-table__hint-popup {
    transform: translateY(0);
  }
  .graph-table__value-shell {
    min-width: 116px;
    min-height: 30px;
  }
  .graph-table__pill,
  .graph-table__value-text,
  .graph-table__date-input,
  .graph-table__placeholder,
  .graph-table__dash {
    width: 116px;
    min-width: 116px;
  }
  .graph-table__pill,
  .graph-table__value-text,
  .graph-table__placeholder,
  .graph-table__dash {
    min-height: 30px;
    font-size: 11px;
  }
  .graph-table__date-input {
    min-height: 30px;
    padding: 5px 8px;
    font-size: 12px;
  }
  .finance-table,
  .closing-table {
    min-width: 760px;
    table-layout: auto;
  }
  .order-stack {
    gap: 8px;
  }
  .order-shell {
    padding: 18px 14px 108px;
  }
  .order-shell__breadcrumbs {
    gap: 8px;
    margin-bottom: 10px;
  }
  .order-shell__title {
    margin-bottom: 10px;
    font-size: 21px;
    line-height: 1.15;
  }
  .order-shell__badge {
    padding: 10px 12px;
    font-size: 13px;
  }
  .order-shell__tabs,
  .order-subtabs {
    gap: 12px 18px;
  }
  .order-shell__tab,
  .order-subtabs__item {
    padding-bottom: 4px;
    font-size: 13px;
  }
  .order-shell__tab.is-active::after,
  .order-subtabs__item.is-active::after {
    bottom: 0;
  }
  .order-searchbar {
    margin-bottom: 18px;
  }
  .order-page-state {
    padding: 14px 16px;
    border-radius: 14px;
    font-size: 13px;
  }
  .docs-group {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px;
  }
  .docs-group__icon {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
    justify-self: flex-start;
  }
  .docs-group__icon > img,
  .docs-group__icon-stack,
  .docs-group__icon-stack-box {
    width: 38px;
    height: 38px;
  }
  .docs-group__title {
    margin: 0 0 8px;
  }
  .docs-group__link-row {
    align-items: flex-start;
  }
  .docs-group__actions {
    justify-items: flex-start;
  }
  .order-table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .order-table-scroll .finance-table,
  .order-table-scroll .closing-table {
    width: -moz-max-content;
    width: max-content;
    min-width: 760px;
  }
  .order-floating-actions {
    right: 14px;
    bottom: 86px;
    gap: 10px;
  }
  .order-floating-actions__btn {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 575px) {
  .order-section-title {
    font-size: 21px;
  }
  .graph-table th:first-child,
  .graph-table td:first-child {
    width: 48%;
  }
  .graph-table th:not(:first-child),
  .graph-table td:not(:first-child) {
    width: 26%;
  }
  .graph-table__value-shell {
    min-width: 98px;
    min-height: 28px;
  }
  .graph-table__pill,
  .graph-table__value-text,
  .graph-table__date-input,
  .graph-table__placeholder,
  .graph-table__dash {
    width: 98px;
    min-width: 98px;
  }
  .graph-table__pill,
  .graph-table__value-text,
  .graph-table__placeholder,
  .graph-table__dash {
    min-height: 28px;
    padding-left: 8px;
    padding-right: 8px;
    font-size: 10px;
  }
  .graph-table__date-input {
    min-height: 28px;
    padding: 4px 6px;
    font-size: 11px;
  }
  .graph-table__hint-popup {
    width: min(200px, 100vw - 48px);
    font-size: 11px;
  }
  .finance-table,
  .closing-table {
    min-width: 720px;
  }
  .docs-group__link {
    font-size: 11px;
  }
  .docs-group__action {
    min-width: 104px;
    min-height: 36px;
    padding: 0 14px;
  }
  .order-table-scroll .finance-table,
  .order-table-scroll .closing-table {
    width: -moz-max-content;
    width: max-content;
    min-width: 720px;
  }
  .order-table-scroll .graph-table {
    width: -moz-max-content;
    width: max-content;
    min-width: 440px;
  }
  .order-shell {
    padding: 16px 12px 104px;
  }
  .order-shell__title {
    font-size: 19px;
  }
  .order-searchbar input,
  .order-searchbar__submit {
    min-height: 44px;
  }
}
@media (max-width: 360px) {
  .order-shell {
    padding: 14px 10px 100px;
  }
  .order-shell__tabs,
  .order-subtabs {
    gap: 10px 14px;
  }
  .order-shell__tab,
  .order-subtabs__item {
    font-size: 12px;
  }
  .graph-table__value-shell {
    min-width: 88px;
  }
  .graph-table__pill,
  .graph-table__value-text,
  .graph-table__date-input,
  .graph-table__placeholder,
  .graph-table__dash {
    width: 88px;
    min-width: 88px;
  }
  .order-table-scroll .graph-table {
    min-width: 400px;
  }
  .order-floating-actions {
    right: 10px;
    bottom: calc(var(--sw-bottom-pos, 30px) + var(--sw-btn-height, var(--sw-width, 60px)) + 8px);
    gap: 8px;
  }
  .order-floating-actions__btn {
    width: 44px;
    height: 44px;
  }
}
.request-question-modal {
  position: relative;
  width: min(760px, 100%);
  max-width: 760px;
  max-height: calc(100vh - 48px);
  margin: 0 auto;
  padding: 32px;
  overflow-y: auto;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 24px 72px rgba(24, 38, 67, 0.18);
}

.request-question-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: #eef3fb;
  color: #32415d;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.request-question-modal__header {
  margin-bottom: 20px;
  padding-right: 52px;
}

.request-question-modal__title {
  margin: 0 0 8px;
  color: #1f293d;
  font-size: 28px;
  font-weight: 600;
}

.request-question-modal__subtitle {
  margin: 0;
  color: #66738c;
  font-size: 15px;
  line-height: 1.5;
}

.request-question-modal__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.request-question-modal__meta-item {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: #eef3fb;
  color: #4f5f7e;
  font-size: 13px;
}

.request-question-modal__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.request-question-modal__field {
  margin-bottom: 16px;
}

.request-question-modal__field input,
.request-question-modal__field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #d5dfef;
  border-radius: 14px;
  outline: none;
  color: #1f293d;
  font-size: 15px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.request-question-modal__field textarea {
  min-height: 148px;
  resize: vertical;
}

.request-question-modal__field input:focus,
.request-question-modal__field textarea:focus {
  border-color: #4a72d0;
  box-shadow: 0 0 0 4px rgba(74, 114, 208, 0.12);
}

.request-question-modal__field input.has-error,
.request-question-modal__field textarea.has-error {
  border-color: #df6c6c;
}

.request-question-modal__field-error {
  margin-top: 6px;
  color: #c34c4c;
  font-size: 12px;
}

.request-question-modal__check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  color: #5f6c84;
  font-size: 14px;
  line-height: 1.5;
  cursor: pointer;
}

.request-question-modal__check input {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin: 4px 0 0;
  flex: 0 0 auto;
  -moz-appearance: auto;
       appearance: auto;
  -webkit-appearance: checkbox;
  accent-color: #55c486;
}

.request-question-modal__check a {
  color: #3d68c8;
}

.request-question-modal__success,
.request-question-modal__error {
  margin-bottom: 16px;
  padding: 14px 16px;
  border-radius: 14px;
  font-size: 14px;
}

.request-question-modal__success {
  background: #ecf8f1;
  color: #23784d;
}

.request-question-modal__error {
  background: #fff4f4;
  color: #b54747;
}

.request-question-modal__actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 24px;
}

.request-question-modal__btn {
  min-width: 148px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 12px;
  border: 0;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.request-question-modal__btn:disabled {
  opacity: 0.7;
  cursor: default;
}

.request-question-modal__btn--primary {
  background: #3d68c8;
  color: #fff;
  box-shadow: 0 12px 28px rgba(61, 104, 200, 0.22);
}

.request-question-modal__btn--secondary {
  background: #eef3fb;
  color: #31425d;
}

@media (max-width: 1024px) {
  .request-question-modal {
    margin: 24px auto;
    padding: 24px;
  }
  .request-question-modal__grid {
    grid-template-columns: 1fr;
  }
  .request-question-modal__actions {
    flex-direction: column-reverse;
  }
  .request-question-modal__btn {
    width: 100%;
  }
}
.order-link--button,
.docs-group__link--button,
.documents-section__file-link--button,
.supplier-documents-section__file-link--button,
.delivery-cell__file-link--button,
.delivery-field .file-input-ui .file-link--button,
.company-form__file-link--button {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  color: inherit;
  font: inherit;
  line-height: inherit;
}

.document-preview-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
  background: rgba(20, 32, 61, 0.48);
  backdrop-filter: blur(6px);
}

.document-preview-modal {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: min(1120px, 100%);
  max-height: min(88vh, 920px);
  background: #fff;
  border: 1px solid rgba(175, 193, 227, 0.8);
  border-radius: 24px;
  box-shadow: 0 28px 80px rgba(39, 67, 128, 0.28);
  overflow: hidden;
}

.document-preview-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: #f3f7ff;
  color: #4f628c;
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
}

.document-preview-modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 72px 18px 28px;
  border-bottom: 1px solid #e6edf9;
}

.document-preview-modal__heading {
  display: grid;
  gap: 6px;
}

.document-preview-modal__eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #7b8aa6;
}

.document-preview-modal__title {
  margin: 0;
  color: #24365f;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
}

.document-preview-modal__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.document-preview-modal__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid #d0dbef;
  border-radius: 12px;
  background: #3d68c8;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.document-preview-modal__action:link,
.document-preview-modal__action:visited,
.document-preview-modal__action:hover,
.document-preview-modal__action:focus-visible {
  color: #fff;
}

.document-preview-modal__action:hover,
.document-preview-modal__action:focus-visible {
  background: #4a75d6;
}

.document-preview-modal__action--ghost {
  background: #fff;
  color: #3d68c8;
}

.document-preview-modal__action--ghost:link,
.document-preview-modal__action--ghost:visited,
.document-preview-modal__action--ghost:hover,
.document-preview-modal__action--ghost:focus-visible {
  color: #3d68c8;
}

.document-preview-modal__action--ghost:hover,
.document-preview-modal__action--ghost:focus-visible {
  background: #edf3ff;
}

.document-preview-modal__body {
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f7faff;
  overflow: auto;
}

.document-preview-modal__frame {
  display: block;
  width: 100%;
  height: min(68vh, 720px);
  border: 0;
  background: #fff;
}

.document-preview-modal__image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: min(68vh, 720px);
  padding: 24px;
  box-sizing: border-box;
}

.document-preview-modal__image {
  display: block;
  max-width: 100%;
  max-height: min(64vh, 680px);
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(39, 67, 128, 0.14);
  background: #fff;
}

.document-preview-modal__fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  padding: 24px;
  color: #6f7f9d;
  text-align: center;
}

.document-preview-modal__footer {
  padding: 14px 28px 20px;
  color: #7b8aa6;
  font-size: 13px;
  line-height: 1.45;
  border-top: 1px solid #e6edf9;
  background: #fff;
}

@media (max-width: 767px) {
  .document-preview-overlay {
    padding: 12px;
  }
  .document-preview-modal {
    width: 100%;
    max-height: 92vh;
    border-radius: 18px;
  }
  .document-preview-modal__header {
    padding: 18px 56px 14px 18px;
    flex-direction: column;
  }
  .document-preview-modal__actions {
    width: 100%;
    justify-content: stretch;
  }
  .document-preview-modal__action {
    flex: 1 1 auto;
    min-width: 0;
  }
  .document-preview-modal__title {
    font-size: 20px;
  }
  .document-preview-modal__frame {
    height: min(62vh, 560px);
  }
  .document-preview-modal__image-wrap {
    min-height: min(62vh, 560px);
    padding: 16px;
  }
  .document-preview-modal__image {
    max-height: min(56vh, 520px);
    border-radius: 14px;
  }
  .document-preview-modal__footer {
    padding: 12px 18px 16px;
  }
}
.delivery-page .delivery-card .delivery-field,
.delivery-page .delivery-card .delivery-field .textinput-ui,
.delivery-page .delivery-card .delivery-field .textarea-ui,
.delivery-page .delivery-card .delivery-field .dropdown-select,
.delivery-page .delivery-card .delivery-field .datepicker,
.delivery-page .delivery-card .delivery-field .wrapper,
.delivery-page .delivery-card .delivery-field .value,
.delivery-page .delivery-card .delivery-field .placeholder,
.delivery-page .delivery-card .delivery-field input,
.delivery-page .delivery-card .delivery-field textarea,
.delivery-page .delivery-card .delivery-field__readonly,
.delivery-page .delivery-card .delivery-field__readonly-wrap,
.delivery-page .delivery-card .shipper-search__input,
.delivery-page .delivery-card .delivery-field .textinput-ui input.browser-default,
.delivery-page .delivery-card .delivery-field .textinput-ui input.large,
.delivery-page .delivery-card .delivery-field input.browser-default,
.delivery-page .delivery-card .delivery-field input[type=text],
.delivery-page .delivery-card .delivery-field input[type=email],
.delivery-page .delivery-card .delivery-field input[type=tel] {
  display: block !important;
  width: 100% !important;
  margin: 0 !important;
  text-align: left !important;
  -moz-text-align-last: left !important;
       text-align-last: left !important;
  direction: ltr !important;
}

.delivery-page .delivery-card .delivery-field .wrapper,
.delivery-page .delivery-card .delivery-field .value,
.delivery-page .delivery-card .delivery-field .placeholder,
.delivery-page .delivery-card .delivery-field__readonly,
.delivery-page .delivery-card .delivery-field__readonly-wrap:not(.has-value) .delivery-field__readonly {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-start !important;
  text-align: left !important;
  -moz-text-align-last: left !important;
       text-align-last: left !important;
}

.delivery-page .delivery-card .delivery-field .textinput-ui,
.delivery-page .delivery-card .delivery-field .textarea-ui,
.delivery-page .delivery-card .shipper-search,
.delivery-page .delivery-card .delivery-field__readonly-wrap {
  text-align: left !important;
}

.delivery-page .delivery-card .delivery-field .textinput-ui input,
.delivery-page .delivery-card .shipper-search__input {
  padding-left: 18px !important;
  padding-right: 18px !important;
}

.directory-page .dir-search__input:focus,
.directory-page .dir-search__input:active {
  outline: none !important;
  border-color: #95afe6 !important;
  box-shadow: none !important;
}

.directory-page .company-form__control:focus,
.directory-page .company-form__control:active {
  outline: none !important;
  border-color: #0eab70 !important;
  box-shadow: 0 0 0 3px rgba(14, 171, 112, 0.16) !important;
}

.directory-page .company-form .dropdown-select.dropdown:focus-within,
.directory-page .company-form .dropdown-select.dropdown.opened {
  border-color: #0eab70 !important;
  box-shadow: 0 0 0 3px rgba(14, 171, 112, 0.16) !important;
}

.directory-page .company-card__name-input:focus,
.directory-page .company-card__name-input:active {
  outline: none !important;
  border-color: #0eab70 !important;
  box-shadow: 0 0 0 3px rgba(14, 171, 112, 0.16) !important;
}

.directory-page .company-form__field--invalid .company-form__control:focus,
.directory-page .company-form__field--invalid .company-form__control:active,
.directory-page .company-form__field--invalid .dropdown-select.dropdown:focus-within,
.directory-page .company-form__field--invalid .dropdown-select.dropdown.opened {
  outline: none !important;
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.18) !important;
}

@media (max-width: 767px) {
  html,
  body {
    max-width: 100vw;
    overflow-x: clip;
  }
  .page-wrapper,
  main,
  main .page-content,
  .order-shell,
  .delivery-page,
  .requests-list,
  .requests-detail,
  .directory-page,
  .customs-page {
    max-width: 100%;
    min-width: 0;
    overflow-x: hidden;
  }
  .order-table-scroll,
  .requests-list .tab-content-wrapper,
  .delivery-table-scroll,
  .delivery-tbl__wrapper,
  .cargo-table__wrapper,
  .cargo-table,
  .delivery-tables {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

/* End */
/* /local/components/onlogsystem/support.widget/templates/.default/style.css?174843062810688 */
/* /local/templates/onlogsystem/template_styles.css?1773759857201064 */
