:root {
    --ft-bg: #eef1f4;
    --ft-surface: #ffffff;
    --ft-ink: #1c2430;
    --ft-muted: #5c6777;
    --ft-line: #d8dee6;
    --ft-header: #161b22;
    --ft-header-text: rgba(255, 255, 255, 0.78);
    --ft-accent: #1f7a6c;
    --ft-accent-hover: #18685c;
    --ft-accent-soft: #e6f4f1;
    --ft-warn: #8a5a12;
    --ft-warn-bg: #fff6e5;
    --ft-ok: #1b6b4a;
    --ft-ok-bg: #e8f6ee;
    --ft-danger: #b42318;
    --ft-danger-bg: #fdecea;
    --ft-radius: 14px;
    --ft-shadow: 0 1px 2px rgba(22, 27, 34, 0.06), 0 8px 24px rgba(22, 27, 34, 0.06);
    --ft-max: 1080px;
    --ft-max-narrow: 440px;
    --ft-ease: cubic-bezier(0.22, 1, 0.36, 1);
    --ft-fast: 180ms;
    --ft-med: 260ms;
}

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

html {
    height: 100%;
    overflow-y: scroll;
    scrollbar-gutter: stable;
}

body.ft-body {
    margin: 0;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    background: var(--ft-bg);
    color: var(--ft-ink);
    font-family: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.45;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--ft-accent);
    text-decoration: none;
    transition: color var(--ft-fast) var(--ft-ease);
}

a:hover {
    color: var(--ft-accent-hover);
}

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

.ft-main {
    flex: 1;
    width: min(100% - 32px, var(--ft-max));
    margin: 0 auto;
    padding: 28px 0 48px;
}

.ft-main--narrow {
    width: min(100% - 32px, var(--ft-max-narrow));
}

.ft-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: var(--ft-header);
    color: #fff;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04);
}

.ft-header__inner {
    width: min(100% - 32px, var(--ft-max));
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 64px;
    padding: 8px 0;
}

.ft-header__logo img {
    display: block;
    height: 25px;
    width: auto;
}

.ft-header__toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    background: transparent;
    cursor: pointer;
    padding: 10px 9px;
    transition: background var(--ft-fast) var(--ft-ease), border-color var(--ft-fast) var(--ft-ease);
}

.ft-header__actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.ft-header__add {
    display: none;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    color: #fff;
    transition: background var(--ft-fast) var(--ft-ease), border-color var(--ft-fast) var(--ft-ease);
}

.ft-header__add:hover,
.ft-header__add.is-active {
    background: rgba(255, 255, 255, 0.08);
}

.ft-header__add-icon {
    position: relative;
    display: block;
    width: 14px;
    height: 14px;
}

.ft-header__add-icon::before,
.ft-header__add-icon::after {
    content: "";
    position: absolute;
    background: #fff;
    border-radius: 1px;
}

.ft-header__add-icon::before {
    left: 0;
    right: 0;
    top: 6px;
    height: 2px;
}

.ft-header__add-icon::after {
    top: 0;
    bottom: 0;
    left: 6px;
    width: 2px;
}

.ft-header__toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: #fff;
    border-radius: 1px;
}

.ft-header__links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.ft-header__links a {
    color: var(--ft-header-text);
    padding: 8px 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    transition: color var(--ft-fast) var(--ft-ease), background var(--ft-fast) var(--ft-ease);
}

