﻿/*********************************
    ******************************
    New design system 
    *******************************
    *****************************/
// ── Brand / Primary ──
@color-primary: #067E5E;
@color-primary-dark: #055A43;
@color-primary-focus: #078A67;
@color-primary-bg: #E6F4F0;
@color-primary-bg-hover: #D4EDE7;

// ── Semantic: Success ──
@color-success: #059669;
@color-success-bg: #d1fae5;
@color-success-dark: #065f46;

// ── Semantic: Warning / Amber ──
@color-warning: #d97706;
@color-warning-bg: #fef3c7;
@color-warning-dark: #b45309;

// ── Semantic: Danger ──
@color-danger: #dc2626;
@color-danger-dark: #b91c1c;
@color-danger-bg: #fee2e2;

// ── Semantic: Info / Blue ──
@color-info: #1d4ed8;
@color-info-bg: #dbeafe;

// ── Neutral Gray Scale ──
@color-white: #ffffff;
@color-gray-50: #f9fafb;
@color-gray-100: #f3f4f6;
@color-gray-200: #e5e7eb;
@color-gray-300: #d1d5db;
@color-gray-400: #9ca3af;
@color-gray-500: #6b7280;
@color-gray-600: #4b5563;
@color-gray-700: #374151;
@color-gray-800: #1f2937;
@color-gray-900: #111827;
@color-black: #000000;

// ── Surface / Background ──
@color-bg-page: #f5f6fa;
@color-bg-card: #ffffff;
@color-bg-sidebar: #ffffff;
@intials-bg: #F0F2FE;

// ── Borders ──
@color-border: #e9ecef;
@color-border-light: #f0f0f0;
@color-border-card: #f3f4f6;
@color-border-stat-card: #E5E6F1;
@color-border-base: #dddddd;
@color-border-input: #D1DBE6;
@color-border-icon-btn: #8A8FA9;

// ---pastel from fleet 2.0

@pastel-red: #FEF2F2;
@pastel-yellow: #fafbed;
@pastel-orange: #FFF7ED;
@pastel-green: #13b6a51c;
@pastel-blue: #EFF6FF;
@pastel-purple: #FAF5FF;
@pastel-slate-100: #F1F5F9;

// ── Scrollbar ──
@color-scrollbar-thumb: @color-gray-300;
@color-scrollbar-track: transparent;

// ── Text ──
@color-text-primary: #111827;
@color-text-secondary: #374151;
@color-text-muted: #6b7280;
@color-text-faint: #9ca3af;
@color-text-inverse: #ffffff;
@color-text-tooltip: #1f2937;

/*// ── Typography ──
@font-family-base: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;*/

@font-size-xs: 10px;
@font-size-sm: 11px;
@font-size-base: 12px;
@font-size-md: 14px;
@font-size-lg: 16px;
@font-size-xl: 18px;
@font-size-1xl: 20px;
@font-size-2xl: 22px;
@font-size-3xl: 28px;

@font-weight-normal: 400;
@font-weight-medium: 500;
@font-weight-semibold: 600;
@font-weight-bold: 700;

@line-height-tight: 1.2;
@line-height-base: 1.5;

// ── Spacing ──
@space-1: 4px;
@space-2: 8px;
@space-3: 10px;
@space-4: 12px;
@space-5: 14px;
@space-6: 18px;
@space-7: 20px;
@space-8: 22px;
@space-9: 28px;

// ── Border Radius ──
@radius-sm: 6px;
@radius-md: 8px;
@radius-lg: 10px;
@radius-xl: 12px;
@radius-full: 9999px;

// ── Shadows ──
@shadow-card: 0 1px 4px rgba(0, 0, 0, 0.07);
@shadow-sidebar: 2px 0 8px rgba(0, 0, 0, 0.05);
@shadow-focus-primary: 0 0 0 3px rgba(6, 126, 94, 0.12);

// ── Transitions ──
@transition-fast: 0.15s ease;
@transition-base: 0.2s ease;

// ── Responsive Breakpoints ────────────────────────────────────
//
//   "Up" variables (min-width) — use for mobile-first rules:
//     @media (min-width: @screen-md) { … }   → tablets and above
//
//   "Down" variables (max-width) — use for "less than" overrides:
//     @media (max-width: @screen-sm-max) { … } → phones only
//
//   Device reference:
//     xs   < 576 px   phones portrait
//     sm   ≥ 576 px   phones landscape
//     md   ≥ 768 px   tablets portrait
//     lg   ≥ 992 px   tablets landscape / small laptop
//     xl   ≥ 1200 px  desktop
//     xxl  ≥ 1400 px  large desktop
//     3xl  ≥ 1920 px  wide / ultra-wide screens
// ─────────────────────────────────────────────────────────────

// min-width breakpoints (mobile-first / "up")
@screen-xs: 0px;
@screen-sm: 576px;
@screen-md: 768px;
@screen-lg: 992px;
@screen-xl: 1200px;
@screen-xxl: 1400px;
@screen-3xl: 1920px;

// max-width breakpoints ("down" / "less than next tier")
// Each value is (next breakpoint − 1 px) to avoid overlap.
@screen-xs-max: (@screen-sm - 1); // 575 px  — phones portrait only
@screen-sm-max: (@screen-md - 1); // 767 px  — phones (portrait + landscape)
@screen-md-max: (@screen-lg - 1); // 991 px  — up to tablet portrait
@screen-lg-max: (@screen-xl - 1); // 1199 px — up to small laptop
@screen-xl-max: (@screen-xxl - 1); // 1399 px — up to desktop

// Custom mid-point used for toolbar / list-height adjustments
@screen-tablet-lg: 900px; // between md and lg (tablet landscape edge)


// ============================================================
//   GLOBAL SCROLLBAR
// ============================================================
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: @color-scrollbar-track;
}

::-webkit-scrollbar-thumb {
    background: @color-scrollbar-thumb;
    border-radius: @radius-full;

    &:hover {
        background: @color-gray-400;
    }
}

* {
    scrollbar-width: thin;
    scrollbar-color: @color-scrollbar-thumb @color-scrollbar-track;
}
/***************************************************************
    New design system 
    ************************************************************/
// ============================================================
//   BUTTONS — .btn base + variant modifiers
//   Usage: <a class="btn btn--primary">…</a>
// ============================================================

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: @space-1;
    height: 40px;
    padding: 0 @space-4;
    border-radius: @radius-md;
    font-family: @font-family-base;
    font-size: @font-size-base;
    font-weight: @font-weight-medium;
    line-height: @line-height-tight;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    border: 1px solid transparent;
    transition: background @transition-fast, border-color @transition-fast, color @transition-fast, box-shadow @transition-fast;
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.08);
    transition: 0.5s ease all;

    .k-button-text {
        display: flex;
        align-items: center;

        i {
            @media(max-width:@screen-sm) {
                font-size: 14px;
            }
        }
    }

    @media(max-width:@screen-sm) {
        font-size: @font-size-sm;
        padding: 0 @space-2;
        /*  height: auto;*/
    }

    &:focus-visible {
        outline: none;
        box-shadow: @shadow-focus-primary;
    }

    &--primary {
        background: @color-primary;
        color: @color-text-inverse;
        border-color: @color-primary;

        .k-button-text {
            height: 100%;
        }

        span.btn-arrow {
            background: #055A43;
            height: 100%;
            width: 25px;
            margin-right: -12px;
            border-radius: 0 8px 8px 0px;
            margin-left: 5px;
            display: flex;
            align-items: center;
            justify-content: center;

            @media(max-width:@screen-sm) {
                width: 20px;
            }
        }

        &--icon {
            padding: 0 8px;

            .material-symbols-outlined {
                font-size: 16px;
            }
        }

        .k-button {
            height: 100%;
            background: @color-primary;
            color: @color-text-inverse;
            font-size: @font-size-base;
            border: 0px !important;
            padding-left: 0;

            @media(max-width:@screen-sm) {
                font-size: @font-size-sm;
            }
        }

        &:active,
        &:hover, &:focus, &:focus-visible {
            background: @color-primary-dark !important;
            border-color: @color-primary-dark;
            color: @color-text-inverse;

            .k-button {
                background: @color-primary-dark;
                border-color: @color-primary-dark;
                color: @color-text-inverse;
                border: 0px !important;
            }
        }
    }

    &--secondary {
        background: @color-white;
        color: @color-black;
        border-color: @color-border-input;

        &--icon {
            padding: 0 8px;

            .material-symbols-outlined {
                font-size: 16px;
            }
        }

        .k-button {
            font-size: @font-size-base;
            border: 0px !important;
            padding-left: 0;
        }

        &:hover {
            background: @color-gray-50;
            border-color: @color-gray-400;
            color: @color-text-primary;
        }
    }

    &--ghost {
        background: transparent;
        color: @color-text-muted;
        border-color: transparent;

        &:hover {
            background: @color-gray-100;
            color: @color-text-secondary;
        }
    }


    // .btn--danger and .btn--destructive are identical — use either
    &--danger,
    &--destructive {
        background: transparent;
        color: @color-danger;
        border-color: @color-danger;

        &--icon {
            padding: 0 8px;

            .material-symbols-outlined {
                font-size: 16px;
            }
        }

        &:hover {
            background: @color-danger-bg;
            border-color: @color-danger;
            color: @color-danger;
        }
    }
    // ── Size modifiers ──
    &--sm {
        padding: 5px @space-3;
        font-size: @font-size-base;
    }

    &--lg {
        padding: 10px 20px;
        font-size: @font-size-lg;
    }
    // ── Icon-only square ──
    &--icon {
        padding: 0;
        width: 36px;
        height: 36px;
        border-radius: @radius-md;
        font-size: 18px;
    }
}

