/* -----------------------------------------------
--------------------------------------------------
--------------------------------------------------
    Tracking Page
--------------------------------------------------
--------------------------------------------------
----------------------------------------------- */

.tracking-bg {
    background-color: #030851;
    padding: 50px 0;
}

.tracking-bg h2 {
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    font-size: 30px;
    margin-bottom: 0;
}

.track-warp {
    padding: 60px 0;
    background: linear-gradient(270deg, rgba(29, 29, 29, 0.1), rgba(204, 204, 204, 0.2));
}

.track-warp .track-warp-in {
    background: #ffffff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2rem 6rem rgb(0 0 0 / 30%);
}

.track-warp .track-warp-in .root {
    border-radius: 5px;
}

.track-warp .track-warp-in figure {
    display: flex;
}

.track-warp .track-warp-in figure img {
    width: 70px;
    height: 70px;
    border-radius: 15%;
    border: 1.5px solid #e2001a;
    margin-right: 1.5rem;
    padding: 0.7rem;
}

.track-warp .track-warp-in figure figcaption {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.track-warp .track-warp-in figure figcaption h4 {
    font-size: 16px;
    font-weight: 500;
}

.track-warp .track-warp-in figure figcaption h6 {
    font-size: 14px;
    font-weight: 300;
}

.track-warp .track-warp-in figure figcaption h2 {
    font-size: 20px;
    font-weight: 500;
}

.progressbar-wrap {
    padding-top: 50px;
    padding-bottom: 50px;
}

.progressbar {
    width: 100%;
    margin-top: 7px;
    margin-bottom: 25px;
    position: relative;
    background-color: #1d1d1d;
    counter-reset: step;
}

.progressbar li {
    list-style-type: none;
    float: left;
    width: 35%;
    position: relative;
    text-align: center;
    font-weight: 600;
}

.pulse1 {
    position: absolute;
    width: 80px;
    height: 80px;
    margin: auto;
    top: 8px;
    left: 4px;
    bottom: 0;
    right: 0;
    z-index: 1;
    opacity: 0;
    border: 3px solid rgba(255, 255, 255, .1);
    display: none;
    -webkit-animation: pulsejg1 1.5s linear infinite;
    -moz-animation: pulsejg1 1.5s linear infinite;
    animation: pulsejg1 1.5s linear infinite;
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    border-radius: 999px;
    -webkit-box-shadow: inset 0px 0px 15px 10px rgb(0 0 0);
    -moz-box-shadow: inset 0px 0px 15px 10px rgba(0, 0, 0, 1);
    box-shadow: inset 0px 0px 15px 10px rgb(0 0 0);
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

@keyframes pulsejg1 {
    0% {
        transform: scale(.6);
        opacity: 0;
    }
    50% {
        transform: scale(.6);
        opacity: 0;
    }
    60% {
        transform: scale(.9);
        opacity: .1;
    }
    70% {
        transform: scale(1.1);
        opacity: .25;
    }
    80% {
        transform: scale(1.25);
        opacity: .1;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.progressbar li.active:after {
    background-color: #fbfbfb;
}

.progressbar li:after {
    position: absolute;
    left: 10px;
    right: 0;
    top: 2px;
    content: '';
    counter-increment: step;
    height: 10px;
    width: 10px;
    line-height: 30px;
    display: block;
    text-align: center;
    margin: 0 auto 10px auto;
    border-radius: 50%;
    background-color: #b7b5b5;
    z-index: 11;
}

.progressbar li:last-child::after {
    right: 15px;
}

.progressbar li:nth-child(2).active:before {
    border-radius: 10px;
}

.progressbar li.active:before {
    background-color: #ff0000;
    z-index: 1;
}

.progressbar li.active:before {
    border-color: #ff0000;
}

.progressbar li:before {
    content: '';
    position: absolute;
    width: 106%;
    height: 15px;
    background-color: #ddd;
    top: -1px;
    left: -52%;
}

.progressbar .current:after {
    width: 50px !important;
    height: 50px !important;
    top: -20px !important;
    content: "\f054" !important;
    font-family: 'Font Awesome 5 Free';
    color: #e2001a;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: #fff !important;
    border: 2px solid #000;
}

.progressbar li:first-child::before {
    width: 0;
}

.progressbar li:last-child:before {
    border-radius: 10px;
}

.current .pulse1 {
    display: block;
}

.stepper-msg {
    display: flex;
    text-align: center;
    justify-content: space-around;
    margin-top: 50px;
}

.stepper-msg li {
    font-size: 14px;
    padding: 0 10px;
}

.track-warp .track-warp-in b {
    color: #1d1d1d;
    opacity: 0.7;
}

.track-warp .track-warp-in p.text-read {
    color: #e2001a;
    font-size: 14px;
    font-weight: 600;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

