
/* ===================================== */
/* TRACKING WRAPPER */
/* ===================================== */

.tracking-wrapper{

    max-width:1100px;

    margin:auto;

}

/* ===================================== */
/* BUSQUEDA */
/* ===================================== */

.tracking-search{

    display:flex;

    gap:15px;

    margin-bottom:30px;

}

.tracking-search input{

    flex:1;

    padding:18px;

    border:1px solid #DDD;

    border-radius:14px;

    font-size:16px;

    outline:none;

}

.tracking-search input:focus{

    border-color:#F57C00;

}

.tracking-search button{

    background:#F57C00;

    color:white;

    border:none;

    border-radius:14px;

    padding:18px 35px;

    font-weight:600;

    cursor:pointer;

    transition:.3s;

}

.tracking-search button:hover{

    background:#e36f00;

}

/* ===================================== */
/* CARDS */
/* ===================================== */

.tracking-card{

    background:white;

    border-radius:24px;

    padding:35px;

    margin-bottom:25px;

    box-shadow:
    0 5px 20px rgba(0,0,0,.08);

}

.hidden{

    display:none;

}

/* ===================================== */
/* INFO ENVIO */
/* ===================================== */

#numeroGuia{

    color:#1E1E2F;

    margin-bottom:15px;

    font-size:28px;

}

#pedido,
#cliente,
#estadoActual{

    margin-bottom:10px;

    font-size:16px;

}

/* ===================================== */
/* BARRA PROGRESO */
/* ===================================== */

.progressbar{

    width:100%;

    height:12px;

    background:#E5E7EB;

    border-radius:50px;

    overflow:hidden;

    margin-bottom:45px;

}

#progress{

    height:100%;

    width:0%;

    background:#F57C00;

    transition:.4s ease;

}

/* ===================================== */
/* TIMELINE */
/* ===================================== */

.steps{

    display:flex;

    justify-content:space-between;

    align-items:flex-start;

    gap:10px;

}

.step{

    flex:1;

    text-align:center;

    opacity:.35;

    transition:.3s;

}

.step span{

    display:block;

    margin-top:10px;

    font-size:14px;

    font-weight:600;

}

.step.active{

    opacity:1;

    color:#F57C00;

}

.step.active span{

    color:#F57C00;

}

/* ===================================== */
/* ICONOS */
/* ===================================== */

.step{

    font-size:28px;

}

/* ===================================== */
/* MOVIMIENTOS */
/* ===================================== */

.movimiento{

    padding:18px 0;

    border-bottom:1px solid #EEE;

}

.movimiento:last-child{

    border-bottom:none;

}

.movimiento h4{

    color:#1E1E2F;

    margin-bottom:8px;

}

.movimiento p{

    margin-bottom:8px;

    color:#555;

}

.movimiento small{

    color:#888;

}

/* ===================================== */
/* RESPONSIVE */
/* ===================================== */


/* ===================================== */
/* TABLET */
/* ===================================== */

@media(max-width:768px){

    .progressbar{
        display:none;
    }

    .steps{

        position:relative;

        display:flex;

        flex-direction:column;

        gap:25px;

        align-items:flex-start;

        padding-left:25px;

    }

    .steps::before{

        content:"";

        position:absolute;

        left:12px;

        top:0;

        bottom:0;

        width:3px;

        background:#E5E7EB;

        border-radius:20px;

    }

    .step{

        position:relative;

        width:100%;

        display:flex;

        align-items:center;

        gap:15px;

        text-align:left;

        opacity:.45;

        font-size:24px;

    }

    .step.active{

        opacity:1;

        color:#F57C00;

    }

    .step.active::before{

        background:#F57C00;

    }

    .step::before{

        content:"";

        position:absolute;

        left:-19px;

        width:14px;

        height:14px;

        border-radius:50%;

        background:#CCC;

        z-index:2;

    }

    .step span{

        margin-top:0;

        font-size:16px;

        white-space:nowrap;

    }

}

/* ===================================== */
/* MOBILE */
/* ===================================== */

@media(max-width:768px){

    .progressbar{
        display:none;
    }

    .steps{

        display:flex;

        flex-direction:column;

        gap:20px;

        align-items:flex-start;

    }

    .step{

        width:100%;

        display:flex;

        align-items:center;

        gap:15px;

        text-align:left;

        opacity:.45;

        font-size:24px;

    }

    .step.active{

        opacity:1;

    }

    .step span{

        margin-top:0;

        font-size:16px;

        white-space:nowrap;

    }

}

/* ===================================== */
/* CELULARES PEQUEÑOS */
/* ===================================== */

@media(max-width:480px){

    #numeroGuia{
        font-size:20px;
    }

    .tracking-card{
        padding:20px;
    }

    .step{
        font-size:22px;
    }

    .step span{
        font-size:14px;
    }

}


@media(max-width:600px){

    #numeroGuia{

        font-size:22px;

    }

    .tracking-card{

        padding:25px;

    }

    .step{

        width:90px;

        font-size:24px;

    }

    .step span{

        font-size:12px;

    }

}
@media(max-width:768px){

    .steps{

        flex-direction:column;

        align-items:flex-start;

        gap:20px;

    }

    .step{

        width:100%;

        display:flex;

        align-items:center;

        gap:15px;

        opacity:1;

        text-align:left;

    }

    .step span{

        margin-top:0;

        font-size:16px;

    }

    .progressbar{

        display:none;

    }

}