.btn:disabled {
    opacity: 1!important;
}
// ============================================================
//   BUTTONS — .btn base + variant modifiers
//   Usage: <a class="btn btn--primary">…</a>
// ============================================================


/*******Defaults variables *******/
@font-family-base: 'Open Sans', sans-serif;

/**********COLORS***********/
@text-color: #2C2C2C;
@text-light: #74817C;
@primary-blue: #03A57F;
@primary-green: #03A57F;
@light-green: #DAEBE9;
@hover-blue: #1e40af;
@bg-dark-blue: #082C4E;
@box-border-color: #ECECEC;
@link-color: #4B8BF2;
@background: #F2F6FB;
@border-color: #D4D4D4;
@bg-light-white: #F5F5F5;
@warning: #F97D34;
@admin-btn-color: #00368C;

/****FONT SIZES***********/
@page-title: 20px;
@card-title: 16px;
@block-heading: 14px;
@body-size: 12px;
@small-text: 10px;

/******Repsonsive screen ********/
@screen-sm: 576px;
@screen-md: 768px;
@screen-lg: 992px;
@screen-xl: 1200px;

/*******Defaults*******/

.page-title {
    font-size: @page-title;
    font-weight: 600;
    margin: 20px 0;
}

.section-card-title {
    font-size: @card-title;
    font-weight: 600;
    margin-bottom: 5px;
}

.block-heading {
    font-size: @block-heading;
    font-weight: 600;
}

body {
    width: 40% !important;
    margin: auto;

    @media only screen and (max-width:1200px) {
        width: 60% !important;
        margin: auto;
    }

    @media only screen and (max-width:992px) {
        width: 80% !important;
        margin: auto;
    }

    @media only screen and (min-width:767px) {
        background: #F2F5FB !important;
        /* width: 40% !important;*/
        margin: auto;
        height: 100vh;
        z-index: 9999999;
        display: table;
        box-shadow: 0px 4px 4px rgba(1, 1, 1, 4%), 0px 0px 5px rgba(51, 51, 51, 16%);
        padding-top: 0;
        position: relative;
    }

    @media only screen and (max-width:767px) {
        width: 100% !important;
        margin: auto;
    }
}

html, body {
    font-family: @font-family-base;
    color: @text-color !important;
    font-size: @body-size;
    background: @background;
    /* scrollbar-color: @text-light @box-border-color;*/

    p {
        color: @text-color;
    }
}

.text-green {
    color: @primary-green !important;
}

.text-dark-green {
    color: #03604a;
}

.text-warning {
    color: @warning;
}

.color-inherit {
    color: inherit !important;
}

.link-color {
    color: @link-color;
}

.text-default-light {
    color: @text-light;
}

.bg-light-grey {
    background: #F1F1F1 !important;
}

.bg-green {
    background: @primary-green !important;
    color: #fff !important;
}

.bg-admin-blue {
    background: @admin-btn-color !important;
    color: #fff !important;
}

.bg-light-green {
    background: @light-green !important;
}

.body-bg {
    background: @background;
}

.font-8 {
    font-size: 8px;
}

.font-10 {
    font-size: @small-text;
}

.font-12 {
    font-size: @body-size;
}

.font-14 {
    font-size: @block-heading;
}

.font-16 {
    font-size: @card-title;
}

.font-20 {
    font-size: @page-title;
}
/*****FONT Weight*********/
.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

.w-30 {
    width: 30%;
}
/* =========================
   Custom Scrollbar Styling
   ========================= */
* {
    scrollbar-width: thin;
    scrollbar-color: #f6f6f6 #fff;
}


/*******Login***********/
.signup-link {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    /*  color: #012B56; */
    color: @primary-green;
    padding: 8px 0px;
    border-radius: 6px;
    transition: all 0.3s ease-in-out;
    text-decoration: underline !important;
}

.signup-link:hover {
    color: #011831;
}

#hero {
    background: #F9F8F9;
}

.bg-green-double {
    background: linear-gradient(to bottom, @primary-green 400px, white 50%);
}

.login-banner-img {
    width: 115px;
    float: right;
    padding: 0px 5px 0 0;
    margin-top: -30px;
}

.banner-form {
    padding: 20px 0px;
    height: 100vh;
    justify-content: start;
    display: flex;
    flex-direction: column;

    .input-group-text {
        border-radius: 0;
    }

    .form-control {
        box-shadow: none;
        /* height: 35px;*/
        border-radius: 0px;
    }

    .input-group .input-group-text {
        background: transparent;
    }

    .k-tabstrip > .k-content:focus,
    .k-tabstrip-content:focus {
        outline-color: transparent;
    }
}

.login-logo {
    background: white;
    border-radius: 50px;
    padding: 5px 10px;
    width: 100px;
    margin-left: 5px;
}

.passwrd-group {
    position: absolute;
    right: 10px;
    bottom: 10px;
    z-index: 2;
    color: #74817C;
}

.login-phone-dropdown {

    .k-dropdownlist {
        border: 0;
        position: relative;
        background: transparent !important;
        height: 100%;

        &:focus, &:focus-within {
            box-shadow: none !important;
            background: transparent !important;
        }
    }

    .k-animation-container {
        top: 46px !important;
        bottom: auto !important;
        left: 0 !important;
    }
}

#app {
    min-height: 100vh;
}

.login-page {
    height: 100vh;
    background: white;
}

.form-inner-mob {
    background: white;
    border-radius: 27px 25px 0 0;
    padding: 25px;
    margin-top: 40px;
    /* .form-control {
        height: 45px;
    }*/
}

.back-line {
    position: relative;
    margin-bottom: 10px;
    display: block;


    &::before {
        content: "";
        background: #ddd;
        width: 100%;
        height: 1px;
        position: absolute;
        left: 0;
        top: 10px;
    }

    span {
        background: white;
        position: relative;
        padding: 0 10px;
    }
}

.login-footer {
    background: #f4f4f4;
    position: absolute;
    width: 100%;
    bottom: 0px;
    text-align: center;
    padding: 5px 0px;
    color: #0E3054;
}
/*********top menu ********/
section.menu-top {
    padding: 10px 0 !important;
    background: #fff;
    display: block;
    border-bottom: 1px solid #ddd;
    width: 100%;
    /*    box-shadow: 0 0 10px #bebdbd;*/
}
/*********sidebar ********/

