﻿html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Outfit", Arial, sans-serif;
    color: #18202c;
    background: #f4f7fb;
}

a {
    color: inherit;
}

.yme-nav {
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid rgba(15, 96, 62, .12);
    box-shadow: 0 10px 28px rgba(15, 45, 35, .08);
    backdrop-filter: blur(12px);
}

.navbar-brand {
    gap: .65rem;
    color: #102034;
    font-weight: 600;
}

.brand-logo {
    width: 64px;
    height: 44px;
    object-fit: contain;
}

.nav-link {
    color: #374151;
    font-weight: 500;
}

.nav-link:hover {
    color: #1e6f50;
}

.track-box {
    min-width: 230px;
}

.mobile-nav-actions,
.mobile-track-row {
    display: none;
}

.service-route-link {
    position: relative;
    width: 38px;
    height: 38px;
    display: inline-grid;
    place-items: center;
    flex: 0 0 38px;
    border: 1px solid #dbeafe;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 8px 18px rgba(255, 122, 18, .18);
    overflow: hidden;
}

.service-route-link:hover {
    border-color: #ffb46b;
    box-shadow: 0 10px 22px rgba(255, 122, 18, .26);
}

.service-route-link img {
    width: 31px;
    height: 31px;
    object-fit: contain;
    animation: servicePinBlink 1.5s ease-in-out infinite;
}

@keyframes servicePinBlink {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.09);
        opacity: .62;
    }
}

.track-box input {
    border-radius: 8px 0 0 8px;
    border: 1px solid #d9e2ec;
    border-right: 0;
}

.track-box button {
    min-width: 42px;
    border-radius: 0 8px 8px 0;
    background: #ff7a12;
    color: #fff;
}

.multi-track-top-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .35rem;
    min-height: 36px;
    padding: .42rem .7rem;
    border-radius: 8px;
    color: #0f5132;
    background: #eaf8f0;
    border: 1px solid #c7edd6;
    text-decoration: none;
    font-size: .84rem;
    font-weight: 500;
    white-space: nowrap;
}

.multi-track-top-btn:hover {
    color: #fff;
    background: #0f8b5f;
    border-color: #0f8b5f;
}

.hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    background:
        linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px),
        radial-gradient(circle at 72% 22%, rgba(255, 122, 18, .3), transparent 26%),
        radial-gradient(circle at 20% 72%, rgba(16, 118, 76, .36), transparent 30%),
        linear-gradient(120deg, #071a19 0%, #0f3f31 48%, #123827 100%);
    background-size: 34px 34px, 34px 34px, auto, auto, auto;
}

.hero-inner {
    min-height: 680px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 0 4.5rem;
}

.hero-content {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
}

.hero h1,
.section-title {
    letter-spacing: 0;
}

.hero-badge,
.roadmap-pill {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .45rem .7rem;
    border-radius: 999px;
    background: rgba(255, 122, 18, .14);
    border: 1px solid rgba(255, 122, 18, .36);
    color: #ffe7d3;
    font-weight: 500;
    font-size: .78rem;
}

.hero h1 {
    max-width: 900px;
    margin: 1rem auto;
    font-size: clamp(2rem, 4.5vw, 4.2rem);
    line-height: 1.09;
    font-weight: 600;
}

.hero-copy {
    max-width: 760px;
    color: rgba(255, 255, 255, .82);
    font-size: 1rem;
    line-height: 1.75;
}

.hero-symbols {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: .7rem;
    margin-top: 1.25rem;
}

.hero-symbols span {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    min-height: 42px;
    padding: .55rem .8rem;
    border-radius: 8px;
    color: rgba(255, 255, 255, .88);
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    font-weight: 500;
    font-size: .9rem;
}

.hero-symbols i {
    color: #ff8a25;
}

.hero-actions,
.quick-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .8rem;
}

.btn-yme {
    --bs-btn-bg: #ff7a12;
    --bs-btn-border-color: #ff7a12;
    --bs-btn-hover-bg: #e86505;
    --bs-btn-hover-border-color: #e86505;
    --bs-btn-color: #fff;
    --bs-btn-hover-color: #fff;
    border-radius: 8px;
    font-weight: 500;
    padding: .8rem 1.1rem;
}

