.orders-search-page {
    --orders-search-border: rgba(9, 41, 86, 0.08);
    --orders-search-shadow: 0 18px 35px rgba(10, 31, 68, 0.08);
    --orders-search-shadow-soft: 0 12px 26px rgba(10, 31, 68, 0.06);
    --orders-search-blue: #0053ce;
    --orders-search-dark: #0a1f44;
    --orders-search-muted: #5a6f96;
    --orders-search-surface: #ffffff;
    --orders-search-surface-alt: #f3f7ff;
    --orders-search-line: #d8e4ff;
    --orders-search-free: #0a7d41;
    --orders-search-commercial: #f08a24;
    --orders-search-gos: #0f4aa1;
    padding: 24px 0 48px;
}

.orders-search__visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.orders-search-page mark {
    background: #fff1bc;
    color: inherit;
    padding: 0 2px;
    border-radius: 4px;
}

.orders-search-hero {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    min-height: 220px;
    border-radius: 28px;
    background: linear-gradient(130deg, #082f62 0%, #195fa9 60%, #4d8fd8 100%);
    box-shadow: var(--orders-search-shadow);
    margin-bottom: 22px;
}

.orders-search-hero__content {
    position: relative;
    z-index: 1;
    width: min(520px, 100%);
    padding: 32px 32px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.orders-search-hero__icon img {
    width: 56px;
    height: 56px;
    object-fit: contain;
}

.orders-search-hero__parent {
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    font-weight: 500;
}

.orders-search-hero__title {
    margin: 0;
    color: #fff;
    font-size: 36px;
    line-height: 1.1;
    font-weight: 500;
}

.orders-search-hero__media {
    position: absolute;
    inset: 0;
}

.orders-search-hero__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8, 47, 98, 0.78) 0%, rgba(8, 47, 98, 0.22) 52%, rgba(8, 47, 98, 0) 100%);
}

.orders-search-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.orders-search-panel {
    margin-top: 15px;
}

.orders-search-form {
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    font-family: "Roboto Flex", Arial, sans-serif;
}

.orders-search-form__tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 15px;
}

.orders-search-form__tab,
.orders-search-form__tab-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 0 0 15px;
    border: 0;
    background: transparent;
    color: #afafaf;
    font-family: "Roboto Flex", Arial, sans-serif;
    font-size: 16px;
    line-height: 1;
    font-weight: 400;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s ease;
}

.orders-search-form__tab.is-active {
    color: #1a1a1a;
}

.orders-search-form__tab.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: #0069e3;
}

.orders-search-form__primary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 234px 60px;
    gap: 5px;
    align-items: stretch;
}

.orders-search-form__search-field,
.orders-search-form__scope-field,
.orders-search-form__saved-field {
    position: relative;
}

.orders-search-form__saved-field {
    grid-column: 1 / span 2;
}

.orders-search-form__search-input,
.orders-search-form__scope-select,
.orders-search-form__field input {
    width: 100%;
    border: 0;
    border-radius: 5px;
    min-height: 45px;
    padding: 0 15px;
    background: #e4eef7;
    color: #1a1a1a;
    font-family: "Roboto Flex", Arial, sans-serif;
    font-size: 16px;
    line-height: 1;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.orders-search-form__search-input,
.orders-search-form__scope-select {
    min-height: 60px;
    padding: 0 20px;
    font-size: 20px;
}

.orders-search-form__search-input {
    box-sizing: border-box;
    border: 1px solid #e2e8ee;
    background: #ffffff;
    color: #000000;
    line-height: normal;
}

.orders-search-form__scope-select {
    box-sizing: border-box;
    border: 1px solid #e2e8ee;
    background: #ffffff;
    color: #000000;
    line-height: normal;
}

.orders-search-form__search-input::placeholder,
.orders-search-form__scope-select::placeholder,
.orders-search-form__field input::placeholder {
    color: #8b8b8b;
}

.orders-search-form__search-input:focus,
.orders-search-form__scope-select:focus,
.orders-search-form__field input:focus {
    outline: none;
    border-color: rgba(0, 83, 206, 0.5);
    box-shadow: 0 0 0 4px rgba(0, 83, 206, 0.12);
}

.orders-search-form__scope-select {
    appearance: none;
    background-image: none;
    padding-right: 58px;
}

.orders-search-form__scope-glyph {
    position: absolute;
    top: 50%;
    right: 20px;
    width: 24px;
    height: 24px;
    transform: translateY(-50%);
    color: #1a1a1a;
    pointer-events: none;
}

.orders-search-form__scope-glyph::before {
    content: "";
    position: absolute;
    top: 4px;
    left: 3px;
    width: 18px;
    height: 2px;
    background: currentColor;
    box-shadow: 0 6px 0 currentColor, 0 12px 0 currentColor;
}

.orders-search-form__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 5px;
    background: #0069e3;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    box-shadow: none;
}

