/* ==========================================================
   FORMULARIO DE CONSULTA
========================================================== */
.movielec-form{

    font-family:"Anek Bangla",sans-serif;
    max-width:700px;
    margin:0 auto 50px auto;
    background:#151515;
    border:1px solid #2f2f2f;
    border-radius:18px;
    padding:35px;
    box-shadow:0 15px 50px rgba(0,0,0,.35);
}

.movielec-form p{
    margin:0 0 18px 0;
}

.movielec-form input{
    width:100%;
    height:58px;
    padding:0 20px;
    background:#222;
    color:#fff;
    border:2px solid #333;
    border-radius:12px;
    font-size:17px;
    transition:.25s;
    box-sizing:border-box;
}

.movielec-form input::placeholder{
    color:#8d8d8d;
}

.movielec-form input:hover{
    border-color:#555;
}

.movielec-form input:focus{
    outline:none;
    border-color:#F2B600;
    background:#262626;
    box-shadow:0 0 0 4px rgba(242,182,0,.18);
}

.movielec-form button{
    width:100%;
    height:60px;
    border:none;
    border-radius:12px;
    background:linear-gradient(180deg,#FFD54A,#F2B600);
    color:#111;
    font-size:18px;
    font-weight:700;
    cursor:pointer;
    transition:.25s;
    letter-spacing:.4px;
}

.movielec-form button:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 25px rgba(242,182,0,.35);
}

.movielec-form button:active{
    transform:translateY(0);
}

.movielec-search-header{
    text-align:center;
    margin-bottom:30px;
}

.movielec-search-header h1{
    color:#fff;
    font-size:42px;
    margin:0 0 10px;
    font-weight:700;
}

.movielec-search-header p{
    color:#bdbdbd !important;
    font-size:18px !important;
    line-height:1.8 !important;
    text-align:center;
    margin:0 auto 35px auto;
    font-family:inherit !important;
    font-style:normal !important;
    font-weight:400 !important;
    text-transform:none !important;
}

.ml-status-header{
    display:grid;
    justify-items:center;
    align-content:center;
    row-gap:18px;
    padding:55px;
    background:#1b1b1b;
    border:1px solid #303030;
    border-radius:18px;
    gap:16px;
}

.ml-status-icon{
    width:90px;
    height:90px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:2px solid var(--estado-color);
    border-radius:50%;
    margin-bottom:0px;
    box-shadow:0 0 18px rgba(50,194,106,.12);
    margin:0;
}

.ml-status-icon svg{
    width:48px;
    height:48px;
    fill:var(--estado-color);
}

.ml-status-title{
    display:block;
    width:100%;
    padding:0;
    color:var(--estado-color);
    font-family:"Anek Bangla",sans-serif;
    font-size:45px;
    font-weight:800;
    line-height:1.05;
    text-align:center;
    margin:0;
}

.ml-status-description{
    display:block;
    width:100%;
    max-width:620px;
    padding:0;
    color:#d6d6d6;
    font-family:"Anek Bangla",sans-serif;
    font-size:22px;
    line-height:1.45;
    text-align:center;
    margin:0;
}
.ml-status-header > *{
    flex:none;
}

/* ========================================================== 
TIMELINE 
========================================================== */ 
.ml-timeline{ 
    position:relative; 
    display:flex; 
    justify-content:space-between; 
    align-items:flex-start; 
    margin:45px 0 55px; 
    padding:0 20px; 
    
} 
.ml-line{
    position:absolute; 
    top:32px; 
    left:9%; 
    right:9%; 
    height:4px; 
    background:#3b3b3b; 
    border-radius:50px; 
    z-index:1; 
    
} 
.ml-line-fill{ 
    height:100%; 
    width:0; 
    border-radius:50px; 
    /*transition:.4s; */
    transition:width 1.4s ease;
    
} 
.ml-step{ 
    position:relative; 
    z-index:2; 
    width:20%; 
    display:flex; 
    flex-direction:column; 
    align-items:center; 
    
} 
.ml-step-circle{ 
    width:64px; 
    height:64px; 
    border-radius:50%; 
    border:2px solid #555; 
    background:#252525; 
    display:flex; 
    align-items:center; 
    justify-content:center; 
    transition:.3s; 
    
} 
.ml-step-circle svg{ 
    width:28px; 
    height:28px; 
    fill:#777; 
    
} 
.ml-step-label{ 
    margin-top:12px; 
    color:#999; 
    font-size:15px; 
    font-family:"Anek Bangla",sans-serif; 
    text-align:center; 
    
} 