.btn-yme-outline {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 8px;
    font-weight: 500;
    padding: .8rem 1.1rem;
}

.btn-yme-outline:hover {
    color: #102034;
    background: #fff;
}

.track-tabs {
    gap: .5rem;
}

.track-tabs .nav-link {
    min-width: 110px;
    border: 1px solid #dbe5ef;
    border-radius: 8px;
    color: #475569;
    background: #fff;
}

.track-tabs .nav-link.active {
    color: #fff;
    background: #0f8b5f;
    border-color: #0f8b5f;
}

.multi-track-input {
    min-height: 150px;
    resize: vertical;
    border-radius: 8px;
}

.multi-track-shell {
    max-width: 980px;
    margin: 0 auto;
}

.multi-track-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.multi-track-list {
    border: 1px solid #dbe5ef;
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 16px 38px rgba(24, 32, 44, .1);
}

.multi-track-row {
    display: grid;
    grid-template-columns: 40px minmax(180px, 1.1fr) minmax(140px, .9fr) minmax(110px, .55fr) 28px;
    gap: .75rem;
    align-items: center;
    min-height: 64px;
    padding: .7rem .85rem;
    color: #102034;
    text-decoration: none;
    border-bottom: 1px solid #edf2f7;
}

.multi-track-row:last-child {
    border-bottom: 0;
}

.multi-track-row:hover {
    background: #f8fbff;
}

.multi-track-row.not-found {
    background: #fff8f8;
}

.multi-track-icon {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    color: #0f8b5f;
    background: #eaf8f0;
}

.multi-track-row.not-found .multi-track-icon {
    color: #b91c1c;
    background: #fee2e2;
}

.multi-track-awb strong,
.multi-track-awb small {
    display: block;
}

.multi-track-awb strong {
    font-size: .94rem;
    font-weight: 600;
}

.multi-track-awb small,
.multi-track-date {
    color: #64748b;
    font-size: .8rem;
}

.multi-track-status {
    color: #0f5132;
    font-size: .86rem;
    font-weight: 500;
}

.multi-track-row.not-found .multi-track-status {
    color: #b91c1c;
}

.multi-track-open {
    color: #94a3b8;
    text-align: right;
}

.flow-visual {
    width: min(100%, 980px);
    margin: 2.2rem auto 0;
    padding: 1.2rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .22);
}

.flow-card-main {
    display: grid;
    gap: .35rem;
    padding: 1rem;
    border-radius: 8px;
    color: #123827;
    background: linear-gradient(135deg, #f7fbf8, #fff4ea);
    border: 1px solid #e5eee9;
}

.flow-tag {
    width: fit-content;
    padding: .28rem .55rem;
    border-radius: 999px;
    color: #0f6a43;
    background: #eaf8f0;
    font-size: .78rem;
    font-weight: 500;
}

.flow-card-main h2 {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 600;
}

.flow-card-main p {
    margin: 0;
    color: #5d6b66;
}

.flow-path {
    display: grid;
    grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
    align-items: center;
    gap: .85rem;
    margin: 1.15rem 0;
}

.flow-step {
    display: grid;
    justify-items: center;
    gap: .45rem;
    min-width: 86px;
    color: #123827;
}

.flow-step i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 8px;
    color: #ff7a12;
    background: #fff3e8;
    border: 1px solid #ffd8b5;
    font-size: 1.35rem;
}

.flow-step span {
    font-size: .9rem;
    font-weight: 500;
}

.flow-connector {
    min-width: 32px;
    height: 2px;
    background: linear-gradient(90deg, #ff7a12, #1e8a59);
}

.flow-mini-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .75rem;
}

.flow-mini-grid div {
    display: flex;
    align-items: center;
    gap: .65rem;
    min-height: 58px;
    padding: .75rem;
    border-radius: 8px;
    color: #31443d;
    background: #f8faf9;
    border: 1px solid #e5eee9;
    font-size: .9rem;
}

.flow-mini-grid i {
    color: #0f6a43;
    font-size: 1.1rem;
}

.shipment-card {
    border: 1px solid #e4eaf1;
    border-radius: 8px;
    padding: 1rem;
    background: #fff;
}

.route-line {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1rem;
    align-items: center;
    margin: 1rem 0;
}

.route-line span {
    height: 2px;
    background: #c7d2df;
}

