@charset "UTF-8";
/*
Theme Name: Motownlimousine

*/


@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

*{margin:0;padding:0;box-sizing:border-box;}

body{
    font-family:'Poppins',sans-serif;
    background:#eef2f7;
    color:#1f2937;
}

.mtl-booking-wrapper{
    min-height:100vh;
    padding:35px 15px;
    display:flex;
    margin-top:140px;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,#eef2f7 0%,#ffffff 100%);
}

.mtl-booking-card{
    width:100%;
    max-width:1220px;
    min-height:720px;
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 20px 60px rgba(48,71,103,.18);
    display:flex;
}

.mtl-booking-sidebar{
    width:34%;
    background:#181818;
    color:#fff;
    padding:38px 32px;
}

.mtl-brand-box h2{
    font-size:24px;
    font-weight:700;
}

.mtl-brand-box p{
    font-size:13px;
    opacity:.82;
    margin-top:8px;
    line-height:1.6;
}

.mtl-step-info{
    margin-top:36px;
    padding:18px;
    border-radius:16px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.12);
}

.mtl-step-info h3{
    font-size:18px;
    font-weight:600;
}

.mtl-step-info p{
    font-size:13px;
    margin-top:8px;
    line-height:1.6;
    color:rgba(255,255,255,.82);
}

.mtl-progress-list{
    list-style:none;
    margin-top:36px;
}

.mtl-progress-list li{
    position:relative;
    padding-left:48px;
    margin-bottom:28px;
    font-size:13px;
    font-weight:600;
    color:rgba(255,255,255,.45);
    min-height:28px;
}

.mtl-progress-list li::before{
    content:attr(data-step);
    position:absolute;
    left:0;
    top:-3px;
    width:30px;
    height:30px;
    border-radius:50%;
    border:1px solid rgba(255,255,255,.28);
    display:flex;
    align-items:center;
    justify-content:center;
    background:#181818;
    z-index:2;
    font-size:12px;
}

.mtl-progress-list li::after{
    content:"";
    position:absolute;
    left:14px;
    top:28px;
    width:2px;
    height:31px;
    background:rgba(255,255,255,.22);
}

.mtl-progress-list li:last-child::after{display:none;}

.mtl-progress-list li.mtl-active{color:#fff;}

.mtl-progress-list li.mtl-active::before{
    background:#fff;
    color:#181818;
    border-color:#fff;
    box-shadow:0 0 0 5px rgba(255,255,255,.12);
}

.mtl-booking-main{
    width:66%;
    padding:38px 42px;
    background:#fff;
}

.mtl-form{width:100%;}

.mtl-step-panel{
    display:none;
    animation:mtlFade .25s ease-in-out;
}

.mtl-step-panel.mtl-active{display:block;}

@keyframes mtlFade{
    from{opacity:0;transform:translateY(8px);}
    to{opacity:1;transform:translateY(0);}
}

.mtl-panel-header{
    margin-bottom:28px;
    border-bottom:1px solid #edf0f5;
    padding-bottom:18px;
}

.mtl-panel-icon{
    width:42px;
    height:42px;
    border-radius:14px;
    background:#181818;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:14px;
}

.mtl-panel-header h1{
    font-size:26px;
    color:#172033;
    font-weight:700;
}

.mtl-panel-header p{
    margin-top:6px;
    color:#6b7280;
    font-size:14px;
}

.mtl-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    margin-bottom:22px;
}

.mtl-grid.two{grid-template-columns:repeat(2,1fr);}
.mtl-grid.one{grid-template-columns:1fr;}

.mtl-field label{
    display:block;
    font-size:13px;
    font-weight:600;
    margin-bottom:7px;
    color:#374151;
}

.mtl-field input,
.mtl-field select,
.mtl-field textarea{
    width:100%;
    min-height:46px;
    border:1px solid #d6dce6;
    border-radius:12px;
    padding:10px 13px;
    font-family:'Poppins',sans-serif;
    font-size:14px;
    outline:none;
    background:#fff;
    transition:.2s;
}