.orders-search-form__submit-icon {
    width: 28px;
    height: 28px;
    display: block;
    flex: 0 0 auto;
}

.orders-search-form__submit-label {
    display: none;
}

.orders-search-form__advanced-toggle-row {
    margin-top: 12px;
}

.orders-search-form[data-expanded="true"] .orders-search-form__advanced-toggle-row {
    display: none;
}

.orders-search-form__advanced-toggle {
    border: 0;
    background: transparent;
    color: #0069e3;
    font-family: "Roboto Flex", Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    padding: 0;
    cursor: pointer;
}

.orders-search-form__advanced[hidden],
.orders-search-form__save[hidden],
.orders-search-sort__menu[hidden],
.orders-search-autocomplete[hidden] {
    display: none !important;
}

.orders-search-form__advanced {
    margin-top: 15px;
    padding-top: 0;
    border-top: 0;
}

.orders-search-form__expanded-layout {
    display: grid;
    grid-template-columns: minmax(0, 810px) minmax(180px, 1fr);
    gap: 26px;
    align-items: start;
}

.orders-search-form__expanded-main {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.orders-search-form__expanded-row {
    display: grid;
    gap: 20px;
    align-items: end;
}

.orders-search-form__expanded-row--triple {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.orders-search-form__expanded-row--mixed {
    grid-template-columns: minmax(0, 1fr) repeat(2, minmax(190px, 210px));
    gap: 16px;
}

.orders-search-form__field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.orders-search-form__field-label {
    color: #7a7a7a;
    font-size: 16px;
    line-height: 1.2;
}

.orders-search-form__double-input {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5px;
}

.orders-search-form__date-field {
    position: relative;
}

.orders-search-form__date-field input {
    padding-right: 40px;
}

.orders-search-form__date-trigger {
    position: absolute;
    top: 50%;
    right: 11px;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border: 0;
    background: transparent;
    color: #0069e3;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 18px;
    line-height: 1;
}

.orders-search-form__date-trigger svg,
.orders-search-form__date-trigger .icon-calendar {
    display: block;
    width: 18px;
    height: 18px;
    font-size: 18px;
    line-height: 1;
}

.orders-search-form__selector-button {
    width: 100%;
    min-height: 45px;
    border-radius: 5px;
    border: 1px solid #0069e3;
    background: #fff;
    color: #0069e3;
    padding: 0 15px;
    font-family: "Roboto Flex", Arial, sans-serif;
    font-size: 15px;
    line-height: 1;
    font-weight: 400;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.orders-search-form__selector-button span {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.orders-search-form__checkboxes {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 6px;
    padding-left: 4px;
}

.orders-search-form__checkbox {
    display: flex;
    gap: 8px;
    align-items: center;
    color: #1a1a1a;
    font-size: 15px;
    line-height: 1.4;
}

.orders-search-form__checkbox input {
    appearance: none;
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
    margin: 0;
    border: 1px solid #0069e3;
    border-radius: 4px;
    background: #fff;
    position: relative;
    cursor: pointer;
}

.orders-search-form__checkbox input:checked {
    background: #0069e3;
    border-color: #0069e3;
}

.orders-search-form__checkbox input:checked::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.orders-search-form__actions {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    padding-top: 10px;
}

.orders-search-form__actions-stack {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.orders-search-form__actions-group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.orders-search-form__action-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border: 0;
    padding: 0;
    background: transparent;
    color: #0069e3;
    font-family: "Roboto Flex", Arial, sans-serif;
    font-size: 16px;
    line-height: 1;
    font-weight: 400;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s ease;
}

.orders-search-form__action-link .icon {
    font-size: 18px;
}

.orders-search-form__action-icon {
    width: 18px;
    height: 18px;
    display: block;
    flex: 0 0 auto;
}

.orders-search-form__action-icon--add-alt {
    width: 18px;
    height: 18px;
}

.orders-search-form__action-icon--backspace {
    width: 18px;
    height: 18px;
}

.orders-search-form__action-icon-disc,
.orders-search-form__action-icon-circle,
.orders-search-form__action-icon-plus,
.orders-search-form__action-icon--backspace path,
.orders-search-form__action-icon--heart path {
    transition: fill 0.2s ease, stroke 0.2s ease;
}

.orders-search-form__action-link:hover,
.orders-search-form__action-link:focus-visible {
    cursor: pointer;
    text-decoration: underline;
}

.orders-search-form__action-link[data-save-search]:hover .orders-search-form__action-icon--heart path,
.orders-search-form__action-link[data-save-search]:focus-visible .orders-search-form__action-icon--heart path {
    fill: #dd727b;
    stroke: #dd727b;
}

.orders-search-form__action-link[data-subscription-link]:hover .orders-search-form__action-icon-disc,
.orders-search-form__action-link[data-subscription-link]:focus-visible .orders-search-form__action-icon-disc {
    fill: #0069e3;
}

.orders-search-form__action-link[data-subscription-link]:hover .orders-search-form__action-icon-circle,
.orders-search-form__action-link[data-subscription-link]:focus-visible .orders-search-form__action-icon-circle {
    fill: #0069e3;
}

.orders-search-form__action-link[data-subscription-link]:hover .orders-search-form__action-icon-plus,
.orders-search-form__action-link[data-subscription-link]:focus-visible .orders-search-form__action-icon-plus {
    fill: #ffffff;
}

.orders-search-form__collapse-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border: 0;
    padding: 0;
    background: transparent;
    color: #0069e3;
    font-family: "Roboto Flex", Arial, sans-serif;
    font-size: 16px;
    line-height: 1;
    font-weight: 400;
    cursor: pointer;
}

.orders-search-form__collapse-icon {
    width: 18px;
    height: 18px;
    position: relative;
    flex: 0 0 auto;
}

.orders-search-form__collapse-icon::before {
    content: "";
    position: absolute;
    top: 7px;
    left: 5px;
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(225deg);
}

.orders-search-form__save {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 14px;
}

.orders-search-form__save input {
    flex: 1 1 auto;
    border: 0;
    border-radius: 5px;
    min-height: 45px;
    padding: 0 16px;
    background: #e4eef7;
    font: inherit;
}

.orders-search-form__save button {
    border: 0;
    border-radius: 5px;
    min-height: 45px;
    padding: 0 22px;
    background: #0069e3;
    color: #fff;
    font-family: "Roboto Flex", Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
}

.orders-search-autocomplete {
    position: absolute;
    z-index: 20;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid var(--orders-search-border);
    border-radius: 18px;
    box-shadow: var(--orders-search-shadow-soft);
    padding: 8px;
}

.orders-search-autocomplete__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.orders-search-autocomplete__item {
    border: 0;
    width: 100%;
    text-align: left;
    background: transparent;
    border-radius: 12px;
    padding: 12px 14px;
    color: var(--orders-search-dark);
    font: inherit;
    cursor: pointer;
}

.orders-search-autocomplete__item.is-active,
.orders-search-autocomplete__item:hover {
    background: var(--orders-search-surface-alt);
}

.orders-search-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 262px;
    gap: 20px;
    align-items: start;
}

.orders-search-results {
    min-width: 0;
}

.orders-search-aside {
    position: sticky;
    top: 32px;
    align-self: start;
}

.orders-search-results__toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    margin-bottom: 5px;
}

.orders-search-results__title {
    margin: 0;
    color: var(--orders-search-dark);
    font-size: 20px;
    line-height: 1.08;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.orders-search-results__title span {
    font-weight: 600;
}

.orders-search-sort {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.orders-search-sort__button,
.orders-search-sort__option {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    border: 0;
    background: transparent;
    font: inherit;
    cursor: pointer;
}

.orders-search-sort__button {
    min-height: 40px;
    padding: 0;
    color: #005fdd;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.orders-search-sort__button-label {
    white-space: nowrap;
}

.orders-search-sort__chevron {
    width: 9px;
    height: 9px;
    flex: 0 0 auto;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transform-origin: center;
    transition: transform 0.2s ease;
}

.orders-search-sort__button[aria-expanded="true"] .orders-search-sort__chevron {
    transform: rotate(225deg) translateY(-1px);
}

.orders-search-sort__menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    z-index: 12;
    width: 140px;
    padding: 2px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 10px 40px rgba(0, 42, 79, 0.12);
}

.orders-search-sort__option {
    width: 100%;
    min-height: 52px;
    padding: 10px 13px;
    border: 0;
    background: transparent;
    border-radius: 10px;
    color: #1a1a1a;
    font-size: 16px;
    line-height: 1.1;
    font-weight: 400;
    text-align: left;
    justify-content: space-between;
}

.orders-search-sort__option-direction {
    min-width: 16px;
    text-align: right;
    color: #7f8896;
    font-size: 16px;
    line-height: 1;
}

.orders-search-sort__option.is-active,
.orders-search-sort__option:hover {
    background: #f0f3f9;
}

.orders-search-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.orders-search-card {
    border-radius: 20px;
    background: #fff;
    box-shadow: none;
    padding: 20px;
}

.orders-search-card__top {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    margin-bottom: 15px;
}

.orders-search-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    min-width: 0;
}

.orders-search-card__meta-group,
.orders-search-card__meta-cluster,
.orders-search-card__order {
    display: inline-flex;
    align-items: center;
}

.orders-search-card__meta-group {
    gap: 8px;
}

.orders-search-card__meta-cluster {
    gap: 8px;
    color: #929292;
    font-size: 14px;
    line-height: 20px;
}

.orders-search-card__meta-type {
    color: #1387c9;
    font-size: 14px;
    line-height: 20px;
}

.orders-search-card__meta-separator {
    color: #929292;
    font-size: 14px;
    line-height: 20px;
}

.orders-search-card__marker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 22px;
    border-radius: 5px;
    padding: 3px 8px;
    font-family: "Inter", Arial, sans-serif;
    font-size: 12px;
    line-height: 16px;
    font-weight: 600;
    letter-spacing: 0;
}