.ft-header__links a:hover,
.ft-header__links a.is-active {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.ft-footer {
    margin-top: auto;
    padding: 20px 16px;
    text-align: center;
    color: var(--ft-muted);
    font-size: 13px;
}

.ft-pagehead {
    margin: 0 0 22px;
}

.ft-back {
    display: inline-flex;
    align-items: center;
    color: var(--ft-muted);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.ft-back:hover {
    color: var(--ft-ink);
    text-decoration: underline;
}

.ft-pagehead .ft-back {
    margin: 0 0 10px;
}

.ft-back--actions {
    justify-content: center;
    min-height: 44px;
}

.ft-pagehead h1 {
    margin: 0 0 6px;
    font-size: 28px;
    font-weight: 650;
    letter-spacing: -0.03em;
}

.ft-pagehead p,
.ft-pagehead__sub {
    margin: 0;
    color: var(--ft-muted);
}

.ft-toolbar {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
}

.ft-search {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.ft-search .ft-input {
    flex: 1 1 220px;
    max-width: 420px;
    min-height: 42px;
}

.ft-search .ft-btn {
    width: auto;
    min-height: 42px;
}

.ft-seg {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 4px;
    padding: 4px;
    background: var(--ft-surface);
    border: 1px solid var(--ft-line);
    border-radius: 12px;
}

.ft-seg a {
    color: var(--ft-muted);
    padding: 7px 12px;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 600;
    transition: color var(--ft-fast) var(--ft-ease), background var(--ft-fast) var(--ft-ease);
}

.ft-seg a:hover {
    color: var(--ft-ink);
    background: #f3f5f8;
}

.ft-seg a.is-active {
    color: var(--ft-ink);
    background: #e8edf2;
}

.ft-tabs {
    display: flex;
    align-items: stretch;
    gap: 4px;
    overflow-x: auto;
    overflow-y: hidden;
    touch-action: pan-x;
    overscroll-behavior-x: contain;
    overscroll-behavior-y: none;
    -webkit-overflow-scrolling: touch;
    border-bottom: 1px solid var(--ft-line);
    scrollbar-width: none;
}

.ft-tabs::-webkit-scrollbar {
    display: none;
}

.ft-tabs a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    flex: 0 0 auto;
    padding: 10px 12px 12px;
    color: var(--ft-muted);
    font-size: 14px;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
    transition: color var(--ft-fast) var(--ft-ease), border-color var(--ft-med) var(--ft-ease);
}

.ft-tabs a:hover {
    color: var(--ft-ink);
}

.ft-tabs a.is-active {
    color: var(--ft-ink);
    border-bottom-color: var(--ft-accent);
}

.ft-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.ft-dot--wait {
    background: #d8a13a;
}

.ft-dot--ok {
    background: var(--ft-accent);
}

.ft-dot--danger {
    background: var(--ft-danger);
}

.ft-dot--muted {
    background: #c5ccd6;
}

.ft-card {
    background: var(--ft-surface);
    border: 1px solid var(--ft-line);
    border-radius: var(--ft-radius);
    box-shadow: var(--ft-shadow);
    padding: 24px;
}

.ft-alert {
    padding: 14px 16px;
    border-radius: 12px;
    margin: 0 0 16px;
}

.ft-alert ul {
    margin: 0;
    padding-left: 1.1em;
}

.ft-alert a,
.ft-alert__link {
    color: inherit;
    font-weight: 600;
    text-decoration: underline;
}

.ft-alert--danger {
    background: var(--ft-danger-bg);
    color: var(--ft-danger);
}

.ft-alert--ok {
    background: var(--ft-ok-bg);
    color: var(--ft-ok);
}

.ft-alert--warn {
    background: var(--ft-warn-bg);
    color: var(--ft-warn);
}

.ft-alert--info {
    background: #eaf2fb;
    color: #1d4f8c;
}

.ft-banner {
    padding: 14px 16px;
    border-radius: 12px;
    margin: 0 0 18px;
}

.ft-banner--wait {
    background: var(--ft-warn-bg);
    color: var(--ft-warn);
}

.ft-banner--ok {
    background: var(--ft-ok-bg);
    color: var(--ft-ok);
}

.ft-banner--danger {
    background: var(--ft-danger-bg);
    color: var(--ft-danger);
}

.ft-banner p {
    margin: 0 0 4px;
}

.ft-banner p:last-child {
    margin-bottom: 0;
}

.ft-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.ft-field .ft-label,
.ft-field label {
    font-size: 13px;
    font-weight: 600;
    color: var(--ft-muted);
}

.ft-input,
input.ft-input,
input.form-text-input {
    width: 100%;
    padding: 11px 12px;
    border: 1px solid var(--ft-line);
    border-radius: 10px;
    background: #fff;
    color: var(--ft-ink);
    font: inherit;
    transition: border-color var(--ft-fast) var(--ft-ease), box-shadow var(--ft-fast) var(--ft-ease), background var(--ft-fast) var(--ft-ease);
}

.ft-input:focus,
input.ft-input:focus,
input.form-text-input:focus {
    outline: none;
    border-color: var(--ft-accent);
    box-shadow: 0 0 0 3px rgba(31, 122, 108, 0.16);
}

.ft-input.is-readonly,
.ft-input.pointer-events-none {
    pointer-events: none;
    background: #eef1f4;
    color: #8a93a0;
    cursor: not-allowed;
}

.ft-input.is-readonly:focus,
.ft-input.pointer-events-none:focus {
    border-color: var(--ft-line);
    box-shadow: none;
}

.ft-ticket-form--locked .ft-input,
.ft-ticket-form--locked .ft-check {
    pointer-events: none;
    background: #eef1f4;
    color: #8a93a0;
    cursor: not-allowed;
}

.ft-ticket-form--locked .ft-check-row {
    cursor: default;
    color: #8a93a0;
}

.ft-auth {
    width: min(100%, 440px);
    margin-left: auto;
    margin-right: auto;
}

.ft-auth .ft-btn {
    width: 100%;
}

.ft-ticket-form {
    width: 100%;
}

.ft-ticket-form__grid {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 22px;
}

.ft-ticket-form__grid .ft-fieldset {
    margin-bottom: 0;
}

.ft-fields {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: start;
}

.ft-fields > .ft-field {
    margin-bottom: 0;
}

.ft-fieldset > .ft-help {
    display: block;
    margin: 8px 0 0;
    line-height: 1.4;
}

.ft-ticket-form .ft-actions .ft-btn {
    width: 100%;
}

.ft-help {
    color: var(--ft-muted);
    font-size: 12px;
}

.ft-check {
    width: 18px;
    height: 18px;
    accent-color: var(--ft-accent);
}

.ft-check-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    color: var(--ft-ink);
    cursor: pointer;
}

.ft-fieldset {
    margin: 0 0 22px;
}

.ft-fieldset > .ft-field:last-child {
    margin-bottom: 0;
}

.ft-fieldset__title {
    margin: 0 0 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--ft-muted);
}

