@media (max-width:500px) /* extra small screen */ {
    body {
        font-family: var(--font-en);
    }
    .timeline .circle {
        width: 20px;
        height: 20px;
    }
    .timeline .line {
        width: 80px;
        height: 7px;
    }
    .title h2 {
        font-size: 18px;
    }
    .title p {
        font-size: 12px;
    }
    .customer-details p span:not(.detail){
        min-width: 50px;
        margin-right: 5px;
    }
    .details {
        padding: 25px 15px;
    }
    .label .lab {
        font-size: 10px;
    }
}


@media (min-width:501px) and (max-width:767px) /* small screen */ {
    .timeline .circle {
        width: 24px;
        height: 24px;
    }
    .timeline .line {
        width: 120px;
        height: 10px;
    }
    .title h2 {
        font-size: 18px;
    }
    .title p {
        font-size: 12px;
    }
    .customer-details p span:not(.detail){
        min-width: 60px;
        margin-right: 10px;
    }
    .details {
        padding: 35px 25px;
    }
}


@media (min-width:768px) and (max-width:991px) /* small screen */ {
    body {
        font-family: var(--font-en);
        font-size: 16px;
    }
    .customer-details p span:not(.detail){
        min-width: 75px;
        margin-right: 25px;
    }
}

@media (min-width:992px) and (max-width:1199px) /* medium screen */ {
    body {
        font-family: var(--font-en);
        font-size: 18px;
    }
}

@media (min-width:1200px) /* large screen */ {
    body {
        font-family: var(--font-en);
        font-size: 18px;
    }
}