body {
    background-color: #f5f5f5 !important;
}

.section-header {
    padding-bottom: 30px !important;
}

.section-tracking {
    padding-top: 0 !important;
}

.tracking-row {
    display: flex;
    flex-direction: row;
    gap: 43px;
}

.tracking-col-1 {
    width: 542px;
}

.tracking-col-2 {
    width: calc(100% - 542px);
}

.tracking-search-container {
    display: flex;
    gap: 10px;
    flex-direction: row;
}

.tracking-textarea {
    flex: 1;
    padding: 15px 14px;
    border-radius: 5px;
    border: 1px solid #FFF;
    background: #FFF;
    display: flex;
    height: 50px;
    justify-content: space-between;
    align-items: center;
    outline: none;
    color: #333;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    resize: none;
}

.tracking-textarea::placeholder {
    opacity: 0.6;
}

.tracking-btn {
    display: flex;
    border-radius: 5px;
    height: 50px;
    padding: 17px 30px;
    border: 1px solid #E42313;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: #E42313;
    color: #FFF;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.tracking-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tracking-info-item {
    display: flex;
    padding: 28px 38px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;
    border-radius: 15px;
    background: #FFF;
}

.tracking-info-title {
    color: #2F2F30;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.tracking-info-text {
    color: #2F2F30;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.tracking-info-text a {
    color: #E42313;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.tracking-info-error {
    display: flex;
    flex-direction: row;
    gap: 10px;
    color: #E42313;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    align-items: center;
}

.mob-change-mode-1, .mob-change-mode-2 {
    color: #131313;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    opacity: 0.6;
    display: none;
}

.tracking-search-container.multi-track .mob-change-mode-1 {
    display: none;
}

.tracking-search-container.multi-track .mob-change-mode-2 {
    display: block;
}

.tracking-items-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tracking-item {
    border-radius: 15px;
    background: #FFF;
}

.tracking-item-header {
    display: flex;
    flex-direction: row;
    padding: 28px 38px 23px 38px;
    cursor: pointer;
}

.tracking-item-header > div {
    display: flex;
    flex-direction: row;
    gap: 25px;
    flex: 1;
}

.tracking-item-title {
    color: #2F2F30;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 24px */
    letter-spacing: -0.24px;
}

.tracking-item-last-status {
    color: #2F2F30;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    opacity: 0.7;
    flex: 1;
    transition: opacity 0.4s ease;
    max-height: 200px;
}

.tracking-item-not-found {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    opacity: 0.7;
    flex: 1;
    color: #E42313;
}

.tracking-item-arrow {
    transition: transform 0.4s ease;
    transform-origin: center;
    flex-shrink: 0;
}

.tracking-item-content {
    opacity: 0;
    max-height: 0;
    transition: opacity .4s ease-in-out, max-height .4s ease-in-out;
    overflow: hidden;
    pointer-events: none;
}

.tracking-item-row {
    padding: 0 38px 23px 38px;
}

.tracking-item.open .tracking-item-header img {
    transform: rotate(180deg);
}

.tracking-item.open .tracking-item-last-status {
    opacity: 0;
    pointer-events: none;
    max-height: 0;
}

.tracking-item.open .tracking-item-content {
    opacity: 1;
    max-height: 2500px;
    pointer-events: initial;
}

.tracking-item.open .tracking-item-header {
    padding-bottom: 8px;
}

.tracking-item.open:not(:has(.tracking-item-content)) .tracking-item-header {
    padding-bottom: 23px;
}

.tracking-timeline {
    position: relative;
    padding-top: 5px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 327px;
}

.tracking-timeline::before {
    content: '';
    position: absolute;
    left: 5px;
    top: 0;
    bottom: 0;
    width: 2px;
    opacity: 0.1;
    background: #1A1A1A;
}

.timeline-item {
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
}

.timeline-item .dot {
    width: 12px;
    height: 12px;
    background: #002E5A;
    border-radius: 50%;
    flex-shrink: 0;
}

.timeline-item .content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.timeline-item .title {
    color: #2F2F30;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.timeline-item .date {
    color: #2F2F30;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    opacity: 0.5;
}

.tracking-item-info {
    display: flex;
    padding: 22px 25px;
    flex-direction: column;
    border-radius: 15px;
    background: #F5F5F5;
    margin-top: 20px;
}

.tracking-item-info-title {
    color: #2F2F30;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 18px */
    letter-spacing: -0.18px;
    margin-bottom: 12px;
}

.tracking-item-info-table {
    color: #131313;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.tracking-item-info-table th,
.tracking-item-info-table td {
    color: #131313;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: left;
    vertical-align: top;
    padding-bottom: 5px;
}

.tracking-item-info-table th {
    opacity: 0.6;
    width: 132px;
}

.tracking-item-info-table td a {
    color: #131313;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    opacity: 0.6;
}

.tracking-item-info-table td a:hover {
    text-decoration: none;
}

.tracking-item-additional {
    display: flex;
    flex-direction: row;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.tracking-item-additional-item {
    display: flex;
    padding: 8px 12px;
    align-items: center;
    gap: 5px;
    border-radius: 10px;
    background: #F5F5F5;
    flex-wrap: wrap;
}

.tracking-item-additional-item > div {
    color: #2F2F30;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; /* 16px */
    letter-spacing: -0.16px;
}

.tracking-item-additional-item a {
    display: flex;
    flex-direction: row;
    gap: 5px;
    align-items: center;
    color: #002E5A;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; /* 16px */
    letter-spacing: -0.16px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

@media screen and (max-width: 991px) {
    .section-header {
        margin-top: 30px;
        padding-bottom: 26px !important;
    }

    .section-header .section-header-container {
        padding-right: 30px;
    }

    .tracking-row {
        flex-direction: column;
        gap: 25px;
    }

    .tracking-col-1 {
        width: auto;
    }

    .tracking-col-2 {
        width: auto;
    }

    .tracking-search-container {
        flex-direction: column;
        gap: 6px;
    }

    .tracking-info {
        gap: 10px;
    }

    .tracking-info-item {
        padding: 18px 15px;
    }

    .tracking-info-title {
        font-size: 16px;
    }

    .tracking-info-text {
        font-size: 15px;
    }

    .mob-change-mode-1 {
        display: block;
    }

    .tracking-textarea {
        flex: auto;
    }

    .tracking-item-header {
        padding: 15px;
    }

    .tracking-item-header > div {
        flex-direction: column;
        gap: 5px
    }

    .tracking-item-title {
        font-size: 18px;
    }

    .tracking-item-last-status {
        font-size: 16px;
    }

    .tracking-timeline {
        width: 100%;
    }

    .tracking-item-row {
        padding: 0 16px 16px 16px;
    }

    .tracking-item-info {
        padding: 22px 13px;
    }
}