.mtl-field textarea{
    min-height:150px;
    resize:vertical;
}

.mtl-field input:focus,
.mtl-field select:focus,
.mtl-field textarea:focus{
    border-color:#181818;
    box-shadow:0 0 0 4px rgba(48,71,103,.09);
}

.mtl-warning{
    border-color:#e11d48 !important;
    box-shadow:0 0 0 4px rgba(225,29,72,.08) !important;
}

.mtl-error-msg{
    display:none;
    margin:15px 0;
    padding:12px 14px;
    border-radius:12px;
    background:#fff1f2;
    border:1px solid #fecdd3;
    color:#be123c;
    font-size:13px;
    font-weight:600;
}

.mtl-actions{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:14px;
    margin-top:30px;
    padding-top:20px;
    border-top:1px solid #edf0f5;
}

.mtl-btn{
    border:0;
    min-width:125px;
    height:44px;
    border-radius:12px;
    cursor:pointer;
    font-family:'Poppins',sans-serif;
    font-weight:600;
    font-size:13px;
    transition:.2s;
}

.mtl-btn-primary{
    background:#181818;
    color:#fff;
}

.mtl-btn-primary:hover{
    background:#253850;
    transform:translateY(-1px);
}

.mtl-btn-secondary{
    background:#fff;
    color:#181818;
    border:1px solid #181818;
}

.mtl-btn-secondary:hover{background:#f5f7fa;}

.mtl-terms-box{
    padding:16px;
    border:1px solid #e5e7eb;
    border-radius:14px;
    background:#f9fafb;
    font-size:13px;
    line-height:1.6;
}

.mtl-terms-box input{margin-right:8px;}

.mtl-terms-box a{
    color:#181818;
    font-weight:600;
}

.mtl-submit-note{
    margin-top:10px;
    color:#6b7280;
    font-size:13px;
}

.mtl-captcha{margin-top:18px;}

.cust_msg{
    text-align:center;
    padding-top:80px;
}

.checkmark__circle{
  stroke-dasharray:166;
  stroke-dashoffset:166;
  stroke-width:2;
  stroke-miterlimit:10;
  stroke:#7ac142;
  fill:none;
  animation:stroke .6s cubic-bezier(.65,0,.45,1) forwards;
}

.checkmark{
  width:64px;
  height:64px;
  border-radius:50%;
  display:block;
  stroke-width:2;
  stroke:#fff;
  stroke-miterlimit:10;
  margin:25px auto;
  box-shadow:inset 0 0 0 #7ac142;
  animation:fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

.checkmark__check{
  transform-origin:50% 50%;
  stroke-dasharray:48;
  stroke-dashoffset:48;
  animation:stroke .3s cubic-bezier(.65,0,.45,1) .8s forwards;
}

@keyframes stroke{100%{stroke-dashoffset:0;}}
@keyframes scale{0%,100%{transform:none;}50%{transform:scale3d(1.1,1.1,1);}}
@keyframes fill{100%{box-shadow:inset 0 0 0 32px #7ac142;}}

.text.congrats h2{
    color:#172033;
    font-size:26px;
}

.text.congrats p{
    margin-top:8px;
    color:#6b7280;
}

@media(max-width:900px){
    .mtl-booking-card{flex-direction:column;}
    .mtl-booking-sidebar{display:none;}
    .mtl-booking-main{
        width:100%;
        padding:26px 18px;
    }
    .mtl-grid,
    .mtl-grid.two{
        grid-template-columns:1fr;
        gap:16px;
    }
    .mtl-panel-header h1{font-size:22px;}
    .mtl-actions{
        flex-direction:column-reverse;
        align-items:stretch;
    }
    .mtl-btn{width:100%;}
}


.white
{
    color:#fff;
}


div#reservation .mtl-booking-wrapper {
    margin: 0px !important;
}