/* PASOS COMPLETADOS */ 
.ml-step.done .ml-step-circle{ 
    color:#111; 
    background:var(--estado-color); 
    border-color:var(--estado-color); 
    
} 

.ml-step.done .ml-step-circle svg{ 
    fill:#1b1b1b; 
    
} 
.ml-step.done .ml-step-label{ 
    color:#fff; 
    
} 

/* PASO ACTUAL */ 
.ml-step.current .ml-step-circle{ 
    color:#111; 
    background:var(--estado-color); 
    border-color:var(--estado-color); 
    background:var(--estado-color); 
    border-color:var(--estado-color); 
    box-shadow: 0 0 0 6px rgba(255,255,255,.05), 0 0 18px var(--estado-color), 0 0 35px var(--estado-color); 
    
} 

.ml-step.current .ml-step-circle svg{ 
    fill:#1b1b1b; 
    
} 
.ml-step.current .ml-step-label{ 
    color:var(--estado-color); 
    font-weight:700; 
    
} 

/* FUTUROS */ 
.ml-step.pending .ml-step-circle{ 
    background:#232323; 
    border-color:#555; 
    
} 
.ml-step.pending svg{ 
    fill:#666; 
    
} 
.ml-step.pending .ml-step-label{ 
    color:#777; 
}
/* Animación de aparición */

.ml-step{
    opacity:0;
    transform:translateY(8px);
    transition:
        opacity .35s ease,
        transform .35s ease;
}

.ml-step.ml-visible{
    opacity:1;
    transform:translateY(0);
}
/* ==========================================================
   INFORMACIÓN
========================================================== */

.ml-info-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    margin-top:35px;
    border:1px solid #343434;
    border-radius:10px;
    overflow:hidden;
    background:#1d1d1d;
    font-family:"Anek Bangla",sans-serif;
}

.ml-info-card{
    display:flex;
    align-items:center;
    gap:18px;
    padding:22px 24px;
    border-right:1px solid #343434;
    font-family:inherit;
}

.ml-info-card:last-child{
    border-right:none;
}