.status-chip {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    border-radius: 999px;
    background: #e9fbf2;
    color: #12603e;
    padding: .35rem .65rem;
    font-weight: 500;
    font-size: .82rem;
}

.section {
    padding: 5rem 0;
}

.section-alt {
    background: #fff;
}

.section-title {
    color: #102034;
    font-weight: 600;
    font-size: clamp(1.8rem, 3vw, 2.65rem);
}

.section-lead {
    max-width: 820px;
    color: #64748b;
    line-height: 1.8;
}

.feature-card,
.service-card,
.platform-card,
.contact-card {
    height: 100%;
    border: 1px solid #e4eaf1;
    border-radius: 8px;
    background: #fff;
    padding: 1.4rem;
    box-shadow: 0 12px 30px rgba(24, 32, 44, .06);
}

.feature-card i,
.service-card i,
.platform-card i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 8px;
    color: #0f6a43;
    background: #eaf8f0;
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.feature-card h3,
.service-card h3,
.platform-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
}

.feature-card p,
.service-card p,
.platform-card p {
    color: #64748b;
    line-height: 1.65;
    margin-bottom: 0;
}

.integration-band {
    border-radius: 8px;
    padding: 2rem;
    color: #fff;
    background:
        linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px),
        linear-gradient(135deg, #102034, #0d5b42);
    background-size: 32px 32px, 32px 32px, auto;
}

.integration-list {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 1rem;
}

.integration-list span {
    border-radius: 999px;
    padding: .55rem .8rem;
    background: rgba(255, 255, 255, .13);
    border: 1px solid rgba(255, 255, 255, .18);
    font-weight: 500;
}

.timeline {
    display: grid;
    gap: 1rem;
}

.timeline-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
}

.timeline-item span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    color: #fff;
    background: #0f6a43;
    font-weight: 500;
}

.site-footer {
    background: #0b2b25;
    color: #d7dee8;
    padding: 2rem 0;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-weight: 500;
}

.footer-links a {
    color: #d7dee8;
    text-decoration: none;
}

.footer-brand {
    display: block;
    margin-bottom: .25rem;
    font-weight: 500;
}

@media (max-width: 991.98px) {
    .yme-nav .container {
        display: grid;
        grid-template-columns: auto 1fr auto auto;
        gap: .5rem;
        align-items: center;
    }

    .navbar-brand {
        grid-column: 1 / 3;
    }

    .mobile-nav-actions {
        display: flex;
        grid-column: 3;
        justify-content: flex-end;
    }

    .navbar-toggler {
        grid-column: 4;
        justify-self: end;
    }

    .mobile-track-row {
        display: grid;
        grid-column: 1 / -1;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: .5rem;
        width: 100%;
        padding-top: .45rem;
    }

    .desktop-service-link,
    .desktop-track-box,
    .desktop-multi-track-btn {
        display: none;
    }

    .mobile-track-row .track-box {
        width: 100%;
        min-width: 0;
        margin: 0;
    }

    .mobile-track-row .multi-track-top-btn {
        min-height: 34px;
        padding: .35rem .58rem;
        font-size: .78rem;
    }

    .navbar-collapse {
        grid-column: 1 / -1;
    }

    .hero-inner {
        min-height: auto;
        padding: 3.2rem 0;
    }

    .flow-path {
        gap: .55rem;
    }

    .flow-step {
        min-width: 72px;
    }

    .flow-mini-grid {
        grid-template-columns: 1fr;
    }

    .navbar-collapse .track-box {
        width: 100%;
        margin-top: .75rem;
    }
}

