.track-block tr,
.track-block td,
.track-block th {
    border: 1px solid #07318c;
    padding: 8px 10px;
    text-align: left;
    font-size: 13px;
    text-transform: capitalize;
    font-family: "Barlow", sans-serif;
}

/* .track-block th {
    color: #fff;
} */

.track-block td {
    color: #000000;
}

.track-block table {
    width: 100%;
    transition: 0.5s ease-in-out;
}

.track-block thead tr {
    background: #07318c;
    color: #fff;
    font-weight: bold;
}

.track-block h3 {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: bold;
    color: #000000;
    text-transform: capitalize;
    font-family: "Barlow", sans-serif;
}

.track-block h5 {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 500;
    color: #000000;
    font-family: "Barlow", sans-serif;
}

.track-block .tracking-info {
    margin-bottom: 15px;
}

.tracking-data .invalid-record {
    padding: 0.5em 1em;
    background-color: #07318c;
    margin-top: 2px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.tracking-data .invalid-record h5 {
    font-size: 14px;
    color: #ffffff;
    margin: unset;
    font-weight: 600;
    line-height: 38px;
    font-family: "Barlow", sans-serif;
}

.accordion {
    margin-top: 30px;
    background: #ffffff;
}

.accordion .accordion-header {
    padding: 1em;
    background-color: #07318c;
    margin-top: 2px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.accordion .accordion-header>* {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 14px;
}

.accordion .accordion-header.active {
    background-color: #000;
    color: #fff;
}

.accordion .accordion-header h2 {
    color: #fff;
    font-weight: normal;
    text-transform: capitalize;
    font-family: "Barlow", sans-serif;
}

.accordion .accordion-header h2:nth-child(2) {
    margin-left: auto;
    margin-right: 15px;
}

.accordion .accordion-header .fa_icon {
    color: #fff;
}

.accordion .accordion-body {
    display: none;
    padding: 1em;
    border: 1px solid #ccc;
    border-top: 0;
    overflow-x: auto;
}

.accordion .accordion-body.active {
    display: block;
}

.breadcrumb {
    position: relative;
    overflow: hidden;
    display: table;
    width: 100%;
    box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.6);
}

.breadcrumb li {
    position: relative;
    display: table-cell;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 30px 5px 30px;
    background: linear-gradient(#333, #111);
}

.breadcrumb li:first-child {
    padding-left: 30px;
}

.breadcrumb li:first-child:before {
    left: 14px;
}

.breadcrumb li:last-child {
    padding-right: 30px;
}

.breadcrumb li.active,
.breadcrumb li:hover {
    background: #111;
    background: linear-gradient(#333, #111);
}

.breadcrumb li.active:after,
.breadcrumb li:hover:after {
    background: #222;
    background: linear-gradient(145deg, #333, #222);
}

.breadcrumb li:after {
    content: '';
    position: absolute;
    top: 0;
    right: -30px;
    bottom: 0;
    margin: auto;
    width: 60px;
    height: 60px;
    transform: scale(0.707) rotate(45deg);
    background: #555;
    background: linear-gradient(135deg, #777, #333);
    box-shadow: 2px -2px 0 2px rgba(0, 0, 0, 0.4), 3px -3px 0 2px rgba(255, 255, 255, 0.1);
    border-radius: 0 5px 0 50px;
    z-index: 9;
}

.breadcrumb li:last-child:after {
    content: none;
}

.breadcrumb.flat li,
.breadcrumb.flat li:after {
    background: #000000;
    color: #ffffff;
    transition: all 0.7s;
}

.breadcrumb.flat li:hover,
.breadcrumb.flat li.active,
.breadcrumb.flat li:hover:after,
.breadcrumb.flat li.active:after {
    background: #07318c;
}

.breadcrumb li i {
    font-size: 30px;
}