.sidebar {
    height: 100%;
    width: 0;
    position: absolute;
    top: 0;
    /*right: 0;*/
    left: 0;
    background-color: #0000009e;
    overflow-x: hidden;
    transition: .5s;
    z-index: 11111;

    .closebtn {
        font-size: 36px;
        margin-left: 0;
        text-align: right;
        line-height: 17px;
        display: flex;
        height: 100%;
        color: transparent;
    }
}

.inner-sidebar {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;

    .btn-border {
        border-color: @text-color;
        background: white;
        color: @text-color;
        padding: 5px 12px;
        line-height: normal;
        font-weight: 500;
        border-width: 1px;
        transition: 0.5s ease all;
        display: flex;
        align-items: center;

        &:hover, &:focus, &:focus-within, &:focus-visible {
            background: @box-border-color;
            color: @text-color !important;
        }
    }
    /***MENUS List***/
    .menu-list {
        li {
            a {
                font-size: 14px;
                padding: 12px 0;
                display: block;
                color: @text-color !important;
                display: flex;
                align-items: center;
                border-radius: 0 50px 50px 0;
                text-decoration: none;

                &.active, &:hover, &:active {
                    background: #EBF7F4;
                    font-weight: 500;
                }
            }

            button {
                font-size: 16px;
            }
        }
    }
}
.btn-select .k-button {
    background: #fff !important;
    color: @text-color !important;
    border-color: @text-color !important;
    margin-top: 10px;
}
.border-dashed {
    border-style: dashed !important;
}
.cursor-pointer {
    cursor: pointer !important;
}


.company-logo-nav {
    background: #f4f5f5;
    padding: 5px 10px;
    border-radius: 4px;
    line-height: 13px;
    font-size: 12px;
    margin-bottom: 15px;
    display: inline-block;
}

.storagenumber {
    background: #eee;
    padding: 5px 15px;
    border-radius: 27px;
}

.menu-green {
    background: var(--new-green);
    border-radius: 4px;
    padding: 10px 15px;
}

.menu-green > img {
    filter: brightness(0) invert(1);
    display: block;
    margin-bottom: 9px;
}

.client-detail {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 50px;
    padding: 4px 7px;
    line-height: normal;
    background: #f5f5f5;
    width: max-content;

    .company-customer-menu-logo {
        margin-left: 0;
        margin-right: 1px;

        img {
            max-height: 16px;
            filter: grayscale(1);
        }
    }

    .company-logo {
        font-size: 12px;
        font-weight: 600;
        color: #74817c;
        height: auto;
        width: auto;
    }
}


.company-customer-top-logo img {
    max-height: 30px;
}


/*******Default form ********/
.form-control {
    border-color: @border-color;
    height: 35px;
    font-size: 12px;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: @radius-md;
    display: flex;
  /*  &.dropdownlist {
        display: inline-flex;
    }
*/
    @media (max-width:@screen-md) {
        height: 44px;
    }

    &:hover,
    &:focus {
        box-shadow: none;
    }
}

.custom-input {
    border: 1px solid #D0D1D2 !important;
    border-radius: 0px !important;
    box-shadow: 0px 4px 4px rgba(51, 51, 51, 0.1), 0px 4px 16px rgba(51, 51, 51, 0.1);
    height: 43px;
    appearance: auto !important;
    margin-bottom: 10px;

    &:hover, &:focus {
        outline: none !important;
        box-shadow: none !important;
    }
}

.list-unstyled {
    a {
        color: inherit;
    }
}

/*.option-listing {
    margin: 0;
    padding: 0;
    list-style: none;

    li {
        padding: 0px 0;

        a {
            transition: 0.3s ease all;
            display: inline-block;
            width: 100%;
            padding: 7px 0;
            color: inherit;

            &.active {
                background: @box-border-color;
                padding-left: 5px;
            }

            &:hover {
                background: @box-border-color;
                padding-left: 5px;
            }
        }
    }
}*/
/*******LOGIN PAGE *******/
/*.navbar-brand {
    width: 120px;
    display: block;
}

.login-form {
    padding: 60px 30px;
    background: #fff;*/
/*border-radius: 4px;*/
/*box-shadow: 0px 4px 4px rgba(51, 51, 51, 0.04), 0px 4px 16px rgba(51, 51, 51, 0.08);
    height: calc(100vh - 96px);

    h6 {
        font-size: 18px;
        font-weight: 400;
    }

    h2 {
        font-weight: 500 !important;
        font-size: 24px !important;
    }

    .form-control {
        border-color: #ddd;
        height: 35px;
        font-size: 14px;
    }

    .k-input:focus,
    .k-input:focus-within {
        box-shadow: none;
        border-color: #86b7fe !important;
    }

    label {
        font-size: 14px;
        margin-bottom: 5px;
    }
}

label {
    font-size: 12px;
    margin-bottom: 5px;
}

.back-line {
    position: relative;
    margin-bottom: 10px;
    display: block;

    span {
        background: white;
        position: relative;
        padding: 0 10px;
    }

    &:before {
        content: "";
        background: #ddd;
        width: 100%;
        height: 1px;
        position: absolute;
        left: 0;
        top: 10px;
    }
}

.login-bg {
    background: #FAFAF9 !important;
}

.app {
    display: flex;
    align-content: center;
    justify-content: center;
}

.top-row {
  
    height: 4.5rem !important;
    display: flex;
    align-items: center;
    z-index: 4 !important;
    background: #fff !important;
    text-transform: capitalize;
    border-bottom: 1px solid #ddd;
}

.login-hero img {
    width: 90%;
}*/
.bg-stroke {
    stroke: #d5f1ea;
}

.brand-stepper {
    stroke: @primary-green;
}

.passwrd-group {
    position: absolute;
    right: 10px;
    bottom: 6px;
    z-index: 3;
    color: @text-light;
}

.btn.login-btn {
    background: @primary-green;
    color: #fff;
    padding: 7px;
    width: 100%;
    text-align: center;
    font-size: 16px;
    border-radius: 4px !important;

    &:hover {
        background: #04b086;
        color: #fff;
    }
}

.opt-btn {
    border: 1px solid #2C2C2C;
    color: #2C2C2C;
    font-weight: 600;
    transition: 0.5s ease all;

    &:hover {
        border: 1px solid #2C2C2C;
        background: #ECECEC;
        color: #2C2C2C;
    }
}
/***************Validation msg ***********************/
.validation-message {
    color: red;
    font-style: italic;
    font-size: 12px;
}
/****************** Loader ************/

.section-loading {
    min-height: 250px;
    text-align: center;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
}

.loader-img-text {
    position: absolute;
    text-align: center;
    top: 30%;

    p {
        text-align: center;
    }
}

.loading-panel-wrapper {
    /* size and appearance that try to match its container with as little CSS as possible,
       you can alter them as necessary for your use case and as per your preferences */
    width: 100%;
    height: 100vh;
    position: absolute;
    z-index: 10003;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0px;

    .loading-panel-overlay {
        background: #fff;
        position: absolute;
        width: 100%;
        height: 100%;
        opacity: 1;
    }

    .loader-img-text {
        position: absolute;
        text-align: center;

        p {
            display: none;
        }
    }
}

.loading-panel-wrapper.small-loader,
.loading-panel-wrapper.medium-loader {
    /* size and appearance that try to match its container with as little CSS as possible,
                                       you can alter them as necessary for your use case and as per your preferences
                                    */
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 10003;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 55px;
    left: auto;
    right: 0;

    .loading-panel-overlay {
        background: #fff;
        position: absolute;
        /*  width: 100%;*/
        height: 100%;
        opacity: 1;
    }

    .loader-img-text {
        position: absolute;
        text-align: center;
    }
}
/*.small-loader {
     .loader-img-text img {
        width: 20% !important;
    }
}

.medium-loader {
    height: 100% !important;
}*/
/************************
 Delete confirm box UI   
 *************************/