@media (max-width: 575.98px) {
    body {
        background: #fff;
    }

    .brand-logo {
        width: 52px;
        height: 36px;
    }

    .navbar-brand span {
        font-size: .95rem;
    }

    .hero {
        background:
            radial-gradient(circle at 82% 12%, rgba(255, 122, 18, .26), transparent 28%),
            linear-gradient(145deg, #071a19 0%, #0f3f31 58%, #123827 100%);
    }

    .hero-inner {
        padding: 2.25rem 0 2.5rem;
    }

    .hero-content {
        text-align: left;
    }

    .hero h1 {
        max-width: 330px;
        margin: .8rem 0;
        font-size: 1.58rem;
        line-height: 1.18;
    }

    .hero-copy {
        max-width: 340px;
        margin-left: 0 !important;
        font-size: .88rem;
        line-height: 1.6;
    }

    .hero-badge,
    .roadmap-pill {
        font-size: .7rem;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: .6rem;
    }

    .hero-actions .btn {
        width: 100%;
        padding: .68rem .85rem;
        font-size: .88rem;
    }

    .hero-symbols {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: .5rem;
    }

    .hero-symbols span {
        justify-content: flex-start;
        min-height: 38px;
        padding: .45rem .55rem;
        font-size: .76rem;
    }

    .flow-visual {
        margin-top: 1.45rem;
        padding: .7rem;
        box-shadow: 0 16px 40px rgba(0, 0, 0, .18);
    }

    .section {
        padding: 2.8rem 0;
    }

    .route-line {
        grid-template-columns: 1fr;
    }

    .route-line span {
        display: none;
    }

    .flow-path {
        grid-template-columns: 1fr 1fr;
        gap: .55rem;
    }

    .flow-connector {
        display: none;
    }

    .flow-step {
        min-width: 0;
        min-height: 92px;
        padding: .7rem .45rem;
        border-radius: 8px;
        background: #fff;
        border: 1px solid #e5eee9;
    }

    .flow-step i {
        width: 42px;
        height: 42px;
        font-size: 1.08rem;
    }

    .flow-step span {
        font-size: .78rem;
    }

    .flow-card-main h2 {
        font-size: 1rem;
    }

    .flow-card-main p,
    .flow-mini-grid div {
        font-size: .78rem;
    }

    .flow-card-main {
        padding: .8rem;
    }

    .flow-tag {
        font-size: .68rem;
    }

    .flow-mini-grid {
        gap: .5rem;
    }

    .flow-mini-grid div {
        min-height: 48px;
        padding: .58rem;
    }

    .section-title {
        font-size: 1.45rem;
    }

    .section-lead {
        font-size: .9rem;
        line-height: 1.62;
    }

    .feature-card,
    .service-card,
    .platform-card,
    .contact-card {
        padding: 1rem;
    }

    .feature-card i,
    .service-card i,
    .platform-card i {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        margin-bottom: .75rem;
    }

    .feature-card h3,
    .service-card h3,
    .platform-card h3 {
        font-size: .96rem;
    }

    .feature-card p,
    .service-card p,
    .platform-card p {
        font-size: .84rem;
        line-height: 1.55;
    }
}

.service-check-hero {
    min-height: calc(100vh - 94px);
    padding: 4.2rem 0;
    background:
        linear-gradient(rgba(255, 255, 255, .55) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .55) 1px, transparent 1px),
        linear-gradient(135deg, #f6fbf8 0%, #eef6ff 48%, #fff8f0 100%);
    background-size: 34px 34px, 34px 34px, auto;
}

.service-check-shell {
    display: grid;
    grid-template-columns: minmax(280px, .75fr) minmax(0, 1.25fr);
    gap: 1.4rem;
    align-items: start;
}

.service-check-copy {
    position: sticky;
    top: 100px;
    padding-top: .4rem;
}

.service-kicker {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .42rem .7rem;
    border-radius: 999px;
    color: #11623f;
    background: #eaf8f0;
    border: 1px solid #cbeed9;
    font-weight: 500;
    font-size: .82rem;
}

.service-check-copy h1 {
    max-width: 460px;
    margin: 1rem 0 .7rem;
    color: #102034;
    font-size: clamp(2rem, 4vw, 3.6rem);
    line-height: 1.08;
    font-weight: 600;
}

.service-check-copy p {
    max-width: 460px;
    color: #64748b;
    line-height: 1.7;
}

.service-check-card {
    border: 1px solid #dbe5ef;
    border-radius: 8px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 20px 48px rgba(24, 32, 44, .12);
    padding: 1rem;
}

.service-form {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: .62rem .85rem;
    align-items: center;
}

.service-form label {
    color: #475569;
    font-size: .84rem;
    font-weight: 500;
}

.service-form .form-control,
.service-form .form-select {
    min-height: 38px;
    border-color: #d7e0ea;
    border-radius: 8px;
    font-size: .92rem;
}

.service-two {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(130px, .42fr);
    gap: .65rem;
}

.service-check-btn {
    width: fit-content;
    min-height: 38px;
    padding: .55rem .95rem;
}

.service-message {
    margin-top: .8rem;
    padding: .65rem .8rem;
    border-radius: 8px;
    color: #991b1b;
    background: #fef2f2;
    border: 1px solid #fecaca;
    font-size: .9rem;
}

.service-result {
    margin-top: 1rem;
    border: 1px solid #d9e2ec;
    border-top: 3px solid #16a34a;
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
}

.service-result.warn {
    border-top-color: #d97706;
}

.service-result.no {
    border-top-color: #dc2626;
}

.service-result-head {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: .75rem;
    align-items: center;
    padding: .75rem .85rem;
    border-bottom: 1px solid #e7edf3;
    background: #fbfcfe;
}

.service-state-icon {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #15803d;
    background: #dcfce7;
}

.service-result.warn .service-state-icon {
    color: #b45309;
    background: #fef3c7;
}

.service-result.no .service-state-icon {
    color: #b91c1c;
    background: #fee2e2;
}

.service-result-head h2 {
    margin: 0;
    color: #0f172a;
    font-size: 1rem;
    font-weight: 500;
}

.service-result-head p {
    margin: .1rem 0 0;
    color: #64748b;
    font-size: .82rem;
}

.service-badges {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
    justify-content: flex-end;
}

.service-badges span {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: .25rem .55rem;
    border-radius: 999px;
    border: 1px solid #cbd5e1;
    color: #475569;
    background: #fff;
    font-size: .78rem;
}

.service-badges .ok {
    border-color: #bbf7d0;
    color: #15803d;
}

.service-badges .warn {
    border-color: #fed7aa;
    color: #b45309;
}

.service-badges .bad {
    border-color: #fecaca;
    color: #b91c1c;
}

.service-result-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0 .75rem;
    padding: .35rem .85rem .75rem;
}

