/* @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap'); */
@font-face {
    font-family: 'SourceSansPro';
    src: url('/fonts/source-sans-pro/SourceSansPro-Regular.woff2') format('woff2'),
         url('/fonts/source-sans-pro/SourceSansPro-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SourceSansPro';
    src: url('/fonts/source-sans-pro/SourceSansPro-Semibold.woff2') format('woff2'),
         url('/fonts/source-sans-pro/SourceSansPro-Semibold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

:root {
    --font-primary: 'SourceSansPro', sans-serif;
    /* --font-primary: 'Inter', sans-serif; */
    /* --primary-color: #131E3D;
    --secondary-color: #22396D; */
    --primary-color: #000;
    --secondary-color: #000;
    --white-color: #ffffff;
    --form-bg: #F7F8FF;
    --border-color: #C9D0E4;
}

body {
    font-family: var(--font-primary) !important;
}


 @media (min-width: 1920px) {
     .container-fixed {
        margin-inline-start: auto;
        margin-inline-end: auto;
        padding-inline-start: 100px;
        padding-inline-end: 100px;
        max-width: 1920px;
    }
 }
 @media (min-width: 1536px) {
    /* .container-fixed {
        margin-inline-start: auto;
        margin-inline-end: auto;
        padding-inline-start: 100px;
        padding-inline-end: 100px;
        max-width: 1920px;
    } */
    /* .container {
        padding-left: 100px !important;
        padding-right: 100px !important;
        margin: 0 auto !important;
    } */
} 
@media (min-width: 1024px) and (max-width: 1535px) {
    /* .container {
        max-width: 1236px;
        padding-inline-start: 100px;
        padding-inline-end: 100px;
    } */
}

.text-primary {
    color: var(--primary-color);
}

.bg-primary {
    background-color: var(--primary-color);
}

.bg-secondary {
    background-color: var(--secondary-color);
}

.text-secondary {
    color: var(--secondary-color);
}

.primary-border {
    color: var(--border-color);
}

.form-bg {
    background-color: var(--form-bg);
    border: 1px solid var(--border-color);
}

.border-gray-300 {
    border-color: #cccccc;
}

.border-primary {
    border-color: var(--border-color);
}

.border-secondary {
    border-color: var(--secondary-color)
}
.navbar-color {
    color: #67b0c4 !important;
}

.text-black {
    color: black;
}

.text-white {
    color: var(--white-color);
}

.text-gray {
    color: #72788F;
}

.text-blue {
    color: var(--font-primary);
}

.text-base {
    color: var(--primary-color);
}

.font-15 {
    font-size: 15px;
}

.font-16 {
    font-size: 16px;
}

.font-32 {
    font-size: 32px;
    line-height: 32px;
}

/* Spaces */

.g-10 {
    gap: 10px;
}

.g-18 {
    gap: 18px;
}

.g-50 {
    gap: 50px;
}

.mb-6 {
    margin-bottom: 24px;
}

.mt-8 {
    margin-top: 32px;
}

.heading-margin {
    margin-bottom: 48px;
}

.header-logo {
    width: 345px;
}

i.ki-menu {
    font-size: 24px !important;
}

.main-menu-link {
    padding: 12px 14px;
    border-radius: 6px;
}

#header_container {
    padding-top: 12px;
    padding-bottom: 12px;
}

.user-avatar {
    border-radius: 9px;
}

.custom-width-box {
    width: 168px;
    height: 135px;
}

.vehicle-options {
    padding-top: 32px;
    padding-bottom: 124px;
}

.gap-8 {
    gap: 32px;
}

.booking-form .step {
    margin-bottom: 48px;
}

.step label {
    width: 50%;
}

.step #variant-options label {
    width: 48%;
}

.ext-color,
.int-color {
    width: 48% !important;
}
.ext-color > div:first-child, .int-color > div:first-child {
    border: 1px solid white;
}

.step2 span {
    color: black;
}

.step-button {
    float: right;
    background-color: white;
    color: black;
    padding: 12px 24px;
    font-weight: 600;
    border-radius: 6px;
}

/* Custom radio appearance */
input[type="checkbox"].custom-radio {
    appearance: none;
    -webkit-appearance: none;
    background-color: #fff;
    margin: 0;
    font: inherit;
    color: currentColor;
    width: 18px;
    height: 18px;
    border: 2px solid #94a3b8;
    border-radius: 0.25rem;
    display: grid;
    place-content: center;
    cursor: pointer;
}

input[type="checkbox"].custom-radio::before {
    content: "";
    width: 12px;
    height: 12px;
    border-radius: 50%;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em #1e293b;
}

input[type="checkbox"].custom-radio:checked::before {
    transform: scale(1);
    border-radius: 2px;
}

.custom-radio+span {
    color: black;
    font-weight: 400;
}

.bg-gray-50 {
    background-color: rgb(201 208 228 / 8%);
    border-radius: 16px;
}

.spec-area {
    border: 1px solid #C9D0E4;
    box-shadow: 0 4px 12px 0 #00000014;
    border-radius: 0.5rem;
}

.section-space {
    padding-top: 48px;
    padding-bottom: 48px;
}

.step-bottom-space {
    margin-bottom: 48px;
}

.bottom-space {
    margin-bottom: 48px;
}

.bottom-max-space {
    margin-bottom: 96px;
}

.product-detail {
    /* background-color: var(--primary-color); */
    background-color:rgb(0 0 0 / 90%);
    padding: 16px;
    border-radius: 16px;
}

.menu-title {
    font-weight: 600;
    color: var(--secondary-color);
}

a.main-menu-link.text-white.font-15>.menu-title {
    color: #BDC4D3;
    font-weight: 500;
}

.btn {
    padding: 16px 24px;
    border-radius: 6px;
    color: white;
    font-size: 16px;
}

.signup {
    font-size: 16px;
    background-color: var(--primary-color);
    color: white;
    padding: 16px 24px;
    border-radius: 8px;
}

table.specs tr td,
table.price-calc tr td,
.variation-detail tr td {
    color: var(--primary-color) !important;
}

.variation-img img {
    width: 70px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
}

.img-wrapper img {
    height: auto;
    width: 100%;
    object-fit: contain;
}

.img-wrapper {
    width: 100%;
    height: 112px;
    background-color: white;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.variation-img {
    max-width: 100%;
    max-height: 100%;
}

.image-container {
    width: 880px;
    height: 455px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    overflow: hidden;
}

.image-container img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
}

.step1 .price-count {
    display: none !important;
}

.close-privacy-popup {
    line-height: 24px !important;
}
.ts-wrapper.multi.has-items .ts-control {
    padding: 10px;
}

/* Responsive adjustments */
@media (max-width: 880px) {
    .image-container {
        width: 100%;
        height: auto;
        aspect-ratio: 880/455;
    }
}

@media (min-width: 767px) {

    .booking-form,
    .vehicle-options,
    .order-details {
        width: 880px !important;
    }
}

@media (min-width: 992px) {
    .step-header {
        position: relative;
        flex: 1 0 auto;
    }

    .step-point {
        position: absolute;
        top: 2px;
        left: 0;
    }

    .status-timeline {
        max-width: 66rem;
    }
}

.custom-checkbox input:checked+.checkbox-box {
    background-color: black;
}



/* Hide the default checkbox */
.variant-addon {
    display: none;
}

.variant-addon+.text-base {
    position: relative;
    padding-left: 30px;
}

/* .variant-addon+.text-base::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border: 1px solid black;
    border-radius: 4px;
    background-color: transparent;
}

.variant-addon:checked+.text-base::before {
    background-color: var(--primary-color);
    border: 1px solid #fff;
} */

.step>.absolute {
    top: 45px;
}

.back-button::before {
    content: url('data:image/svg+xml;base64,CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTQiIGhlaWdodD0iMTEiIHZpZXdCb3g9IjAgMCAxNCAxMSIgZmlsbD0ibm9uZSI+CjxwYXRoIGQ9Ik0xMi4zMzM3IDUuNUgxLjY2Njk5TTEuNjY2OTkgNS41TDUuNjY2OTkgMS41TTEuNjY2OTkgNS41TDUuNjY2OTkgOS41IiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjEuNSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+Cjwvc3ZnPgo=');
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 5px;
}

.product-image {
    width: 172px;
    height: 104px;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* signup page register page */
.signup-form {
    max-width: 880px !important;
    margin-top: 79px;
    margin-bottom: 155px;
    border-radius: 16px !important;
}

.signin,
.reset-pass {
    height: 100dvh;
}


.signin-form {
    max-width: 576px !important;
    /* margin-top: 79px;
    margin-bottom: 155px; */
    border-radius: 16px !important;
}

.sign_up,
.sign_in,
.reset-pass {
    /* border: 1px solid var(--border-color); */
    border-radius: 16px;
}

.signup-form input,
.signin-form input {
    border: 1px solid var(--border-color);
    border-radius: 6px;
    height: 3rem;
}


.signup-form .input:not(input) {
    height: 48px !important;
}

.sign_up .form-label,
.sign_in .form-label {
    display: none;
}

.signupbtn {
    padding: 24px 64px;
}

.select-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.custom-select {
    width: 100%;
    padding: 0.5rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    background-color: white;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-right: 2.5rem;
    font-size: 13px;
    background-image: url("data:image/svg+xml,%3Csvg width='15' height='9' viewBox='0 0 15 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.88959 8.24005C7.75798 8.24081 7.62752 8.21559 7.50568 8.16582C7.38384 8.11606 7.27303 8.04273 7.17959 7.95005L1.17959 1.95005C1.08586 1.85709 1.01146 1.74649 0.960696 1.62463C0.909928 1.50277 0.883789 1.37206 0.883789 1.24005C0.883789 1.10804 0.909928 0.977333 0.960696 0.855474C1.01146 0.733614 1.08586 0.623013 1.17959 0.53005C1.36695 0.343799 1.6204 0.239258 1.88459 0.239258C2.14877 0.239258 2.40223 0.343799 2.58959 0.53005L7.88959 5.83005L13.1796 0.53005C13.367 0.343799 13.6204 0.239258 13.8846 0.239258C14.1488 0.239258 14.4022 0.343799 14.5896 0.53005C14.6833 0.623013 14.7577 0.733614 14.8085 0.855474C14.8592 0.977333 14.8854 1.10804 14.8854 1.24005C14.8854 1.37206 14.8592 1.50277 14.8085 1.62463C14.7577 1.74649 14.6833 1.85709 14.5896 1.95005L8.58959 7.95005C8.40333 8.1348 8.15193 8.23895 7.88959 8.24005Z' fill='%237E8299'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    height: 48px;
    padding-left: 12px;
    padding-top: 18px;
    font-weight: 500;
}



/* Focus state */
.custom-select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 1px #3b82f6;
}

.ts-wrapper.multi.has-items .ts-control {
    border-radius: 6px;
}

.ts-wrapper.plugin-remove_button .item {
    font-size: 13px;
    color: black;
}

.ts-dropdown [data-selectable].option {
    border-bottom: 1px dashed lightgrey;
    padding: 12px;
}

.ts-dropdown [data-selectable].option:last-child {
    border-bottom: 0;
}

.business-type {
    display: block !important;
}

.file-upload {
    height: 48px;
}

.file-upload label {
    padding: 8px 24px !important;
}

/* Base radio style */
input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 6px;
    height: 6px;
    padding: 6px;
    border: 1px solid #131E3D !important;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    outline: none;
}

/* Checked state */
input[type="radio"]:checked {
    border: 4px solid #131E3D;
    /* thicker border when checked */
}

.vehicle-radio:checked::before,
.exterior-color:checked::before,
.interior-color:checked::before {
    width: 8px;
    height: 8px;
    background-color: white !important;
}

/* .exterior-color:checked::before {
    width: 8px;
    height: 8px;
    background-color: white !important;
} */

/* Inner dot when checked */
input[type="radio"]:checked::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    background-color: #131E3D;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}



/* tailwind classes */
.w-4 {
    width: 1rem;
}

.top-6 {
    top: 14px;
}

/* @media (min-width: 768px) {
    .md\:w-7\/12 {
      width: 58.333333%;
    }
    .md\:w-5\/12 {
        width: 41.666667%;
      }
  } */

.conset-popup {
    width: 878px;
}

.download-btn {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 24px;
    border-radius: 6px;
}

.table-bg {
    background-color: #F7F8FF;
}

.booking-listing {
    background-color: #F7F8FF;
    padding: 20px;
    border: 1px solid #C9D0E4;
}

.booking-listing table th {
    font-size: 14px;
    color: #A1A5B7;
    font-weight: 500;
    line-height: 0;
}

.booking-listing table td {
    font-size: 15px;
    color: var(--primary-color);
    line-height: 0;
}

span.status-unpaid {
    color: #FF8E3E;
    border: 1px solid #FF8E3E;
    padding: 5px 10px;
    font-size: 15px;
    border-radius: 4px;
    background-color: #FFF1E7;
}
span.status-paid {
    color: #15803d;
    border: 1px solid #15803d;
    padding: 5px 10px;
    font-size: 15px;
    border-radius: 4px;
    background-color: #22c55e1a;
}
span.status-partially-paid {
    color: #b45309; 
    border: 1px solid #f59e0b; 
    background-color: #fef3c7; 
    padding: 5px 10px;
    font-size: 15px;
    border-radius: 4px;
}

.upload-doc-popup {
    width: 100%;
    max-width: 700px !important;
    margin: 0 20px;
}

input.vehicle-radio,
input.exterior-color,
input.interior-color {
    border: 1px solid white !important;
}

/* Style for the radio button when checked */

.privacy-policy-popup,
.upload-payment-popup,
.feedbackform,
.feedbackdetailModal {
    background-color: rgba(0, 0, 0, 0.72) !important;
    backdrop-filter: blur(8px) !important;
}

.logout {
    color: var(--tw-gray-800);
}

/* // timeline css */

.step-tracker {
    position: relative;
    display: flex;
    justify-content: space-between;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-direction: row;
}

.step-item {
    position: relative;
    flex: 1 1 0%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.step-item::before {
    content: '';
    position: absolute;
    top: 58px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 4px;
    background-color: #D1D5DB;
    z-index: 0;
}

.step-item.completed::before {
    background-color: #22396D;
}

.step-item:first-child::before {
    display: none;
}

.step-dot {
    position: relative;
    z-index: 10;
}

.step-label {
    margin-bottom: 32px;
    font-size: 16px;
    line-height: 1rem;
    width: 140px;
    height: 16px;
}

.stepper-container {
    overflow: hidden;
    border-radius: 0.5rem;
    padding: 1.5rem;
    width: 100%;
}

.step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 58px;
    left: 5%;
    width: 100%;
    height: 4px;
    background-color: #D1D5DB;
    z-index: 0;
}

.step-item.completed:not(:last-child)::after {
    background-color: var(--secondary-color);
}

/* ------------------ */
/* Timeliine Mobile Styles ▼ */
/* ------------------ */
@media (max-width: 991px) {
    .step-tracker {
        flex-direction: column;
        gap: 2rem;
    }

    .step-item {
       flex-direction: row-reverse;
        align-items: center;
        justify-content: flex-end;
    }

    .step-label {
        margin: 0 0 0 16px;
        width: auto;
        height: auto;
    }

    .step-item::before,
    .step-item:not(:last-child)::after {
        top: 24px;
        left: 10px;
        transform: none;
        width: 4px;
        height: 100%;
        /* display: none; */
    }

    .step-item:first-child::before, .step-item:last-child::before {
        display: none;
    }

    .step-item:not(:last-child)::after {
        background-color: #D1D5DB;
    }

    .step-item.completed:not(:last-child)::after {
        background-color: var(--secondary-color);
    }
}

@media (max-width:767px) {
    .font-32 {
        font-size: 22px;
        line-height: 30px;
    }

    .text-xl {
        font-size: 1rem !important;
        line-height: 1.25rem !important;
    }

    .header-logo {
        width: 190px;
        height: 20px;
    }

    .custom-width-box {
        width: 120px;
        height: 140px;
    }

    .menu a {
        color: black !important;
        text-align: left;
    }

    .step label {
        width: 100%;
    }

    .ext-color,
    .int-color {
        width: 100% !important;
    }
}

.custom-checkbox {
    display: inline-block;
    width: 12px;
    height: 12px;
    border: 1px solid #868C9B;
    border-radius: 2px;
    position: relative;
    flex-shrink: 0;
}

.variant-addon:checked+.custom-checkbox::after {
    content: '';
    position: absolute;
    border-radius: 2px;
    width: 9px;
    height: 9px;
    background-color: var(--primary-color);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#ajax-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    background: #000;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinner-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#loader {
    border: 4px solid #f3f3f3;
    border-radius: 50%;
    border-top: 4px solid #e00216;
    width: 45px;
    height: 45px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    margin-bottom: 30px;
}

.logo-below-spinner {
    max-width: 350px;
    width: auto;
    height: auto;
    display: block;
}

/* Safari */
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.in-review {
    border: 1px solid #FF8E3E;
    color: #FF8E3E;
    background-color: #FFF1E7;
}

.feedback-list td {
    color: var(--primary-color);
    font-size: 15px;
    font-weight: 600;
}

.feedback-list thead th {
    font-size: 14px;
    font-weight: 500;
    color: #A1A5B7;
}

.feedback-list thead {
    border-bottom: 2px dotted;
    border-color: var(--border-color);
}

.new-listing {
    font-size: 15px;
}

.star-rating {
    color: #FF8E3E !important;
    font-size: 18px !important;
}

.rating-item:focus {
    outline: none !important;
    box-shadow: none !important;
}

.d-label label {
    display: block !important;
}
.cell-phone, .phone-no, .time, .cnic
{
    display: block !important;
   
}
#user_cell_number, #user_phone_number, #phone_number, #time, #user_cnic {
    padding-top: 10px !important;
}
@media (max-width: 430px) {
  .menu-item {
    
    /* display: none !important; */
  }
}

.slip-wrapper {
    border: 2px solid;
    border-color: rgba(229, 231, 235, var(--tw-border-opacity));
    border-radius: 16px;
    pointer-events: none;
    user-select: none;
}