/****Delete Telerik POP UP ****/
.k-dialog.delete-pop {
    padding: 25px 0px;
    width: 500px;
    max-width: 100%;
    border-radius: 4px;
    text-align: center;

    .k-dialog-titlebar {
        background: white;
        color: var(--dark-grey);
        /* padding-left: 0;*/
        white-space: normal !important;
        border: 0px;

        label {
            font-size: 14px;
        }
    }

    .k-dialog-actions {
        margin-top: 20px;
        border-top: 0px;
        justify-content: center;
    }

    .k-window-titlebar {
        .k-dialog-titlebar-actions {
            display: none;
        }

        .k-window-title {
            .delete-icon-bg {
                border-radius: 50%;
                background: #f8cfcf;
                border: 7px solid #fbe2e2;
                color: #ea4747;
                display: flex;
                width: 60px;
                height: 60px;
                margin: 0 auto 20px;
                justify-content: center;
                align-items: center;

                .bx-trash {
                    display: block;
                    font-size: 25px;
                }
            }
        }
    }

    .k-dialog-content {
        margin: 0 0px !important;
        /*  padding: 6px 0;*/
        font-size: 12px;
        padding-top: 0;
    }
    /*.k-dialog-buttongroup {
        border-width: 0 0 0 0 !important;
        padding-top: 15px;
    }*/
    /*.k-header {
        border: 0px solid !important;
        padding: 0px 0px !important;
    }*/
}
/************************
 Delete confirm box UI   
 *************************/
/****Delete Telerik POP UP ****/
/*.k-dialog.delete-pop {
    padding: 13px 15px 10px 70px;
    min-width: 400px;
    max-width: 100%;
    box-shadow: none;

    .k-dialog-actions {
        border: 0px solid transparent;
        margin-top: 20px;
    }

    .k-dialog-buttongroup {
        border-width: 0 0 0 0 !important;
        padding-top: 15px;
    }

    .k-header {
        border: 0px solid !important;
        padding: 0px 0px !important;
    }

    .k-button-solid-base {
        background: #fff !important;
        color: @text-light !important;
        border: 1px solid @text-light !important;
        border-radius: 4px !important;
        font-size: 12px;
    }

    .k-button-solid-primary {
        background: #ea4747 !important;
        border-radius: 4px !important;
        color: white !important;
        border: 1px solid #ea4747 !important;
        font-size: 12px;
    }

    .k-dialog-content {
        margin: 0 0px !important;
        padding: 6px 0;
    }

    .k-dialog-titlebar {
        background: white;
        color: var(--dark-grey);
        padding-left: 0;
        white-space: normal !important;
    }

    .delete-icon-bg {
        border-radius: 50%;
        position: absolute;
        background: #f8cfcf;
        padding: 5px;
        border: 7px solid #fbe2e2;
        color: #ea4747;
        top: 19px;
        left: 13px;
    }
}*/
/******Footer********/
footer.footer_section {
    background: #fff;
    padding: 10px 0px;
    /* position: fixed; */
    width: 100%;
    bottom: 0px;
    border-top: 1px solid #ddd;
    z-index: 1030;
}

