.shipment-container {
    background: #fff;
    padding: 22px 26px;
    margin-top: 20px !important;
    margin-bottom: 30px;
}
/* .tracking-container {
    max-width: 700px;
    margin: 0 auto;
    width: 100%;
} */
/* .shipment_search {
    display: flex;
    gap: 10px;
} */
.shipment_search .input_data {
    display: flex;
    gap: 10px;
    align-items: end;
    margin-top: 25px;
}
#shipment-activity {
    margin-top: 25px;
}
.shipment-container .heading {
    margin: 5px 0 15px !important;
}

.shipment-container .timeline {
    position: relative;
    list-style: none;
}
.shipment-container .timeline-item {
    border-left: 2px solid #c03426;
    padding: 3px 20px 40px 20px;
    position: relative;
    overflow: visible;
    margin-top: 0;
}
.shipment-container .timeline-item::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 11px;
    width: 10px;
    height: 10px;
    background-color: #c03426;
    border-radius: 50%;
}
.shipment-container .timeline-item .status {
    font-weight: 500;
}

.shipment_search .input_data input {
    padding: 15px 20px;
    border: solid 1px #ccc;
    border-radius: 4px;
    background: #fff;
    height: 50px;
}
.shipment_search .input_data select {
    padding: 15px 10px;
    border: solid 1px #ccc;
    border-radius: 4px;
    height: 50px;
}
#trackAnotherPackage,
.shipment_search button {
    padding: 15px 25px;
    border: solid 1px #c03426;
    background: #c03426;
    border-radius: 4px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 12px;
    cursor: pointer;
    position: relative;
    height: 50px;
}

.shipment_search .loader {
    border: 4px solid #f3f3f3;
    border-radius: 50%;
    border-top: 4px solid #c03426;
    width: 18px;
    height: 18px;
    -webkit-animation: spin 0.8s linear infinite;
    animation: spin 0.8s linear infinite;
    display: none;
}
.shipment_search #btnSubmit.loading .loader {
    display: block;
}
.shipment_search #btnSubmit.loading .text {
    opacity: 0;
}
.shipment_search #btnSubmit.loading {
    background: gray;
    border-color: gray;
}

/* Safari */
@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.loader-container {
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}