.ft-suggest {
    position: relative;
}

.ft-suggest__list {
    position: absolute;
    z-index: 20;
    left: 0;
    right: 0;
    top: calc(100% + 4px);
    margin: 0;
    padding: 6px;
    list-style: none;
    background: #fff;
    border: 1px solid var(--ft-line);
    border-radius: 10px;
    box-shadow: var(--ft-shadow);
    max-height: 240px;
    overflow-y: auto;
}

.ft-suggest__item {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 8px 10px;
    border-radius: 8px;
    cursor: pointer;
}

.ft-suggest__item.is-active,
.ft-suggest__item:hover {
    background: var(--ft-accent-soft);
}

.ft-suggest__plate {
    font-weight: 700;
    letter-spacing: 0.04em;
}

.ft-suggest__meta {
    font-size: 12px;
    color: var(--ft-muted);
}

.ft-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
}

.ft-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 16px;
    border-radius: 11px;
    border: 1px solid transparent;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: background var(--ft-fast) var(--ft-ease), color var(--ft-fast) var(--ft-ease), border-color var(--ft-fast) var(--ft-ease), transform var(--ft-fast) var(--ft-ease);
}

.ft-btn--primary {
    background: var(--ft-accent);
    color: #fff;
}

.ft-btn--primary:hover {
    background: var(--ft-accent-hover);
    color: #fff;
    transform: translateY(-1px);
}

.ft-btn--ghost {
    background: #fff;
    color: var(--ft-ink);
    border-color: var(--ft-line);
}

.ft-btn--ghost:hover {
    background: #f3f5f8;
    color: var(--ft-ink);
}

.ft-btn--danger {
    background: #fff;
    color: var(--ft-danger);
    border-color: #f0b4ae;
}

.ft-btn--danger:hover {
    background: var(--ft-danger-bg);
    color: var(--ft-danger);
}

.ft-btn--link {
    min-height: 0;
    padding: 4px 8px;
    border: 0;
    background: none;
    color: var(--ft-accent);
    font-size: 13px;
    font-weight: 600;
}

