.tracking-container {
    position: relative;
    width: 500px;
    margin: auto;
}

.tracking-container .box {
    position: relative;
    width: 100%;
    padding: 10px 30px;
    border-left: 6px solid #2756FF;
}

.tracking-container .box .circle {
    position: absolute;
    bottom: 0%;
    left: -4px;
    width: 3px;
    height: 3px;
    border-radius: 3px;
    background: white;
}

.tracking-container .box .circle.active {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    background: #2756FF;
    bottom: -15px;
    left: -18px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tracking-container .box .circle.active .child {
    position: relative;
    width: 15px;
    height: 15px;
    border-radius: 15px;
    background: rgb(204, 235, 245);
}

.tracking-container .box .time {
    position: relative;
    width: 100%;
    font-size: 15px;
    font-weight: 600;
}

.tracking-container .box .line {
    width: 60%;
    height: 1px;
    background: #eee;
    border-radius: 10px;
    margin-top: 20px;
}

.tracking-container .box .description {
    position: relative;
    width: 100%;
    font-size: 14px;
}

.percel-details-container {
    position: relative;
    width: 500px;
    margin: auto;
}

.percel-details-container .table-container {
    position: relative;
    width: 100%;
    overflow-x: auto;
    margin-bottom: 15px;
}

.percel-details-container .table-container table {
    position: relative;
    width: 100%;
}

.percel-details-container .table-container table th {
    padding: 5px;
    border: 1px solid lightgrey;
}

.percel-details-container .table-container table td {
    padding: 5px;
    border: 1px solid lightgrey;
}

.couriers-container {
    position: relative;
    width: 100%;
    margin: auto;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}

.couriers-container .box {
    position: relative;
    width: 30%;
    background: #fff;
    border: 1px solid lightgrey;
    border-radius: 5px;
    display: flex;
    flex-flow: row nowrap;
    padding: 15px;
    box-shadow: 1px 2px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.couriers-container .box .left {
    position: relative;
}

.couriers-container .box .left img {
    width: 60px;
    height: auto;
    margin-right: 10px;
}

.couriers-container .box .right {
    position: relative;
}

.couriers-container .box .right .title {
    position: relative;
    width: 100%;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 10px;
}

.couriers-container .box .right .link {
    position: relative;
    font-size: 13px;
    color: royalblue;
    text-decoration: none;
}


/** Small screens start ***/

@media only screen and (max-width: 690px) {
    .tracking-container {
        width: 90%;
    }
    .tracking-container .box .line {
        width: 100%;
    }
    .percel-details-container {
        width: 90%;
        margin-top: 60px;
    }
    .couriers-container {
        justify-content: center;
    }
    .couriers-container .box {
        width: 100%;
    }
}


/*** Small screens end ***/