.service-detail {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    grid-template-rows: auto auto;
    gap: .18rem .48rem;
    align-items: start;
    min-height: 58px;
    padding: .55rem .2rem;
    border-bottom: 1px solid #eef2f7;
}

.service-detail.wide {
    grid-column: 1 / -1;
    align-items: start;
}

.service-detail i {
    grid-row: 1 / span 2;
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    border-radius: 6px;
    color: #2563eb;
    background: #eef6ff;
    font-size: .78rem;
}

.service-detail.ok i {
    color: #15803d;
    background: #dcfce7;
}

.service-detail.warn i {
    color: #b45309;
    background: #fef3c7;
}

.service-detail span {
    grid-column: 2;
    display: block;
    color: #64748b;
    font-size: .74rem;
    line-height: 1.1;
    white-space: nowrap;
}

.service-detail strong {
    grid-column: 2;
    display: block;
    color: #0f172a;
    font-size: .83rem;
    font-weight: 400;
    line-height: 1.25;
    overflow-wrap: anywhere;
}

.service-map {
    grid-column: 2;
    display: flex;
    flex-wrap: wrap;
    gap: .38rem;
    margin-top: .2rem;
}

.service-map-chip {
    display: inline-flex;
    align-items: center;
    min-height: 23px;
    padding: .24rem .52rem;
    border-radius: 999px;
    border: 1px solid #bbf7d0;
    color: #15803d;
    background: #f0fdf4;
    font-size: .78rem;
}

.service-map-chip.edl {
    border-color: #fca5a5;
    color: #b91c1c;
    background: #fef2f2;
}

@media (max-width: 991.98px) {
    .service-check-shell {
        grid-template-columns: 1fr;
    }

    .service-check-copy {
        position: static;
    }
}

@media (max-width: 575.98px) {
    .service-check-hero {
        padding: 2rem 0;
    }

    .service-form,
    .service-two,
    .service-result-head,
    .service-result-grid {
        grid-template-columns: 1fr;
    }

    .service-badges {
        justify-content: flex-start;
    }

    .multi-track-head,
    .multi-track-row {
        grid-template-columns: 1fr;
    }

    .multi-track-head {
        display: grid;
        align-items: start;
    }

    .multi-track-row {
        gap: .35rem;
        min-height: auto;
    }

    .multi-track-icon,
    .multi-track-open {
        display: none;
    }
}