.ft-btn--link:hover {
    color: var(--ft-accent-hover);
    background: var(--ft-accent-soft);
}

.ft-empty {
    text-align: center;
    padding: 36px 16px;
    color: var(--ft-muted);
}

.ft-table-wrap {
    display: none;
    background: var(--ft-surface);
    border: 1px solid var(--ft-line);
    border-radius: var(--ft-radius);
    box-shadow: var(--ft-shadow);
    overflow: hidden;
}

.ft-table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
}

.ft-col-idx { width: 6%; }
.ft-col-plate { width: 13%; }
.ft-col-status { width: 15%; }
.ft-col-driver { width: 21%; }
.ft-col-car { width: 16%; }
.ft-col-dates { width: 16%; }
.ft-col-actions { width: 13%; }

.ft-table th {
    text-align: left;
    font-size: 12px;
    font-weight: 650;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--ft-muted);
    background: #f7f8fa;
    padding: 12px 14px;
    border-bottom: 1px solid var(--ft-line);
}

.ft-table td {
    padding: 14px;
    border-bottom: 1px solid #eef1f4;
    font-size: 14px;
    overflow: hidden;
    vertical-align: middle;
    transition: background var(--ft-fast) var(--ft-ease);
}

.ft-table__dates {
    white-space: nowrap;
}

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

.ft-table tbody tr.ft-table__row {
    cursor: pointer;
}

.ft-table tbody tr.ft-table__row:hover td {
    background: #eef6f4;
}

.ft-plate {
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--ft-accent);
    text-decoration: none;
    transition: color var(--ft-fast) var(--ft-ease);
}

.ft-plate:hover {
    color: var(--ft-accent-hover);
}

.ft-badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 8px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 650;
    white-space: nowrap;
}

.ft-badge--wait {
    background: var(--ft-warn-bg);
    color: var(--ft-warn);
}

.ft-badge--ok {
    background: var(--ft-ok-bg);
    color: var(--ft-ok);
}

.ft-badge--danger {
    background: var(--ft-danger-bg);
    color: var(--ft-danger);
}

.ft-badge--muted {
    background: #eef1f4;
    color: var(--ft-muted);
}

.ft-type {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 3px 9px 3px 7px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    vertical-align: middle;
}

.ft-type::before {
    content: "";
    width: 7px;
    height: 7px;
    flex-shrink: 0;
}

.ft-type--perm {
    background: var(--ft-accent-soft);
    color: var(--ft-accent);
}

.ft-type--perm::before {
    background: var(--ft-accent);
    border-radius: 2px;
}

.ft-type--temp {
    background: var(--ft-warn-bg);
    color: var(--ft-warn);
}

.ft-type--temp::before {
    border: 1.5px solid var(--ft-warn);
    border-radius: 50%;
    background: transparent;
}

.ft-car {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}

.ft-row-actions {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 4px;
    position: relative;
    z-index: 1;
}

.ft-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ft-ticket {
    display: block;
    background: var(--ft-surface);
    border: 1px solid var(--ft-line);
    border-radius: var(--ft-radius);
    box-shadow: var(--ft-shadow);
    overflow: hidden;
    transition: box-shadow var(--ft-med) var(--ft-ease), transform var(--ft-med) var(--ft-ease);
}

.ft-ticket__body {
    display: block;
    padding: 16px 16px 14px 18px;
    color: inherit;
    border-left: 4px solid #c5ccd6;
}

.ft-ticket--wait .ft-ticket__body {
    border-left-color: #d8a13a;
}

.ft-ticket--ok .ft-ticket__body {
    border-left-color: var(--ft-accent);
}

.ft-ticket--danger .ft-ticket__body {
    border-left-color: var(--ft-danger);
}

.ft-ticket--muted .ft-ticket__body {
    border-left-color: #c5ccd6;
    border-left-style: dashed;
}

.ft-ticket__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
}

.ft-ticket__plate {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--ft-ink);
    margin-bottom: 6px;
}

.ft-ticket__meta {
    margin: 0;
    color: var(--ft-muted);
    font-size: 14px;
}

.ft-ticket__meta b {
    color: var(--ft-ink);
    font-weight: 650;
}

