@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('default.css');


.card {
    font-size: 16px;
    position: relative;
    background-color: var(--white);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.07);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

.card:last-child {
    margin-bottom: 0;
}

.card-header {
    color: var(--white);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 16px 20px;
    background: var(--primery-color);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.card-header h5 {
    color: var(--white) !important;
    font-size: 20px !important;
    font-weight: 500 !important;
    line-height: 1.5 !important;
    margin: 0;
}

.card-body {
    padding: 20px;
}

.card a {
    text-decoration: none;
    color: var(--secondary-color) !important;
}

.card a:hover {
    color: var(--primery-color) !important;
    text-decoration: none;
}

.step-track {
    position: relative;
    background-color: #ddd;
    height: 7px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 80px;
    margin-top: 40px;
}

.step-track .step {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    width: 25%;
    margin-top: -18px;
    text-align: center;
    position: relative;
}

.step-track .step::before {
    height: 7px;
    position: absolute;
    content: "";
    width: 100%;
    left: 0;
    top: 18px;
}

.step-track .step.active:before {
    background: var(--primery-color);
}

.step-track .icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    padding: 10px;
    position: relative;
    border-radius: 100%;
    background: #ddd;
}

.step-track .step.active .icon {
    background: var(--primery-color);
    color: var(--white);
}

.step-track .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    filter: brightness(0);
}

.step-track .step.active .icon img {
    filter: brightness(0) invert(1);
}

.step-track .text {
    display: block;
    margin-top: 7px;
}

.step-track .step.active .text {
    color: #000;
}

.shipmentDetails-block {
    padding: 20px;
    background: #F9F4F2;
    border-radius: 10px;
    margin-bottom: 20px;
}

.shipmentDetails-block:last-child {
    margin-bottom: 0;
}

.shipmentDetails-block strong,
.shipmentDetails-block b {
    font-weight: 600;
}

.shipmentDetails-block strong {
    white-space: nowrap;
}

.text-center {
    text-align: center !important;
}

.text-danger {
    color: #ed1c24 !important;
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.card table {
    width: 100%;
    border-collapse: collapse;
    min-width: 500px;
}

.card th,
.card td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}

.card thead th {
    background-color: var(--primery-color);
    color: #FFF;
}

@media (max-width: 767px) {
    .card {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .card-header {
        padding: 14px 12px;
        gap: 8px;
    }

    .card-header h5 {
        font-size: 18px !important;
    }

    .card-body {
        padding: 16px 12px;
    }

    .step-track {
        margin-bottom: 60px;
        margin-top: 20px;
    }

    .shipmentDetails-block {
        padding: 12px;
        margin-bottom: 16px;
    }
}

@media (max-width: 600px) {
    .card table {
        display: table;
    }

    .card thead {
        display: table-header-group;
    }

    .card tbody {
        display: table-row-group;
    }

    .card th,
    .card td {
        display: table-cell;
    }

    .card tr {
        display: table-row;
    }
}