.ml-info-icon{
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.ml-info-icon svg{
    width:28px;
    height:28px;
    fill:#ffffff;
}

.ml-info-text{
    display:flex;
    flex-direction:column;
    font-family:inherit;
}

.ml-info-text span{
    font-size:14px;
    color:#bdbdbd;
    margin-bottom:2px;
    font-family:inherit;
    font-weight:400;
}

.ml-info-text strong{
    color:#fff;
    font-size:19px;
    font-family:inherit;
    font-weight:600;
}

/* ==========================================================
   ÚLTIMA ACTUALIZACIÓN
========================================================== */

.ml-update{
    display:flex;
    gap:22px;
    align-items:center;
    margin-top:30px;
    padding:22px 26px;
    background:linear-gradient(180deg,#1c1c1c,#181818);
    border:1px solid #313131;
    border-radius:12px;
}

.ml-update-icon{
    width:48px;
    min-width:48px;
    display:flex;
    justify-content:center;
    align-items:center;
    align-self:center;
    color:#ffffff;
}

.ml-update-icon svg{
    width:30px;
    height:30px;
    fill:currentColor;
}

.ml-update-content{
    flex:1;
}

.ml-update-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:8px;
}

.ml-update-title{
    color:var(--estado-color);
    font-size:18px;
    font-weight:700;
    font-family:"Anek Bangla",sans-serif;
}

.ml-update-date{
    color:#b5b5b5;
    font-size:14px;
    font-family:"Anek Bangla",sans-serif;
}

.ml-update-text{
    color:#d8d8d8;
    font-size:17px;
    line-height:1.6;
    font-family:"Anek Bangla",sans-serif;
}

.ml-update-text p{
    margin:0;
}

/* ==========================================================
   RECOGIDA
========================================================== */

.ml-pickup{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top:30px;
    padding:24px 28px;
    border-radius:14px;
    border:1px solid rgba(50,194,106,.35);
    background:
        linear-gradient(
            90deg,
            rgba(50,194,106,.18),
            rgba(50,194,106,.05)
        );
}

.ml-pickup-left{
    display:flex;
    align-items:center;
    gap:18px;
}

.ml-pickup-icon{
    color:#32C26A;
}

.ml-pickup-icon svg{
    width:34px;
    height:34px;
    fill:currentColor;
}

.ml-pickup-title{
    color:#32C26A;
    font-size:22px;
    font-weight:700;
    font-family:"Anek Bangla",sans-serif;
}

.ml-pickup-hours{
    margin-top:5px;
    color:#dddddd;
    font-size:17px;
    font-family:"Anek Bangla",sans-serif;
}

.ml-pickup-check{
    color:#32C26A;
}

.ml-pickup-check svg{
    width:44px;
    height:44px;
    fill:currentColor;
}

/* ==========================================================
   TARJETA CANCELADO
========================================================== */

.ml-cancel{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top:30px;
    padding:22px 28px;
    border-radius:14px;
    border:1px solid rgba(220,70,70,.35);
    background:
        linear-gradient(
            90deg,
            rgba(120,20,20,.28),
            rgba(60,15,15,.15)
        );
}

.ml-cancel-left{
    display:flex;
    align-items:center;
    gap:18px;
}

.ml-cancel-icon{
    color:#ff5555;
}

.ml-cancel-icon svg{
    width:34px;
    height:34px;
    fill:currentColor;
}

.ml-cancel-title{
    color:#ff5555;
    font-size:22px;
    font-weight:700;
    font-family:"Anek Bangla",sans-serif;
}

.ml-cancel-subtitle{
    margin-top:4px;
    color:#dddddd;
    font-size:17px;
    font-family:"Anek Bangla",sans-serif;
}

.ml-cancel-button{
    padding:12px 34px;
    border:2px solid #ff5555;
    border-radius:10px;
    background:transparent;
    color:#ffffff !important;
    font-family:"Anek Bangla",sans-serif;
    font-weight:700;
    text-decoration:none;
    transition:.25s;
}

.ml-cancel-button:visited,
.ml-cancel-button:link{
    color:#ffffff !important;
}

.ml-cancel-button:hover{
    background:#ff5555;
    color:#ffffff !important;
}

/* ==========================================================
   MENSAJE DE ERROR
========================================================== */

.ml-error{
    display:flex;
    align-items:center;
    gap:20px;
    max-width:700px;
    margin:35px auto 0;
    padding:22px 24px;
    background:#2a1717;
    border:1px solid #b33a3a;
    border-radius:14px;
}

.ml-error-icon{
    width:56px;
    height:56px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    border:2px solid #ff5a5a;
    color:#ff5a5a;
    flex-shrink:0;
}

.ml-error-icon svg{
    width:28px;
    height:28px;
    fill:currentColor;
}

.ml-error-title{
    font-family:"Anek Bangla",sans-serif;
    font-size:24px;
    font-weight:700;
    color:#ff5a5a;
    margin-bottom:4px;
}

.ml-error-text{
    font-family:"Anek Bangla",sans-serif;
    font-size:17px;
    line-height:1.5;
    color:#dddddd;
}

/* ==========================================================
   CONSULTAR OTRA REPARACIÓN
========================================================== */

.ml-new-search{
    margin:45px 0 25px;
    text-align:center;
}

.ml-new-search-button{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:14px 26px;
    border:1px solid #3a3a3a;
    border-radius:12px;
    background:#1b1b1b;
    color:#F2B600 !important;
    text-decoration:none;
    font-family:"Anek Bangla",sans-serif;
    font-size:18px;
    font-weight:600;
    transition:all .25s ease;
}

.ml-new-search-button::before{
    content:"←";
    font-size:22px;
    line-height:1;
}

.ml-new-search-button:hover{
    background:#242424;
    border-color:#F2B600;
    color:#FFD54A !important;
    transform:translateY(-2px);
    box-shadow:0 8px 20px rgba(242,182,0,.12);
}

.ml-new-search-button:active{
    transform:translateY(0);
}

/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width:768px){
    .ml-status-header{
        padding:28px 20px;
        min-height:auto;
    }

    .ml-status-icon{
        width:72px;
        height:72px;
    }

    .ml-status-icon svg{
        width:36px;
        height:36px;
    }

    .ml-status-title{
        font-size:46px;
        margin-top:14px;
    }

    .ml-status-description{
        font-size:18px;
        line-height:1.45;
    }
    .ml-step-circle{
        width:58px;
        height:58px;
    }

    .ml-step-circle svg{
        width:28px;
        height:28px;
    }

    .ml-step-label{
        font-size:13px;
    }

    .ml-timeline{
        margin:35px 0;
    }

    .ml-info-grid{
        grid-template-columns:1fr;
    }

    .ml-update{
        display:block;
        padding:18px;
    }

    .ml-update-header{
        display:flex;
        flex-direction:column;
        align-items:flex-start;
        gap:4px;
    }
    
    .ml-update-date{
        font-size:13px;
        opacity:.75;
    }

    .ml-update-content{
        width:100%;
    }    

    .ml-update-title{
        font-size:20px;
    }

    .ml-update-text{
        font-size:15px;
    }
    .ml-new-search-button{
        width:100%;
        justify-content:center;
        box-sizing:border-box;
    }
}