.ftr-list li a {
    color: var(--primary-color);
}
/*******After login top Menu *******/
.navbar-custom {
    background-color: @bg-dark-blue;
    padding: 0.5rem 0rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 2;

    .navbar-collapse {

        &.show {
            background: transparent !important;

            @media(max-width: 991.92px) {
                background: white !important;
            }
        }
    }

    .navbar-brand {
        color: white !important;
        width: 103px;
        display: flex;
        align-items: center;
        margin-right: 100px;

        @media (max-width: 575px) {
            margin-right: 20px;
        }
    }

    .brand-icon {
        width: 32px;
        height: 32px;
        background: linear-gradient(45deg, #10b981, #06b6d4);
        border-radius: 6px;
        margin-right: 0.75rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-item {
        margin: 0 2rem;
    }

    .nav-link {
        color: rgba(255, 255, 255, 0.9) !important;
        font-size: 13px;
        padding: 0.75rem .2rem !important;
        display: flex;
        align-items: center;
        text-transform: uppercase;
        letter-spacing: 0.025em;
        transition: all 0.2s ease;
        border-bottom: 2px solid transparent;

        &:hover,
        &.active {
            color: white !important;
            border-bottom: 2px solid #fff;
        }

        i {
            margin-right: 0.5rem;
            font-size: 1rem;
        }
    }
    /*.utility-icons {
        display: flex;
        align-items: center;
        gap: 2rem;
        margin-right: 30px;
        margin-left: 30px;
    }

    .utility-btn {
        background: none;
        border: none;
        color: rgba(255, 255, 255, 0.9);
        padding: 0.5rem;
        border-radius: 6px;
        font-size: 14px;*/
    /* width: 40px;
        height: 40px;*/
    /*display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s ease;

        &:hover {
            color: white;
            background-color: #03213D;
        }
    }

    .utility-section {
        border-left: 1px solid #fff;
    }*/

    .user-profile {
        display: flex;
        align-items: center;
        color: white;
        text-decoration: none;
        padding: 0.5rem;
        margin-left: 1rem;
        border-radius: 6px;
        transition: all 0.2s ease;
        cursor: pointer;

        &:hover {
            color: white;
            background-color: #03213D;
            text-decoration: none;
        }

        .user-avatar {
            width: 32px;
            height: 32px;
            background-color: #fff;
            color: #000;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: 12px;
            margin-right: 0.5rem;
        }

        .user-name {
            font-weight: 500;
            font-size: 12px;

            @media (max-width: 540px) {
                display: none;
            }
        }
    }

    .navbar-toggler {
        border: none;
        padding: 0.25rem 0.5rem;

        &:focus {
            box-shadow: none;
        }

        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
    }

    @media (max-width: 991.98px) {
        #navbarNav {
            width: 100%;
            left: 0;
            top: 55px;
            position: absolute;
            height: 100vh;

            .navbar-nav {
                background: white;
                height: 100%;
            }

            .nav-link {
                color: @text-color !important;

                &.active {
                    color: @primary-blue !important;
                    font-weight: 500;
                }
            }
        }
    }
}
/***sub nav menu ****/
.subnavbar-custom {
    background-color: white;
    padding: 0.5rem 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 0 -18px;
    position: sticky;
    top: 50px;
    z-index: 1;
    /* .navbar-brand {
        color: white !important;
        width: 103px;
        display: flex;
        align-items: center;
        margin-right: 100px;

        h6 {
            font-size: 16px;
            font-weight: 600;
        }
    }
*/
    /* .brand-icon {
        width: 32px;
        height: 32px;
        background: linear-gradient(45deg, #10b981, #06b6d4);
        border-radius: 6px;
        margin-right: 0.75rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }*/


    .nav-item {
        margin: 0 2rem;

        .nav-link {
            color: black !important;
            font-size: 13px;
            padding: 0.75rem .2rem !important;
            display: flex;
            align-items: center;
            letter-spacing: 0.025em;
            transition: all 0.2s ease;
            border-bottom: 2px solid transparent;

            &:hover, &.active {
                color: @primary-blue !important;
            }
        }
    }

    @media (max-width: 991.92px) {
        .navbar-collapse.show {
            background: white;
        }

        .navbar-nav {
            display: inline-block;
            margin: 0 auto !important;

            .nav-item {
                display: inline-block;
                margin: 0 .5rem;

                .nav-link {
                    padding: 0.5rem !important;

                    &:hover,
                    &.active {
                        color: #fdfafa !important;
                        background: @bg-dark-blue;
                    }
                }
            }
        }

        h5 {
            display: none;
        }
        /*  .navbar-toggler {
        border: none;
        padding: 0.25rem 0.5rem;

        &:focus {
            box-shadow: none;
        }
    }*/
    }
    /******Telerik component***************/
}
/***mobile booking stepper ****/
.mobile-boooking-stepper {
    white-space: nowrap;
    overflow: scroll;
    scrollbar-width: thin;
    text-align: center;

    .filter-sidebar {
        height: auto;
    }

    li {
        display: inline-block;
        margin-right: 5px;
        max-width: 60px;
        white-space: normal;
        vertical-align: text-top;
        line-height: normal;
    }

    i.bx {
        color: #d1d1d1;
    }
}
/**content */
.page-title-track {
    display: flex;
    margin-bottom: 20px;
    justify-content: space-between;
    align-items: center;

    .page-title {
        font-size: @page-title;
        font-weight: 600;
    }
}

.content {
    margin-top: 20px;
}

.scroll-content {
    height: 200px;
    overflow-y: auto;

    &.user-client {
        height: 60vh;
    }
}

.filter-sidebar {
    background: white;
    box-shadow: 0px 4px 16px 0px rgba(51, 51, 51, 0.08);
    /* position: relative;
    margin-left: 0px;
    height: 88vh;
    padding: 15px;
*/

    position: -webkit-sticky;
    position: sticky;
    top: 5rem;
    /* display: block !important;*/
    height: calc(100vh - 6.5rem);
    padding: 1.2rem;
    margin-left: 0rem;
    overflow-y: auto;

    .filter-title {
        font-size: 14px;
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 10px;
        margin-top: 10px;
    }

    .k-radio-label {
        font-size: 12px;
        margin-left: 5px;
    }

    nav {
        font-size: 14px;

        .list-unstyled {
            font-size: 12px;
            margin-left: 12px;

            a {
                color: inherit !important;


                i.bx {
                    margin-right: 3px;
                    color: #d1d1d1;
                    /*text-shadow: 0px 2px 3px rgba(255, 255, 255, 0.8);*/
                    /*-webkit-background-clip: text;
                    -moz-background-clip: text;
                    background-clip: text;*/
                    margin-right: 5px;
                    font-size: 12px !important;
                }

                &.active-menu {
                    i.bx {
                        color: @primary-green;
                    }
                }
            }

            header {
                font-size: 14px;
                margin-top: 10px;
            }
        }
    }
}

.filter-badge {
    display: inline-flex;
    height: 20px;
    padding: 2px 3px 3px 6px;
    justify-content: center;
    align-items: center;
    gap: 2px;
    flex-shrink: 0;
    border-radius: 20px;
    border: 1px solid #CAD5F7;
    background: #F4F6FB;
    font-size: @small-text;

    .btn {
        padding: 0;
        font-size: 10px;
        line-height: 19px;
        display: inline-flex;
        align-items: center;
    }

    i {
        color: @link-color;
        margin-left: 5px;
        font-size: 10px;
    }
}

.side-fixed {
    position: fixed;
}

.mobile-sticky {
    position: sticky;
    top: 57px;
    background: @background;
}

.mobile-menu-filter {
    display: block;
    /*@media(min-width: 991.92px) {
        display: none;
    }*/

    .filter-sidebar.mobile-sidebar, .mobile--sidebar {
        display: none !important;
        position: fixed;
        background: #fff;
        padding: 11px 11px !important;
        box-shadow: 1px 0px 15px #2C2C2C;
        border-radius: 0;
        top: 56px;
        width: 75%;
        left: 0;
        height: 91%;
        z-index: 1;
        overflow-y: auto;

        div {
            text-align: left;
        }
    }

    .mobile-filter {
        display: block;
        cursor: pointer;
    }

    &:hover .mobile-sidebar {
        display: block !important;
    }
}

.company-logo {
    height: 60px;
    width: 200px;

    img {
        height: 60px;
        width: 200px;
        object-fit: cover;
    }
}

.listing-card {
    background: white;
    margin-bottom: 10px;
    padding: 15px;
    border: 1px solid @box-border-color;
    border-radius: @radius-lg !important;

    .listing-logo {
        border-radius: 50px;
        width: 46px;
        height: 46px;

        .listing-logo-image {
            background: @bg-light-white;
            border: 1px solid #D4D4D4;
            width: 46px;
            height: 46px;
            border-radius: 50px;
            object-fit: cover;
            display: flex;
        }
    }

    .listing-heading {
        font-size: 14px;
        font-weight: 600;
        margin: 0;
    }

    .listing-linking {
        font-size: 12px;
        margin-top: 5px;
        color: @link-color;

        i {
            font-size: 12px;
        }

        span {
            margin-right: 20px;
        }
    }
}
/******Select file selection****/
.select-file-section {
    border-radius: 4px;
    border: 1px dashed @text-light;
    background: white;

    .select-header {
        background: @bg-light-white;
        padding: 15px;
        border-bottom: 1px dashed @text-light;
    }

    .select-body {
        padding: 15px;
        text-align: center;
    }
}
/*****buttons***/
.btn-text {
    background: transparent;
    border: 0;
    padding: 0;
    box-shadow: none;

    &:hover {
        box-shadow: none;
        background: white;
    }
}


.btn {
    font-size: @body-size;
    padding: 5px 11px;
    transition: 0.5s ease all;
   
    @media(max-width: 575px) {
        padding: 5px 5px;
    }
}

.btn-select {
    border: 0px;

    .k-dropzone {
        padding: 0;
        display: inline-block;
    }

    .k-dropzone-hint {
        display: none;
    }

    .k-button {
        padding: 7px 15px;
        background: @text-color;
        color: white;
    }
}

.save {
    /* background: white;
border: 1px solid #B0B8B6;*/
    background: @primary-green;
    border: 1px solid @primary-green;
    color: white;

    &:hover,
    &.focus,
    &:active {
        background: @primary-green !important;
        border: 1px solid @primary-green !important;
        color: white !important;
    }

    i {
        margin-right: 5px;
        color: white;
    }

    span.k-button-text {
        display: flex;
        align-items: center;
    }
}

.cancel {
    background: white;
    border: 1px solid @border-color;
    color: @text-color;

    &:hover,
    &.focus,
    &:active {
        border: 1px solid @border-color !important;
        color: @text-color !important;
        background: #F5F7F7 !important;
    }

    i {
        margin-right: 5px;
    }

    span.k-button-text {
        display: flex;
        align-items: center;
    }
}

.review {
    background: white;
    border: 1px solid @border-color;
    color: @text-color;

    &:hover,
    &.focus,
    &:active {
        border: 1px solid @border-color;
        color: @text-color;
    }

    i {
        margin-right: 5px;
    }

    span.k-button-text {
        display: flex;
        align-items: center;
    }
}

.show {
    background: white;
    border: 1px solid @border-color;
    color: @text-color;

    &:hover,
    &.focus,
    &:active {
        border: 1px solid @border-color;
        color: @text-color;
        background: #F5F7F7;
    }

    i {
        margin-right: 5px;
    }

    span.k-button-text {
        display: flex;
        align-items: center;
    }
}

.opt-btn {
    border: 1px solid @text-color;
    color: @text-color;
    font-weight: 600;

    &:hover {
        border: 1px solid @text-color;
        color: @text-color;
    }
}

.add {
    /* background: white;
border: 1px solid #B0B8B6;*/
    background: @primary-green;
    border: 1px solid @primary-green;
    color: white;
    transition: 0.5s ease all;

    &:hover,
    &.focus,
    &:active {
        /* border: 1px solid !important;*/
        background: #039674 !important;
        color: #fff !important;
    }

    i {
        margin-right: 5px;
    }

    span.k-button-text {
        display: flex;
        align-items: center;
    }
}

.delete {
    background: white;
    border: 1px solid red;
    color: red;

    &:hover,
    &.focus,
    &:active {
        background: white !important;
        border: 1px solid red !important;
        color: red !important;
    }

    i {
        margin-right: 5px;
    }

    span.k-button-text {
        display: flex;
        align-items: center;
    }
}

.edit {
    /* background: white;
border: 1px solid #B0B8B6;*/
    background: @text-color;
    border: 1px solid @text-color;
    color: white;

    &:hover,
    &.focus,
    &:active {
        border: 1px solid @text-color !important;
        background: @text-color !important;
        color: white !important;
    }

    i {
        margin-right: 5px;
        color: white;
    }

    span.k-button-text {
        display: flex;
        align-items: center;
    }
}

.admin-btn {
    background: @admin-btn-color;
    color: white;
    border: 1px solid @admin-btn-color;

    &:hover,
    &.focus,
    &:active {
        border: 1px solid @admin-btn-color;
        background: @admin-btn-color;
        color: white !important;
    }

    i {
        margin-right: 5px;
        color: white;
    }
}

.btn-large {
    padding: 8px 30px;
}

.field-icon {
    background: white;
    border: 1px solid #B0B8B6;
    color: @text-light;
    padding: 6.5px 8px;
    border-radius: 4px;

    &:hover {
        border: 1px solid @border-color;
        color: @text-color;
    }
}

.search-box {
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    background: white;
    height: 35px;

    .k-clear-value {
        border-right: 1px solid #a6a6a6;
        padding-right: 10px;
        margin-right: 10px;
        opacity: .75;
    }

    .search-label {
        background: #F5F7F7;
        min-width: 180px;
        text-align: center;
        height: 100%;
        display: flex;
        align-items: center;
        margin: 0 5px 0 0;
        padding-left: 10px;
        font-size: 10px;
    }

    .btn {
        padding: 0;
        background: transparent;
        border: 0;
        font-size: 18px;
        margin-right: 10px;
        border-radius: 0px;

        &:hover,
        &:focus {
            box-shadow: none;
        }

        &.search-close {
            border-right: 1px solid #ddd !important;
            padding-right: 10px !important;
        }

        .i {
            font-size: 18px;
        }
    }



    .k-dropdownlist {
        height: 100%;
        background: #F5F7F7;
    }

    .k-textbox {
        border: 0;

        &:hover,
        &:focus,
        &:focus-within {
            box-shadow: none;
        }
    }
}

.telerik-dropdown-btn {
    background: white;
    padding: 7px;
    border-color: @border-color;

    &.text-display-none .k-button-text {
        display: none;
    }
}

.service-card-child-white {
}

.share-link-button {
    .k-button {
        background: #fff;
        color: @text-color;
        padding: 7px 7px !important;
        font-size: 12px;
        border: 1px solid @border-color;

        @media(max-width:575px) {
            font-size: 11px;
            justify-content: center !important;
        }

        .k-split-button {
            padding: 7px 3px !important;
        }
    }

    &.booking-share {
        .k-button-text {
            display: none;
        }
    }
}

.add-vehicle-btn,
.create-button {
    .k-button {
        background: @primary-green;
        color: #fff;
        padding: 6px 7px !important;
        font-size: 12px;
    }
}
/****main section lising page*****/
.alert-success {
    border-radius: 0px;
    background: #E6FBEF;
    border: 0px;
}

.alert-info {
    border: 0px;
    border-radius: 0px;
    background: #CDE9F6;
    color: inherit;
}
/***chip (badge) **/
.green-badge {
    background: @light-green;
    border-radius: 20px;
    font-size: 12px;
    padding: 3px 9px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.small-badge {
    background: #EDF3F9;
    border-radius: 20px;
    font-size: 10px;
    padding: 3px 9px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.module-badge {
    background: #EDF3F9;
    border-radius: 20px;
    font-size: 12px;
    padding: 3px 9px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.icon-grey-bg {
    background: @bg-light-white;
    border-radius: 20px;
    color: @text-light;
    padding: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 5px;
}

.active-badge {
    background: #fff;
    color: #2C2C2C;
    font-size: 10px;
    padding: 1px 10px;
    border-radius: 10px;
    border: 1px solid #D4D4D4;
    font-weight: 600;
    width: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.inactive-badge {
    background: #f7f7f7;
    color: @text-light;
    font-size: 10px;
    padding: 1px 10px;
    border-radius: 10px;
    border: 1px solid @border-color;
    font-weight: 600;
    width: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.booking-green-confirm {
    font-size: 10px;
    background: #E7F5EF;
    padding: 3px 6px;
    border-radius: 20px;
    display: inline-flex;
    color: #128161;
    align-items: center;
}

.booking-pending-badge {
    font-size: 10px;
    background: #FFF9E3;
    padding: 3px 6px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    color: #B45309;
}

.booking-price {
    background: #F8FAFC;
    position: relative;
    z-index: 999999;

    &:before {
        content: "";
        position: absolute;
        background: #F8FAFC;
        top: 0;
        bottom: -25px;
        width: 100%;
        height: 160%;
        z-index: 0;
        margin: -13px -8px;
        border-left: 1px solid #ECECEC;
    }
}

.k-card {
    background: white;
    border: 1px solid @box-border-color;
    border-radius: @radius-lg !important;
    font-size: 12px;
    /*  min-height: 300px;*/

    .k-card-header {
        font-size: @card-title;
        font-weight: 600;
        padding: 13px 17px;
        z-index: 0;

        h1, h2, h3, h4, h5, h6 {
            font-size: @card-title;
        }

        p {
            margin: 0;
            font-size: 14px;
        }
    }

    .k-card-body {
        padding: 20px 18px;
    }

    .k-card-footer {
        background: transparent;
        border-width: 0px;
    }
}
/*****Booking nav ***********/


.k-numerictextbox {
    .k-spin-button {
        display: none;
    }

    &.k-disabled {
        background: @box-border-color;
    }
}

.k-switch-on .k-switch-track {
    border-color: @primary-green !important;
    background-color: @primary-green !important;
}

.k-switch-md .k-switch-track {
    height: 24px !important;
}

.k-switch-md .k-switch-thumb {
    height: 24px !important;
}

.custom-pager {
    font-size: 12px;
    padding: 5px;
}

.k-animation-container {
    left: 0;
}
/**telerik dropdown selected color change***/
.k-list-item.k-selected:hover, .k-selected.k-list-optionlabel:hover, .k-list-item.k-selected.k-hover,
.k-selected.k-hover.k-list-optionlabel,
.k-list-item.k-selected, .k-selected.k-list-optionlabel {
    color: @text-color !important;
    background: @box-border-color !important;
}

.input:focus-within {
    box-shadow: none;
}

.k-button-flat-primary {
    color: @primary-blue;
}

button:focus:not(:focus-visible) {
    outline: 0;
    box-shadow: none;
}

.k-popup.k-menu-popup {
    box-shadow: none;
    /*  min-width: 150px !important;*/
    min-height: 100px;
}

.k-dropdownlist {
    &.form-control {
        background: white;
    }
}

.k-split-button {
    &:focus {
        box-shadow: none !important;
    }
}

.k-menu-link {
    font-size: 12px;
}

.k-menu-group .k-item.k-focus > .k-link {
    box-shadow: none;
}

.k-link:active {
    border: 1px solid @box-border-color;
    color: @text-color !important;
    background: @box-border-color !important;
    box-shadow: none !important;
}

.no-record-found {
    text-align: center;
    padding: 50px 0;

    img {
        width: 180px;
    }
}
/*****************Telerik form*********8*/
.cursor-pointer {
    cursor: pointer;
}

.form-check-input[type=radio],
.k-radio {
    border-width: 2px !important;
    background: transparent !important;
    border-color: #1d1d1d !important;

    &:checked {
        color: @text-color;
        border-width: 2px;
        background: transparent !important;
        border-color: #1d1d1d !important;
        box-shadow: inset 0 0 0 0.2em white, inset 0 0 0 1em #1d1d1d !important;
    }
}

.k-checkbox {
    border-width: 2px !important;
    border-radius: 2px !important;
    border-color: #BABABA !important;
    width: 14px;
    height: 14px;
    margin-right: 5px;

    &:checked,
    &.k-checked {
        border-color: @link-color !important;
        color: white;
        background-color: @link-color !important;

        &:focus {
            box-shadow: none !important;
        }
    }
}

.k-grid {
    font-weight: 600;
    background: #F9F9F9;

    .k-table-row.k-selected > .k-table-td {
        background: @background !important;
    }

    .k-table-th {
        border-color: transparent;
        padding: 15px 15px !important;
    }


    .k-column-title {
        font-size: 14px;
        /* padding: 6px;*/
    }

    .k-table-row.k-table-alt-row {
        background: transparent;
    }

    .k-table-td, td {
        border-color: transparent;
        font-size: 12px;
        padding: 10px 15px !important;
    }
}
/*****Telerik Notification*****/
.demo-notification {
    margin-bottom: 65px;
    z-index: 999999 !important;
    text-transform: none !important;
    right: auto !important;

    .k-notification-wrap {
        font-size: 16px !important;
        font-weight: 500 !important;
        padding: 4px 10px !important;
        align-items: center;
        line-height: normal;
    }

    .k-notification {
        width: 100%;
    }

    .notification-parent {
        position: relative;
    }

    .k-notification-container {
        margin: 2px 0;
        display: flex;
        vertical-align: top;
        width: 400px;

        @media(max-width:@screen-sm) {
            right: auto !important;
            width: 360px !important;
        }
    }

    .k-notification-wrap > .k-i-close {
        margin-right: 0;
        margin-left: 4px;
        /* flex: none; */
        cursor: pointer;
        display: inline-block;
        position: absolute;
        top: 16px;
        right: 13px;
    }

    .k-notification-container .k-icon {
        color: #fff;
        line-height: normal;
        font-size: 14px;
    }

    .k-notification-error .k-icon,
    .k-notification-error .k-svg-icon {
        color: red;
    }

    .k-notification-success .k-icon,
    .k-notification-success .k-svg-icon {
        color: #07c597 !important;
    }

    .k-notification-success {
        background: #fff !important;
        color: #454545 !important;
        border-color: #fff !important;
        box-shadow: var(--ds-shadow-overlay, 0 0 1px rgba(9, 30, 66, 0.31), 0 20px 32px -8px rgba(9, 30, 66, 0.25)) !important;
        border-radius: 0px !important;
        padding: 15px 15px !important;
        border-bottom: 3px solid #07c597 !important;
        font-size: 15px;
        font-weight: 500;
    }

    .k-notification-error {
        background: #fff !important;
        color: #454545 !important;
        border-color: #fff !important;
        box-shadow: 0px 4px 9px 2px rgba(0, 0, 0, 0.1) !important;
        border-radius: 0px !important;
        padding: 15px 15px !important;
        border-bottom: 3px solid red !important;
        font-size: 15px;
        font-weight: 500;
    }



    span.k-icon.k-i-success, span.k-icon.k-i-error {
        font-size: 20px;
    }

    .k-notification-wrap > .k-icon {
        margin-right: 14px !important;
        flex: none !important;
    }

    .k-notification-wrap > .k-i-close {
        margin-right: 0 !important;
        margin-left: 4px;
        flex: none;
        cursor: pointer;
    }

    .demo-notification .k-notification-wrap {
        padding: 0px 0px !important;
    }

    .demo-notification .k-notification-wrap .k-notification-content {
        padding-right: 10px !important;
    }

    .k-i-success::before {
        content: "\e11a" !important;
    }

    .k-i-error::before {
        content: "\e11d" !important;
    }
}
/*.upload-doc {
    border: 1px dashed #8e8e8e;
    border-radius: 2px;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}
.upload-doc .k-upload .k-dropzone {
    padding: 0 !important;
    border-color: #222 !important;
}*/

.attach-select-file {
    .k-button {
        background: transparent;
        border: 0px;
        width: 100%;
    }

    .k-upload-button-wrap {
        width: 100%;
    }

    .k-dropzon {
        background: transparent;
    }

    .k-dropzone-hint {
        display: none;
    }
}

.service-name {
    padding-left: 5px;
}
/***********custom grid style div***********/
.data-header {
    margin-bottom: 16px;
    padding: 13px 0;
    border-color: @border-color;
    font-weight: 600;
    background: #f7f7f7;
    font-size: @block-heading;

    .col-summer {
        color: @primary-blue;
    }
}

.data-detail {
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-color: @border-color;

    a {
        &:hover {
            color: @hover-blue !important;
        }
    }
}

.k-chip-solid-base {
    border-radius: 20px;
    background: #f1f1f1;
    border: 0px solid;
    padding: 5px;
}

/***********Custom dropdown ****************/
.custom-pop {
    height: 320px;
    max-width: 580px;
    width: 100%;
    box-shadow: none;


    h5 {
        font-size: 20px;
        font-weight: 600;
    }
}
/************
    Telerik Custom pop- CHECK if it is in use or not
    *************/
.telerik-custom-pop {
    max-width: 40%;

    @media only screen and (max-width:1200px) {
        max-width: 60% !important;
    }

    @media only screen and (max-width:992px) {
        max-width: 80% !important;
    }

    @media only screen and (max-width:767px) {
        max-width: 100% !important;
    }
}
/*************
    Custom dropdown POP UP- - CHECK if it is in use or not
    *****************/
.download-menu {

    .bx-dots-vertical-rounded {
        border: 1px solid #ddd;
        border-radius: 4px;
        padding: 3px 3px;
        cursor: pointer;
        font-size: 20px;
    }

    .download_buttons {
        display: none;

        .add-buttons-inner {
            border-bottom: 1px solid #ddd;
            padding: 7px 10px;
        }

        .btn {
            display: block;
            background: transparent;
            border: 0;
            padding: 0;
            margin: 7px;
        }

        a {
            color: inherit;
        }

        p {
            transition: 0.5s ease all;

            &:hover {
                color: var(--i-darkgrey);
            }
        }
    }
}

.download-menu:hover .download_buttons {
    display: block;
    position: absolute;
    /*  right: 0px;*/
    background: #fff;
    padding: 11px 6px !important;
    box-shadow: 1px 0px 15px #ddd;
    border-radius: 0;
    margin-left: -93px;
    min-width: 120px;
    min-height: 100px;
    width: auto;
    height: auto;
}

.w-max-content {
    width: max-content;
}
/********
    Status
    ***************/
.status-pending,
.text-warning {
    color: #F97D34 !important;
}

.status-approved,
.text-primary {
    color: @primary-green;
}

.status-rejected {
    color: red !important;
}
/*********
    User profile popup
    ********/
.user-popup-window {
    background: @text-color;
    border: 1px solid #fff;

    .icon-grey-bg {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
        border-radius: 50px;
    }

    .k-window-actions {
        background: @text-color;
        padding: 0;

        .btn {
            border: 1px solid #fff;
            border-radius: 0px;
            color: #fff;
        }
    }
}
/*********** 
    Dropdown Pop Up - CHECK if it is in use or not
    ***********/
.extra-buttons button.k-button-solid {
    display: none;
}

.extra-buttons button.k-split-button-arrow {
    display: block;
    border-radius: 4px !important;
    padding: 4px 6px !important;
    border-color: #d5d4d4;
}

.extra-buttons button.k-split-button-arrow .k-i-arrow-s {
    font-family: 'boxicons' !important;
}

.extra-buttons button.k-split-button-arrow .k-i-arrow-s::before {
    content: "\ea16"
}
/*********** 
    Telerik component css
    ***********/

.form-control.text-center input {
    text-align: center;
}

.language-switcher {
    background: transparent !important;
    color: #fff !important;
    border: 0px;
    width: auto;
    margin-right: 5px;
    font-size: 12px;

    &:focus-within {
        box-shadow: none;
    }
}

.inner-page-language {
    .language-switcher {
        color: @text-color !important;
    }
}

.k-popup.k-list-container.k-dropdownlist-popup {
    height: auto !important;
    max-height: 200px;
}

::placeholder {
    color: #ddd;
}

.k-calendar .k-calendar-td.k-selected:hover .k-link {
    background: var(--primary-green) !important;
}

.k-calendar .k-calendar-view .k-today {
    color: var(--primary-green) !important;
}

span.telerik-blazor.k-button-icon.k-icon.k-svg-icon.k-svg-i-caret-alt-down::after {
    content: "\f282"; /* Unicode for 'bi-caret-down-fill' */
    font-family: 'bootstrap-icons';
    font-size: 12px;
    display: inline-block;
}

/* Hide the original SVG */
span.telerik-blazor.k-button-icon.k-icon.k-svg-icon.k-svg-i-caret-alt-down svg {
    display: none;
}

.pac-container {
    z-index: 999999 !important;
    left: 15px !important;
}

.k-calendar .k-calendar-td.k-selected:hover .k-link,
.k-calendar .k-calendar-td.k-selected .k-link {
    background-color: @primary-green !important;
}

.k-calendar .k-calendar-view .k-today {
    color: @primary-green !important;
}

.k-pager-info {
    @media(max-width: @screen-sm) {
        display: none;
    }
}
/*.body-section {
    padding-bottom: 50px;
}*/
.body-detail-scroll {
    max-height: calc(100vh - 25rem);
    overflow-y: auto;
}
/***********
    Sticky button at Bottom 
    ************/
.sticky-bottom-btn a.sticky-btn-a,
.sticky-bottom-btn button {
    position: fixed;
    bottom: 20px; /* Distance from bottom */
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 36.5%;
    z-index: 1000;

    @media only screen and (max-width:@screen-xl) {
        max-width: 55% !important;
    }

    @media only screen and (max-width:@screen-lg) {
        max-width: 73.4% !important;
    }

    @media only screen and (max-width:@screen-md) {
        max-width: 91.4% !important;
    }
}
/********* 
    DAMAGE Capture image SKELTON
    *****************/
.car-wrapper {
    position: relative;
    /* height: 600px;*/
    /* max-width: 100%;*/
    margin: 0 auto;
}

.car-bg {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 8px;
    object-fit: contain;
}

.car-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.car-part {
    fill: rgba(3, 165, 127, 0.3);
    opacity: 0;
    cursor: pointer;
    transition: all 0.2s ease;
    pointer-events: all;

    &.active {
        opacity: 0.8;
        fill: rgb(77, 168, 146);
    }

    &:hover {
        opacity: 0.6;
    }

    &:hover {
        opacity: 0.8;
        fill: rgb(77, 168, 146);
    }
}

.hidden-file-input {
    display: none;
}

.damage-vehicle-info {
    margin-bottom: 20px;

    .damage-vehicle-heading {
        font-weight: 600;
    }

    p {
        line-height: normal;
        color: @text-light;
    }
}

.back-button {
    margin: 20px 5px 0 0;
    color: inherit;
    text-decoration: none;
    i {
        font-size: 20px;
        margin: 2px 5px 0 0;
    }
}
/* Item */
.vehicle-item {
    transition: 0.5s ease all;

    &.selected {
        border-color: @primary-green;
    }

    &:hover {
        border-color: @primary-green;
    }
}

/* Icon */
.vehicle-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    font-size: 14px;
    background: #f1f3f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vehicle-icon .k-icon {
    color: #666;
    font-size: 18px;
}
/* Text */
.vehicle-number {
    font-weight: 600;
    font-size: 15px;
}

.vehicle-desc {
    font-size: 13px;
    color: #777;
}

.left-auto {
    left: auto;
}
/* Image Gallery Overlay */
/*.image-gallery-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-gallery-container {
    background: white;
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.image-gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #dee2e6;
}

.image-gallery-header h5 {
    margin: 0;
    font-weight: 600;
}

.close-gallery {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #6c757d;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-gallery:hover {
    color: #000;
}

.image-gallery-body {
    padding: 20px;
}

.image-item-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #dee2e6;
}

.gallery-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.delete-image-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    background: white;
    color: red;
    border: 1px solid red;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.2s;

    &:hover {
        background: rgb(200, 35, 51);
        transform: scale(1.1);
    }
}*/
.image-loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

/* Upload Image Box Styles */
/*.upload-image-outer {
    width: 100%;
    height: 200px;
}

.upload-image {
    width: 100%;
    height: 100%;
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    background: #f8f9fa;

    &:hover {
        border-color: #007bff;
        background: #e7f3ff;

        span {
            color: #007bff;
        }
    }

    span {
        font-size: 48px;
        color: #6c757d;
        transition: color 0.2s;
    }
}*/

.input-file-custom {
    display: none;
}
.options-list {
    .k-radio-list-item {
        padding: 0;
    }

    span.k-radio-wrap {
        display: none;
    }

    label.k-radio-label {
        width: 100%;
    }
}
@media (max-width: 800px) {
    .car-wrapper {
        width: 100%;
        height: auto;
    }
}
/****** Phone field
    **********/
.phone-field {
    display: flex;

    .k-dropdownlist {
        border-right: 0px;
        border-radius: 4px 0 0 4px;
        width: 90px;
    }

    .k-textbox.k-input {
        border-radius: 0 4px 4px 0;
    }
}
/*************
    Telerik file select custom Design- Upload image
    *********************/
.telerik-file-select {
    display: flex;
    color: inherit;
    height: 160px !important;
    width: 200px;
    border: 2px dashed @box-border-color !important;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    max-width: 100%;

    span {
        position: absolute;
        z-index: 1;
        align-items: center;
        text-align: center;
    }
}
.telerik-file-select-input,
.telerik-file-select-input .k-upload-button k-button,
.telerik-file-select-input .k-dropzone,
.telerik-file-select-input .k-upload-button-wrap {
    width: 100%;
    height: 100%;
    background: white;
    border: 0px;
}

.telerik-file-select-input {

    .k-upload-button-wrap {
        z-index: 1;
        opacity: 0;
    }

    .k-upload-button.k-button {
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
    }

    .k-dropzone {
        z-index: inherit;
    }

    .k-button-text {
        display: none;
    }
}
.image-box {
    padding: 5px;
    border: 2px dashed #ddd !important;
    height: 160px !important;
    display: flex;
    align-items: center;
    justify-items: center;
    position: relative;
    border-radius: 4px;

    img {
        object-fit: scale-down;
        overflow: hidden;
        height: -webkit-fill-available;
        text-align: center;
        margin: 0 auto;
    }

    .delete-icon-btn {
        bottom: 17px;
        right: 10px;
        bottom: 10px;
        position: absolute;
    }

    .download-icon-btn {
        bottom: 17px;
        right: 40px;
        bottom: 10px;
        position: absolute;
    }
}


/**********
    Global Upload Image
    ****************/
.delete-icon-btn {
    cursor: pointer;
    background: white;
    border-radius: 5px;
    padding: 4px;
    color: red;
    right: 10px;
    border: 1px solid red;
    line-height: normal;
}
.download-icon-btn {
    cursor: pointer;
    background: white;
    border-radius: 5px;
    padding: 4px;
    color: @text-color;
    border: 1px solid @border-color;
    line-height: normal;
}

.ant-image-preview-wrap {
    z-index: 11000 !important;
}

.ant-image-img {
    max-width: 100%;
    height: 100%;
}
/*****Address map maker*******/
.map-container {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #dee2e6;
    margin-bottom: 16px;

    @media(max-width:@screen-md) {
        height: 300px;
    }
}

/*******Car Config*************/
.grey-badge {
    display: inline-flex;
    padding: 4px 10px;
    border-radius: @radius-lg;
    background: @color-gray-100;
    font-size: @font-size-sm;
    font-weight: @font-weight-medium;
    color: @color-text-primary;
    border: 1px solid @color-gray-100;
}
.green-badge {
    display: inline-flex;
    padding: 4px 10px;
    border-radius: @radius-lg;
    background: @color-primary-bg;
    font-size: @font-size-sm;
    font-weight: @font-weight-medium;
    color: @color-primary;
    border: 1px solid @color-gray-100;
}
.next-step-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.next-step-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: #F0F2FC;
    display: flex;
    align-items: center;
    justify-content: center;
}

.next-step-text {
    font-size: 13px;
    color: @color-text-primary;
}