.orders-search-card__marker--gos {
    background: #eff6ff;
    color: #1447e6;
}

.orders-search-card__marker--commercial {
    background: #fff1e6;
    color: #cf6c1b;
}

.orders-search-card__marker--free {
    background: #e7f7ee;
    color: #1c8f54;
}

.orders-search-card__order {
    gap: 10px;
    flex: 0 0 auto;
}

.orders-search-card__favorite {
    width: 20px;
    height: 20px;
    border: 0;
    background: transparent;
    color: #b7b7b7;
    cursor: pointer;
    font-size: 20px;
    padding: 0;
    line-height: 1;
}

.orders-search-card__favorite.is-active {
    color: #516A8E;
}

.orders-search-card__number {
    margin: 0;
    color: #929292;
    font-size: 14px;
    line-height: 20px;
}

.orders-search-card__content {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.orders-search-card__main {
    flex: 1 1 auto;
    min-width: 0;
}

.orders-search-card__title {
    display: block;
    margin: 0 0 15px;
    color: #005cad;
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
}

.orders-search-card__title mark {
    background: transparent;
    color: inherit;
    padding: 0;
    border-radius: 0;
    font-weight: 700;
}

.orders-search-card__facts {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin: 0;
    min-width: 0;
}

.orders-search-card__fact {
    display: flex;
    align-items: flex-start;
    gap: 4px;
    margin: 0;
    min-width: 0;
}

.orders-search-card__label {
    width: 70px;
    flex: 0 0 70px;
    margin: 0;
    color: #929292;
    font-size: 15px;
    line-height: 20px;
    font-weight: normal;
}

.orders-search-card__value {
    flex: 1 1 auto;
    min-width: 0;
    margin: 0;
    overflow: hidden;
    color: #002748;
    font-size: 15px;
    line-height: 20px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.orders-search-card__side {
    width: 210px;
    flex: 0 0 210px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-end;
}

.orders-search-card__price {
    color: #002748;
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    text-align: right;
}

.orders-search-card__dates {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: flex-end;
}

.orders-search-card__date {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    justify-content: flex-end;
    color: #002748;
    font-size: 15px;
    line-height: 20px;
}

.orders-search-card__date .icon {
    color: #67bf0d;
    font-size: 0.9rem;
    line-height: 1;
}

.orders-search-card__date .icon.is-mirrored {
    display: inline-block;
    transform: scaleX(-1);
}

.orders-search-card__date--close .icon {
    color: #dd727b;
}

.orders-search-card__date-value {
    white-space: nowrap;
}

.orders-search-empty,
.orders-search-seo,
.orders-aside-card {
    border-radius: 24px;
    border: 1px solid var(--orders-search-border);
    background: var(--orders-search-surface);
    box-shadow: var(--orders-search-shadow-soft);
}

.orders-search-empty {
    padding: 28px;
}

.orders-search-empty h3 {
    margin: 0 0 8px;
    color: var(--orders-search-dark);
}

.orders-search-empty p {
    margin: 0;
    color: var(--orders-search-muted);
}

.orders-search-pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.orders-search-pagination__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 48px;
    border: 1px solid var(--orders-search-border);
    border-radius: 14px;
    background: #fff;
    color: var(--orders-search-dark);
    font: inherit;
    line-height: 1;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
}

.orders-search-pagination__item.is-active {
    background: var(--orders-search-blue);
    border-color: var(--orders-search-blue);
    color: #fff;
}

.orders-search-seo {
    margin-top: 22px;
    padding: 24px;
    color: var(--orders-search-dark);
    line-height: 1.7;
}

.orders-search-aside__sticky {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.orders-aside-card {
    padding: 22px;
}

.orders-aside-card--subscriptions {
    border-radius: 20px;
    padding: 22px 25px 25px;
}

.orders-aside-card__subscription {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.orders-aside-card__subscription-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.orders-aside-card__icon {
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
    display: block;
    object-fit: contain;
}

.orders-aside-card__subscription-title,
.orders-aside-card__filters-title {
    margin: 0;
    color: #1a1a1a;
    font-family: "Roboto Flex", Arial, sans-serif;
    font-size: 17px;
    line-height: 24px;
    font-weight: 500;
}

.orders-aside-card__subscription-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 45px;
    padding: 0 20px;
    border-radius: 40px;
    background: #0069e3;
    color: #fff;
    font-family: "Roboto Flex", Arial, sans-serif;
    font-size: 15px;
    line-height: 1;
    font-weight: 500;
    text-align: center;
}

.orders-aside-card__separator {
    width: 100%;
    height: 1px;
    margin: 29px 0 30px;
    background: #e2e8ee;
}

.orders-aside-card__filters {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.orders-aside-card__head {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: flex-start;
}

.orders-aside-card__eyebrow {
    margin: 0 0 6px;
    color: var(--orders-search-muted);
    font-size: 13px;
}

.orders-aside-card__title {
    margin: 0;
    color: var(--orders-search-dark);
    font-size: 22px;
    line-height: 1.15;
    font-weight: 500;
}

.orders-aside-card__text {
    margin: 12px 0 0;
    color: var(--orders-search-muted);
    line-height: 1.6;
    font-size: 14px;
}

.orders-aside-card__text--compact {
    margin-top: 0;
}

.orders-aside-card__button,
.orders-aside-card__link {
    color: var(--orders-search-blue);
    font-size: 14px;
    font-weight: 500;
}

.orders-aside-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    margin-top: 16px;
    padding: 0 18px;
    border-radius: 16px;
    background: #edf4ff;
}

.orders-aside-card__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 0;
}

.orders-aside-card__chip {
    min-height: 27px;
    border: 0;
    border-radius: 999px;
    background: #e9f3ff;
    color: #0069e3;
    padding: 4px 11px;
    font: inherit;
    font-family: "Roboto Flex", Arial, sans-serif;
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
}

.orders-aside-card__chip.is-active {
    background: #0069e3;
    color: #fff;
}

.orders-aside-card__filters-link {
    margin-top: 2px;
    color: #0069e3;
    font-family: "Roboto Flex", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 400;
}

.orders-aside-card__guest-actions {
    display: flex;
    gap: 14px;
    margin-top: 14px;
}

.orders-aside-card__guest-actions a,
.orders-aside-card__promo-link {
    color: var(--orders-search-blue);
    font-size: 14px;
    font-weight: 500;
}

.orders-aside-card--promo {
    display: block;
    background: linear-gradient(180deg, #154d9a 0%, #1B609B 100%);
    color: #fff;
}

.orders-aside-card__promo-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 18px;
}

.orders-aside-card__promo-button,
.orders-aside-card__promo-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 46px;
    border-radius: 14px;
    padding: 12px 16px;
    text-align: center;
}

