/* =========================================================
   TEDLEYN MOVE
   REQUEST ENGINE
========================================================= */

.tdm-request{

    max-width:1100px;
    margin:40px auto;
    padding:0 20px;

}

.tdm-request-header{

    margin-bottom:35px;

}

.tdm-badge{

    display:inline-block;
    padding:8px 18px;

    background:#FFF5D8;

    color:#D18B00;

    border-radius:50px;

    font-size:13px;

    font-weight:700;

    letter-spacing:.5px;

}

.tdm-request-header h1{

    margin-top:18px;

    font-size:42px;

    font-weight:700;

    color:#202938;

}

.tdm-request-header p{

    color:#7B8494;

    margin-top:12px;

    font-size:17px;

}

.tdm-stepper{

    display:flex;

    align-items:center;

    margin:35px 0 45px;

}

.tdm-step{

    width:70px;

    text-align:center;

}

.tdm-step span{

    width:52px;

    height:52px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:100%;

    margin:auto;

    background:#ECEFF4;

    color:#6E7788;

    font-weight:700;

}

.tdm-step.active span{

    background:#FFC107;

    color:#000;

}

.tdm-step small{

    display:block;

    margin-top:10px;

    color:#667085;

    font-size:13px;

}

.tdm-line{

    flex:1;

    height:3px;

    background:#ECEFF4;

    margin:0 12px;

}

.tdm-card{

    background:#fff;

    border-radius:22px;

    padding:40px;

    box-shadow:0 15px 50px rgba(0,0,0,.06);

}

.tdm-card label{

    display:block;

    margin-bottom:10px;

    margin-top:20px;

    font-weight:600;

    color:#293142;

}

.tdm-card input{

    width:100%;

    height:60px;

    border:1px solid #E3E7EE;

    border-radius:14px;

    padding:0 18px;

    font-size:16px;

    transition:.25s;

}

.tdm-card input:focus{

    outline:none;

    border-color:#FFC107;

}

#tdm-map{

    margin-top:30px;

    height:350px;

    border-radius:18px;

    background:#F4F6FA;

    border:2px dashed #D9DFEA;

}

.tdm-next{

    margin-top:35px;

    background:#FFC107;

    color:#111;

    border:none;

    height:60px;

    padding:0 35px;

    border-radius:14px;

    font-weight:700;

    font-size:16px;

    cursor:pointer;

    transition:.25s;

}

.tdm-next:hover{

    transform:translateY(-2px);

    box-shadow:0 12px 30px rgba(255,193,7,.35);

}
/* STEP 2 */

.tdm-type-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;

    margin-top:40px;

}

.tdm-type-card{

    background:#fff;

    border:2px solid #ececec;

    border-radius:20px;

    padding:35px;

    cursor:pointer;

    transition:.3s;

    text-align:center;

}

.tdm-type-card:hover{

    transform:translateY(-6px);

    border-color:#f8b400;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.tdm-type-icon{

    font-size:48px;

    margin-bottom:20px;

}

.tdm-type-card h3{

    margin:15px 0;

    font-size:24px;

}

.tdm-type-card p{

    color:#777;

    margin:0;

}

.tdm-type-card.active{

    border-color:#f8b400;

    background:#fff8e5;

}

@media(max-width:991px){

    .tdm-type-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:600px){

    .tdm-type-grid{

        grid-template-columns:1fr;

    }

}
/*==================================================
STEP 2
==================================================*/

.tdm-type-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:50px;

}

.tdm-type-card{

    position:relative;

    background:#fff;

    border:2px solid #ECECEC;

    border-radius:22px;

    padding:45px 30px;

    text-align:center;

    cursor:pointer;

    transition:.30s;

    overflow:hidden;

    min-height:260px;

    display:flex;

    flex-direction:column;

    justify-content:center;

}

.tdm-type-card:hover{

    transform:translateY(-8px);

    border-color:#FDB913;

    box-shadow:0 20px 45px rgba(0,0,0,.08);

}

.tdm-type-card.active{

    border-color:#FDB913;

    background:#FFF9EA;

}

.tdm-type-card.active::after{

    content:"✓";

    position:absolute;

    top:18px;

    right:18px;

    width:34px;

    height:34px;

    border-radius:50%;

    background:#FDB913;

    color:#fff;

    font-weight:700;

    display:flex;

    align-items:center;

    justify-content:center;

}

.tdm-type-icon{

    width:90px;

    height:90px;

    margin:0 auto 25px;

    border-radius:50%;

    background:#FFF4D2;

    display:flex;

    align-items:center;

    justify-content:center;

}

.tdm-type-icon i{

    font-size:42px;

    color:#FDB913;

}

.tdm-type-card h3{

    font-size:28px;

    margin-bottom:12px;

    color:#1E2B46;

}

.tdm-type-card p{

    margin:0;

    color:#6B7280;

    line-height:28px;

    font-size:17px;

}

.tdm-step-actions{

    margin-top:45px;

    text-align:right;

}

#tdm-step-2-next{

    opacity:.45;

    pointer-events:none;

}

#tdm-step-2-next.enabled{

    opacity:1;

    pointer-events:auto;

}

@media(max-width:991px){

    .tdm-type-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:600px){

    .tdm-type-grid{

        grid-template-columns:1fr;

    }

    .tdm-type-card{

        min-height:220px;

    }

}