.ft-ticket__actions {
    display: flex;
    gap: 8px;
    padding: 0 16px 16px;
}

.ft-ticket__actions .ft-btn {
    flex: 1;
}

.ft-pager {
    margin-top: 22px;
}

.ft-pager__count {
    margin: 0 0 10px;
    text-align: center;
    color: var(--ft-muted);
    font-size: 13px;
}

.ft-pager__mobile {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ft-pager__mobile .ft-btn {
    flex: 1;
}

.ft-pager__status {
    min-width: 76px;
    text-align: center;
    font-size: 14px;
    font-weight: 650;
}

.ft-pager__desktop {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.ft-pager__num,
.ft-pager__ellipsis {
    min-width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: var(--ft-ink);
    font-weight: 600;
    transition: background var(--ft-fast) var(--ft-ease), color var(--ft-fast) var(--ft-ease);
}

.ft-pager__num:hover {
    background: var(--ft-accent-soft);
    color: var(--ft-accent);
}

.ft-pager__num.is-current {
    background: var(--ft-accent);
    color: #fff;
}

.ft-pager__num.is-disabled {
    color: #b3bac4;
    pointer-events: none;
}

.ft-pager__ellipsis {
    color: var(--ft-muted);
}

.ft-error {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
}

.ft-error h1 {
    margin: 0;
    letter-spacing: -0.03em;
}

.ft-error img {
    margin: 16px 0;
    border-radius: 12px;
}

.ft-error p {
    color: var(--ft-muted);
}

.ft-error .ft-btn {
    width: 100%;
    margin-top: 8px;
}

@media (max-width: 719px) {
    .ft-header__inner {
        align-content: center;
    }

    .ft-header__toggle {
        display: block;
        flex-shrink: 0;
    }

    .ft-header__add {
        display: inline-flex;
    }

    .ft-header__logo {
        display: flex;
        align-items: center;
        height: 42px;
        min-width: 0;
        flex: 1;
    }

    .ft-header__links {
        display: flex;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        pointer-events: none;
        padding-bottom: 0;
        transition: max-height var(--ft-med) var(--ft-ease), opacity var(--ft-fast) var(--ft-ease), padding var(--ft-fast) var(--ft-ease);
    }

    .ft-header.open .ft-header__links {
        max-height: 280px;
        opacity: 1;
        pointer-events: auto;
        padding-bottom: 8px;
    }
}

@media (min-width: 720px) {
    .ft-header__links {
        display: flex !important;
        width: auto;
        flex-direction: row;
        max-height: none;
        opacity: 1;
        overflow: visible;
        pointer-events: auto;
    }

    .ft-table-wrap {
        display: block;
    }

    .ft-cards {
        display: none;
    }

    .ft-pager__mobile {
        display: none;
    }

    .ft-pager__desktop {
        display: flex;
    }

    .ft-ticket-form {
        padding: 28px 32px 32px;
    }

    .ft-ticket-form__grid {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        grid-template-rows: auto auto;
        column-gap: 40px;
        row-gap: 22px;
        align-items: stretch;
    }

    .ft-ticket-form__driver {
        grid-column: 2;
        grid-row: 1 / span 2;
        padding-left: 40px;
        border-left: 1px solid var(--ft-line);
    }

    .ft-fields {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    }

    .ft-ticket-form .ft-actions {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        gap: 10px;
        margin-top: 8px;
        padding-top: 8px;
        border-top: 1px solid var(--ft-line);
    }

    .ft-ticket-form .ft-actions .ft-btn {
        width: auto;
        min-width: 148px;
    }

    .ft-ticket-form .ft-actions .ft-btn--danger {
        margin-left: auto;
    }

    .ft-ticket-form .ft-actions .ft-back--actions {
        flex-basis: 100%;
        justify-content: flex-start;
        min-height: auto;
        margin-top: 2px;
    }
}

@media (max-width: 719px) {
    .ft-pagehead h1 {
        font-size: 24px;
    }

    .ft-main {
        width: min(100% - 24px, var(--ft-max));
        padding-top: 20px;
    }
}

@media (hover: hover) {
    .ft-ticket:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(22, 27, 34, 0.1);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }
}