.orders-aside-card__promo-button {
    background: #fff;
    color: #123f7b;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.25;
    white-space: normal;
}

.orders-aside-card__promo-link {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.24);
    color: #fff;
}

.orders-aside-card__promo-button-label {
    display: block;
}

.orders-aside-card--promo .orders-aside-card__eyebrow,
.orders-aside-card--promo .orders-aside-card__title,
.orders-aside-card--promo .orders-aside-card__text,
.orders-aside-card--promo .orders-aside-card__promo-link,
.orders-aside-card--promo .orders-aside-card__promo-point {
    color: #fff;
}

#RegisterWindow {
    position: fixed;
    z-index: 1045;
    width: min(980px, calc(100vw - 32px));
}

#RegisterWindow .wt-body {
    max-height: 60vh;
    height: 60vh;
}

.flatpickr-calendar {
    border-radius: 18px;
    box-shadow: 0 18px 32px rgba(10, 31, 68, 0.18);
    border: 1px solid var(--orders-search-border);
}

.flatpickr-day.selected,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
    background: var(--orders-search-blue);
    border-color: var(--orders-search-blue);
}

.flatpickr-day.today {
    border-color: rgba(0, 83, 206, 0.4);
}

.icon-star-empty:before {
    font-weight: bold;
}

@media (max-width: 991px) {
    .orders-search-layout {
        grid-template-columns: 1fr;
    }

    .orders-search-aside {
        position: static;
    }

    .orders-search-aside__sticky {
        position: static;
    }

    .orders-search-results__toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .orders-search-sort__button,
    .orders-search-sort__menu {
        width: 100%;
    }

    .orders-search-sort {
        padding-top: 0;
    }

    .orders-search-form__tabs {
        gap: 16px;
    }

    .orders-search-form__primary {
        grid-template-columns: 1fr;
    }

    .orders-search-form__scope-field,
    .orders-search-form__saved-field,
    .orders-search-form__submit {
        width: 100%;
    }

    .orders-search-form__saved-field {
        grid-column: auto;
    }

    .orders-search-form__expanded-layout {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .orders-search-form__expanded-row--triple,
    .orders-search-form__expanded-row--mixed {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .orders-search-form__checkboxes {
        padding-top: 0;
    }

    .orders-search-form__actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .orders-search-form__actions-stack {
        width: 100%;
    }

    .orders-search-form__actions-group {
        gap: 16px;
    }

    .orders-search-card__top,
    .orders-search-card__content {
        flex-direction: column;
        align-items: flex-start;
    }

    .orders-search-card__side {
        width: 100%;
        flex-basis: auto;
        align-items: flex-start;
    }

    .orders-search-card__dates {
        align-items: flex-start;
    }
}

@media (max-width: 767px) {
    .orders-search-page {
        padding: 16px 0 36px;
    }

    .orders-search-hero {
        min-height: 180px;
    }

    .orders-search-hero__content,
    .orders-search-form,
    .orders-search-card,
    .orders-search-empty,
    .orders-search-seo,
    .orders-aside-card {
        padding: 18px;
    }

    .orders-search-hero__title {
        font-size: 28px;
    }

    .orders-search-form__tab,
    .orders-search-form__tab-link {
        font-size: 15px;
    }

    .orders-search-form__search-input,
    .orders-search-form__scope-select {
        font-size: 18px;
    }

    .orders-search-results__toolbar {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        flex-wrap: nowrap;
    }

    .orders-search-results__summary {
        min-width: 0;
        flex: 1 1 auto;
    }

    .orders-search-results__title {
        font-size: 15px;
        line-height: normal;
        font-weight: 600;
        letter-spacing: 0;
        white-space: nowrap;
    }

    .orders-search-sort {
        flex: 0 0 auto;
        margin-left: auto;
    }

    .orders-search-sort__button {
        width: auto;
        min-height: auto;
        gap: 5px;
        font-size: 13px;
        line-height: normal;
    }

    .orders-search-sort__button-label {
        white-space: nowrap;
    }

    .orders-search-sort__chevron {
        width: 8px;
        height: 8px;
        border-right-width: 1.5px;
        border-bottom-width: 1.5px;
        transform: rotate(45deg) translateY(-1px);
    }

    .orders-search-sort__button[aria-expanded="true"] .orders-search-sort__chevron {
        transform: rotate(225deg) translateY(0);
    }

    .orders-search-sort__menu {
        width: 138px;
    }

    .orders-search-form__submit {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 45px;
        font-family: "Roboto Flex", Arial, sans-serif;
        font-size: 15px;
        font-weight: 500;
        line-height: normal;
    }

    .orders-search-form__submit-icon,
    .orders-search-form__submit .icon {
        display: none;
    }

    .orders-search-form__submit-label {
        display: inline;
    }

    .orders-search-card__title {
        font-size: 18px;
        line-height: 26px;
        margin-bottom: 0;
        order: 1;
    }

    .orders-search-card__content {
        gap: 10px;
        align-items: stretch;
    }

    .orders-search-card__main {
        display: contents;
    }

    .orders-search-card__side {
        order: 2;
        width: 100%;
        flex-basis: auto;
        align-items: flex-start;
        gap: 10px;
        margin: 10px 0;
    }

    .orders-search-card__price {
        font-size: 20px;
        line-height: 28px;
        text-align: left;
    }

    .orders-search-card__dates {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 10px;
        flex-wrap: nowrap;
    }

    .orders-search-card__date {
        justify-content: flex-start;
        white-space: nowrap;
    }

    .orders-search-card__facts {
        order: 3;
        width: 100%;
    }

    .orders-search-card__fact {
        width: 100%;
    }

    .orders-search-card__title {
        width: 100%;
    }

    .orders-search-card__label {
        width: 68px;
        flex-basis: 68px;
    }

    .orders-search-form__checkboxes,
    .orders-search-form__double-input,
    .orders-search-form__save {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .orders-search-form__actions {
        gap: 12px;
        flex-direction: column;
        align-items: flex-start;
    }

    .orders-search-form__tab {
        min-width: 0;
        flex: 1 1 0;
    }
}
