/*--------------------------------------------------------------
General & Defaults
--------------------------------------------------------------*/

body {
    font-size: 14px;
    font-family: "Open Sans", serif;
    /* padding-top: 77px;*/
    /*  color: var(--text-color);*/
    color: #1d201f;
    /* background: #fff !important;*/
    background: #F2F5FB !important;
}

p.lead {
    font-size: 17px !important;
    font-weight: 400 !important;
}

a {
    color: var(--text-color);
    text-decoration: none !important;
}

    a:hover {
        color: inherit;
        text-decoration: none;
    }

h1, h2, h3, h4, h5, h6 {
    /*color: var(--dark-grey);*/
    color: #1D201f;
    font-weight: 600;
}

h1 {
    font-weight: bold;
}

p {
    line-height: 24px;
}

.font-weight-500 {
    font-weight: 500;
}

.font-weight-600 {
    font-weight: 600;
}

.p-2 {
    padding: 20px;
}


.mt-2 {
    margin-top: 20px;
}

.mb-2 {
    margin-bottom: 20px;
}

.pt-100 {
    padding-top: 100px;
}

.pb-100 {
    padding-bottom: 100px;
}

.container-fluid {
    padding-right: var(--bs-gutter-x, 0.75rem);
    padding-left: var(--bs-gutter-x, 0.75rem);
}

.navbar > .container-fluid {
    padding: 0;
}

.hand {
    cursor: pointer;
}

div.shadow {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.2) !important;
}

.relative {
    position: relative;
}

.outer-loader {
    background: #fff;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    /*opacity: 0.2;*/
}

.small-outer-loader {
    background: #fff;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 20%;
    /*opacity: 0.2;*/
}

.small-loader {
    height: 100% !important;
}

.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: 1003;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0px;
}

.small-loader .loader-img-text img {
    width: 20% !important;
}

.min-height-card {
    min-height: 100px;
}

.loading-panel-wrapper .loading-panel-overlay {
    background: #fff;
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 1;
}

.loader-img-text {
    position: absolute;
    text-align: center;
}

    .loader-img-text img {
        width: 20%;
    }

    .loader-img-text p {
        margin-top: -25px;
        font-weight: 500;
        display: none;
    }
/*======General=========*/

/*----------------
font-face font-face
--------------------*/

@font-face {
    font-family: 'Segoe UI Regular';
    font-style: normal;
    font-weight: normal;
    src: local('Segoe UI Regular'), url('Segoe UI.woff') format('woff');
}


@font-face {
    font-family: 'Segoe UI Italic';
    font-style: normal;
    font-weight: normal;
    src: local('Segoe UI Italic'), url('Segoe UI Italic.woff') format('woff');
}


@font-face {
    font-family: 'Segoe UI Bold';
    font-style: normal;
    font-weight: normal;
    src: local('Segoe UI Bold'), url('Segoe UI Bold.woff') format('woff');
}


@font-face {
    font-family: 'Segoe UI Bold Italic';
    font-style: normal;
    font-weight: normal;
    src: local('Segoe UI Bold Italic'), url('Segoe UI Bold Italic.woff') format('woff');
}


/*End font-face font-face*/


/*=========color-profile command font-face library============*/
/*color pallete*/

:root {
    /*  --primary-color: #454545;*/ /***Buttons**/
    --primary-hover: #1d1d1b; /***text color*/
    --text-inner-color: #454545; /***label**/
    /*new colors*/
    --dark-grey: #454545;
    --dark-grey-hover: #1d1d1b;
    --light-grey: #f1f1f1;
    --primary-green: #07c597;
    --primary-light: #E4FFF8;
    --primary-light-green: #f1fbf7;
    --text-color: #4b4b4a;
    --footer-grey: #424c5a;
    --footer-dark-grey: #333b47;
    --light-blue: #e3ecfa;
    --new-green: #03A57F;
   /* --new-green-dark: #02755A;*/
    --new-green-dark: #047e60;
}


/**-----------------------------
Text colors
-----------------------------*/
.text-green {
    color: var(--primary-green);
}

.text-orange {
    color: #E87C2E;
}

.text-dark-grey {
    color: var(--dark-grey);
}

.text-black {
    color: #111 !important;
}

.text-blue {
  /*  color: #3E6AE1 !important;*/
    color: #0179D9 !important;
}

.text-red {
    color: #E82127;
}

.text-disabled {
    color: #c1c3c3;
}

.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}
/**-----------------------------
Background colors
-----------------------------*/
.bg-success {
    background: #5EDFB1;
}

.bg-success-light {
    background: #B4ECD8;
    color: #222;
}

.btn:disabled {
    opacity: 1;
    border-color: transparent;
    background: #cdcdcd;
}

.green-gradient {
    background: linear-gradient(90deg, #abf7e5 0%, rgba(255,255,255,1) 79%);
}

.grey-gradient {
    background: linear-gradient(90deg,#f3f3f3 0%,rgba(255,255,255,1) 173%);
}

.border-radius-4 {
    border-radius: 4px;
}

.border-radius {
    border-radius: 0.5rem;
}

.bg-parot-green {
    background: #E6F6E6;
    border: 1px solid var(--primary-green);
    border-radius: 4px;
}

.text-parot-green {
    color: #0FAD0C;
}

.bg-parot-green h3 {
    color: #0FAD0C;
    font-size: 20px;
}

.bg-lighter-blue {
    background: #F6F8FF;
}

.bg-light-grey {
    background: var(--light-grey);
}

.bg-light-2 {
    background: #f4f4f4 !important;
}

.bg-dark-grey {
    background: var(--footer-grey);
}

.bg-darker-grey {
    background: var(--footer-dark-grey);
}

.bg-light-green {
    background: var(--primary-light-green);
}

.bg-light-blue {
    background: var(--light-blue);
}

.blue-bg {
    background: #FAFCFF;
}

.white-bg {
    background: #fff;
}

.grey-light-bg {
    background: #F1F5F8;
}

.blue-white-shade-bg {
    background-image: linear-gradient(#e3ecfa, white);
}

/*.bg-car {
    background: url("https://bronyadev.blob.core.windows.net/static/iemployee/mileage-car-illustration.svg");
    background-position: right 12px bottom 20px;
    background-repeat: no-repeat;
}*/

.grey-bg {
    background: #E9ECEB;
}

/**-----------------------------
Font sizes
-----------------------------*/

.font-12 {
    font-size: 12px
}

.font-13 {
    font-size: 13px;
    line-height: 17px;
}

.font-14 {
    font-size: 14px;
}

.font-15 {
    font-size: 15px;
}

.font-16 {
    font-size: 16px
}

.font-18 {
    font-size: 18px !important;
}

.font-20 {
    font-size: 20px !important;
}

.font-24 {
    font-size: 24px;
}

h1.large-heading {
    font-size: 35px;
}

.font-15 label {
    font-size: 15px;
}

.small-heading {
    font-size: 12px;
    color: #74817C;
    margin-bottom: 0;
    font-weight: 600;
}

.para {
    line-height: normal;
    padding-top: 5px;
    margin-bottom: 0;
    font-weight: 600;
    /*color: #0e1010;*/
    color: #1D201f;
}

.form-control {
    font-size: 14px;
    /*  padding: 0.375rem 0.3rem;*/
}

pre {
    display: block;
    margin: 0;
    overflow: hidden;
    font-size: 15px;
    line-height: 2;
    height: fit-content;
    font-family: var(--bs-font-sans-serif);
    min-height: fit-content;
    max-height: fit-content;
    padding-bottom: 10px;
    white-space: break-spaces;
    color: var(--text-color);
}

section.custom-space {
    padding: 100px 0;
    overflow: hidden;
    position: relative;
}

/**--------------------------
All  Buttons
-----------------------------*/
.btn {
    border-radius: 4px;
    font-weight: 500;
    padding: 10px 10px;
    border: 1px solid;
    font-size: 14px;
    letter-spacing: 0.3px;
    transition: 0.5s ease all;
}

.btn-green {
    background: var(--new-green);
    color: #fff !important;
    padding: 5.9px 10px;
    border-color: var(--primary-green);
}

    .btn-green:hover,
    .btn-green:focus {
        color: #fff;
        background: var(--new-green-dark) !important;
        border-color: var(--new-green-dark);
    }

.btn-remove {
    border-color: red;
    background: white;
    color: red;
    padding: 7px 17px;
    line-height: normal;
    font-weight: 500;
    border-width: 1px;
    transition: 0.5s ease all;
    border-radius: 0;
}

    .btn-remove:hover {
        background: red;
        color: white;
    }

.btn-border {
    border-color: var(--dark-grey);
    background: white;
    color: var(--dark-grey);
    padding: 7px 17px;
    line-height: normal;
    font-weight: 500;
    border-width: 1px;
    transition: 0.5s ease all;
}

    .btn-border:hover {
        background: var(--light-grey);
        color: var(--dark-grey) !important;
    }

.change {
    font-weight: 400;
    border: 1px solid var(--dark-grey);
    padding: 2px 5px;
    font-size: 13px;
    background: transparent;
    color: var(--dark-grey);
    transition: 0.5s ease all;
    border-radius: 4px;
    line-height: 20px;
}

.custom-shadow {
    box-shadow: 1px 1px 10px #ddd;
}

.change:hover {
    background: var(--light-grey);
    color: var(--dark-grey) !important;
    cursor: pointer;
}

.btn-default {
    background: var(--dark-grey);
    border: 1px solid var(--dark-grey);
    color: #ffffff !important;
    display: inline-flex;
    align-items: center;
    padding: 5.9px 10px;
}

    button:focus,
    .btn-check:focus + .btn,
    .btn:focus,
    .btn-default:hover,
    .btn-default:focus {
        background: var(--dark-grey-hover);
        box-shadow: none !important;
        color: #fff;
    }

.close-btn-red {
    border-color: red;
    color: red !important;
}

    .close-btn-red.small {
        padding: 7px 5px;
        font-size: 14px;
    }

.btn-round {
    border: 1px solid;
    padding: 10px;
    border-radius: 25px;
    font-size: 12px;
}
/*.btn.btn-green.btn-book-now {
    color: #fff !important;
    min-width: 126px;
    margin-left: 10px;
    padding: 10px 5px;
}*/
/***Login page btn***/
.menu-list li a {
    font-size: 16px;
    padding: 16px 0;
    display: block;
    color: #000 !important;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu-list li button {
    font-size: 16px;
}

.img-90 {
    width: 80% !important;
}

.btn-green-border {
    background: #fff;
    border: 1px solid var(--primary-green);
    padding: 7px 17px;
    color: var(--primary-green) !important;
    text-decoration: none;
    line-height: normal;
    /* text-transform: capitalize;*/
    font-weight: 600;
    transition: background 0.5s ease-in-out;
    text-align: center;
    border-radius: 0;
}

.book-btn {
    background: var(--new-green);
    border: 1px solid var(--new-green);
    padding: 15px 10px;
    color: #fff !important;
    text-decoration: none;
    text-transform: uppercase;
    /* text-transform: capitalize;*/
    font-weight: 600;
    transition: background 0.5s ease-in-out;
    text-align: center;
    border-radius: 4px;
}


    .book-btn:hover {
        color: #fff;
        background: #04b68b;
        transition: background 0.5s ease-in-out;
        border: 1px solid #04b086;
    }

.login-footer {
    background: #e9fff7;
    position: absolute;
    width: 100%;
    bottom: 0px;
    text-align: center;
    padding: 5px 0px;
    color: #0E3054;
}

    .login-footer span {
        font-weight: 500;
    }
/***green cart button ***/
.booking-btn {
    background: var(--primary-green);
    letter-spacing: 0.5px;
    padding: 8px;
    width: 100%;
    display: block;
    text-align: center;
    text-decoration: none;
    color: #fff;
    border-radius: 0;
    font-size: 18px;
    font-weight: 700;
    border: 0px;
    height: auto !important;
    transition: background .15s ease-in-out;
}

    .booking-btn:hover {
        background: #45c799;
        transition: background .15s ease-in-out;
    }

a.add-address i {
    font-size: 16px;
    color: #454545;
    border-radius: 20px;
    margin-right: 4px;
    padding: 0px;
    border: 1px solid #454545;
}

a.add-address {
    color: #ddd;
    display: flex;
    border-radius: 5px;
    height: 100%;
}

.add-new-address {
    font-size: 13px;
    color: #454545;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.btn-select.selected {
    background: #454545;
    border: 1px solid #454545;
    color: white;
}

.btn-select.btn-radio {
    display: flex;
    width: 15px;
    height: 15px;
    border-radius: 20px;
    padding: 0px;
    justify-content: start;
    align-items: self-start;
}

.btn-select {
    background: white;
    border: 1px solid #454545;
    color: #454545;
    border-radius: 4px;
}

.selected {
    background: var( --dark-grey-hover);
    border-color: var( --dark-grey-hover);
}

.icons {
    margin-right: 60px;
    position: relative;
}

.thanks {
    border: 1px solid #98ddee;
    background: #eff8fa;
}

.border-right-0 {
    border-right: 0px !important;
}

.service-selected {
    /* padding: 10px !important;*/
    margin: 0px;
    background: #fff;
    display: block;
    box-shadow: 0 1px 13px rgba(51, 51, 51, 0.17);
}

.cursor-pointer {
    cursor: pointer !important;
}

.company-logo {
    background: #F4F5F5;
    padding: 7px 14px;
    border-radius: 20px;
    line-height: 13px;
    margin-left: 8px;
    font-size: 14px;
}

.company-logo-nav {
    background: #f4f5f5;
    padding: 5px 10px;
    border-radius: 4px;
    line-height: 13px;
    font-size: 14px;
    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;
    }

.company-customer-menu-logo {
    margin-left: 5px;
}

    .company-customer-menu-logo img {
        max-height: 23px;
    }

.company-customer-top-logo img {
    max-height: 30px;
}

.card.shadow.sticky-top {
    top: 51px;
    z-index: 1;
}

.selected-service {
    max-height: 220px;
    overflow-y: scroll;
    overflow-x: hidden;
    padding-right: 8px;
}


    /* width */
    .selected-service::-webkit-scrollbar {
        width: 6px;
    }

    /* Track */
    .selected-service::-webkit-scrollbar-track {
        box-shadow: inset 0 0 5px grey;
        border-radius: 10px;
    }

    /* Handle */
    .selected-service::-webkit-scrollbar-thumb {
        background: #07c597;
        border-radius: 10px;
    }

        /* Handle on hover */
        .selected-service::-webkit-scrollbar-thumb:hover {
            background: #b30000;
        }

::-webkit-scrollbar-thumb {
    background-color: #e4e4e4;
    border-radius: 6px;
    border: 3px solid transparent;
}

    ::-webkit-scrollbar-thumb
    /**---------------------------
Forms
-----------------------------*/
    .login-form {
        padding: 0px;
    }

.form-control.input-text {
    border: 1px solid #171A20;
    height: 50px;
}

    .form-control.input-text:hover, .form-control.input-text:focus {
        outline: none !important;
        box-shadow: none !important;
        border: 1px solid #171A20;
    }

.k-checkbox {
    border-color: rgba(55, 55, 55, 0.78) !important;
    background-color: #ffffff !important;
}

.login-tab ul li:focus {
    outline: none;
    box-shadow: none !important;
}

button[disabled] {
    opacity: 0.3;
}


span.error {
    position: absolute;
    font-size: 12px;
    color: #37B006;
    font-weight: 600;
    bottom: -18px;
    display: none;
}

.car-name b {
    /*    text-transform: uppercase;*/
    font-size: 14px;
    color: #1d1d1b;
}

.map-height {
    height: 450px;
    overflow: hidden;
    border: 1px solid #bfb8b8;
}

.form-check-input[type=radio],
.k-radio {
    border-width: 2px;
    background: transparent !important;
    border-color: #1d1d1d !important;
}

    .form-check-input:checked[type=radio],
    .k-radio:checked,
    .k-radio.k-checked {
        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;
    }


.custom-input {
    border: 1px solid #cbd8e5 !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);
    appearance: auto !important;
    width: 100%;
}

.k-checkbox:checked, .k-checkbox.k-checked {
    border-color: #474747 !important;
    color: white;
    background-color: #434343 !important;
}

.k-button-solid-base {
    background: #fff !important;
    color: #757575 !important;
}

/***Telerik table ***/
.k-grid-header table, .k-grid-footer table {
    table-layout: auto !important;
}

.k-grid-content table, .k-grid-content-locked table {
    table-layout: auto !important;
}

.k-grid td {
    border-width: 0px 0px 0px 1px;
    vertical-align: middle;
    min-width: 170px !important;
    max-width: 170px !important;
}

.k-grid-header .k-header {
    position: relative;
    vertical-align: bottom;
    cursor: default;
    min-width: 170px !important;
    max-width: 170px !important;
    font-weight: bold;
}

.k-grid td,
.k-grid th,
.k-grid {
    word-break: break-word;
    border-width: 0px !important;
    white-space: inherit;
}

    .k-grid tr.k-alt,
    .k-master-row:hover .k-grid-content-sticky,
    .k-master-row.k-alt .k-grid-content-sticky,
    .k-master-row.k-alt .k-grid-row-sticky,
    .k-grid tbody tr:not(.k-detail-row):hover {
        background: white !important;
    }

.k-grid-header th.k-grid-header-stick {
    border-width: 0px !important;
}

.k-cell-inner > .k-link {
    font-weight: 500;
    /*color: #a3aeb2;*/
}

.k-grid-header {
    padding: 8px 0;
    /*   color: #afafaf !important;*/
    border-width: 1px 0;
    background: white;
}

    .k-grid-header .k-grid-header-wrap {
        border-right: 0px;
    }

    .k-grid-header .k-header,
    .k-grid-header .k-header.k-grid-header-sticky {
        font-weight: 500 !important;
        color: var(--dark-grey);
    }

.k-content:focus,
.k-tabstrip-content:focus {
    outline-width: 0px !important;
}

.k-column-title {
    text-transform: none;
    white-space: unset !important;
}

.k-grid th {
    white-space: unset !important;
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    background: #fff;
    transition: all 0.5s;
    z-index: 997;
    padding: 0px 0;
    padding-bottom: 0 !important;
    box-shadow: 0 0 10px #ddd;
    border-bottom: 1px solid #ddd;
}

    #header.header-scrolled {
        padding: 0px 0;
    }

    #header .logo {
        margin: 0 25px 0 0;
        padding: 18px 25px 18px 0px;
        line-height: 0;
    }

        #header .logo img {
            max-height: 40px;
        }

    #header .btn-default {
        font-size: 14px;
        letter-spacing: 0.5px;
        padding: 7px 10px;
    }

        #header .btn-default i {
            font-size: 14px;
        }

.env {
    background: #07c59730;
    padding: 1px 4px;
    color: #07c597;
    border: 0;
    border-radius: 3px;
    font-weight: 500;
    display: inline-flex;
    font-size: 12px;
    line-height: 22px;
    margin-left: 10px;
}

.opa-3 {
    opacity: 0.3;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/***Desktop Navigation*/

.navbar {
    padding: 0;
    border: 0px !important;
}

header .navbar .nav-item {
    font-size: 15px;
    position: relative;
    padding-left: 50px;
    display: flex;
    flex-wrap: nowrap;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
    background: #ffffff;
}

.navbar li.k-item:focus {
    box-shadow: none !important;
}

.navbar li a {
    font-weight: 500;
    color: var(--dark-grey) !important;
    transition: 0.3s;
    text-decoration: none;
    border-bottom: 3px solid white;
}

    .navbar li a:hover,
    .navbar li a.active,
    .navbar li:hover a {
        color: var(--primary-green) !important;
        text-decoration: none;
        cursor: pointer;
        transition: 0.5s ease all;
        border-bottom: 3px solid;
    }

/*Login Navigation*/
ul.mobile-menu-login {
    padding: 0px !important;
    flex-direction: row;
    align-items: center !important;
    justify-content: space-around;
}

.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: none;
}


header .navbar ul.mobile-menu-login ul li {
    padding: 0px 25px;
}

input[type="Password"]::-ms-reveal {
    display: none;
}

.success {
    color: var(--primary-green-color);
}


/*==End Navigation==*/


/*====================
  Banner
====================*/
#hero {
    background: #F9F8F9;
}

#hero h1 {
    margin: 0;
    font-size: 32px;
    font-weight: 700;
    line-height: normal;
    color: var(--dark-grey);
}

#hero h1.large-heading {
    font-size: 40px;
}

#hero h1 span {
    font-weight: 400;
}

#hero form {
    height: calc(100vh - 65px);
}

.box-shadow {
    box-shadow: 0px 4px 4px rgba(51, 51, 51, 0.04), 0px 4px 16px rgba(51, 51, 51, 0.08);
}

.banner-form {
    padding: 0px;
    height: 100vh;
    justify-content: start;
    display: flex;
    flex-direction: column;
}

    .banner-form .form-control {
        box-shadow: none;
        height: 35px;
        border-radius: 0 4px 4px 0px !important;
        border-left: 0 !important;
    }

    .banner-form .input-group .input-group-text {
        background: transparent;
    }

    .banner-form .k-tabstrip > .k-content:focus,
    .banner-form .k-tabstrip-content:focus {
        outline-color: transparent;
    }

/*.rating h3, .rating h6 {
    color: var(--dark-grey);
}

.rating h3 span {
    color: var(--primary-green-color);
}*/

.login-form-img {
    background: #4c4c4c;
}

.example-plate-no {
    position: absolute;
    right: 16px;
    width: 81px;
}

    .example-plate-no img {
        width: 100%;
    }

.license-plate-1 {
    width: 6px !important;
    flex: 0.5 !important;
    margin-right: 9px;
    border-left: 1px !important;
}

.form-control.custom-input.license-plate-1 {
    border-radius: 0 !important;
}

.license-plate-1.license-plate-2 {
    border-right: 0px;
    border-radius: 0px !important;
}

.license-plate-1 input::Placeholder, .license-plate-no input::Placeholder {
    letter-spacing: 1.5px;
}

.license-plate-no input, .license-plate-1 input {
    letter-spacing: 1.5px;
}

/*===========================
    Booking Summary CART SECTION
    ==========================
*/
.booking-summary {
    /*box-shadow: 0px 4px 4px rgb(51 51 51 / 4%), 0px 4px 16px rgb(51 51 51 / 8%);*/
    background: #fff;
    overflow: hidden;
}

.sticky-top.booking-summary {
    top: 82px !important;
    z-index: 1;
}


h3.booking-summary-heading {
    font-size: 18px;
    font-weight: bold;
    border-bottom: 0px solid #ddd;
    padding: 11px 20px 5px;
    margin-bottom: 0;
}

.car-details-overflow {
    width: 88%;
    overflow: hidden;
    display: inline-block;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.order-amount {
    margin-bottom: 10px;
}

    .order-amount h6 {
        padding: 10px 0 3px;
    }

.booking-summary-details {
    /* background: #F6F8FF;*/
    padding: 10px 23px;
}

    .booking-summary-details p {
        font-size: 14px;
        margin-bottom: 0;
        line-height: 22px;
    }

.booking-content h4 {
    font-size: 16px;
    color: #454545;
    margin: 0px;
    font-weight: 400;
}


/*Order Booked*/

.car-icon {
    align-items: baseline;
    margin-top: 4px;
    width: 25px;
    margin-right: 10px;
}

.car-name {
    width: 100%;
}

.car-details {
    margin-bottom: 20px;
    display: flex;
}

/*==============
    Select car
 ================*/


h5.note {
    border: 2px solid #3e6ae1;
    padding: 10px 10px;
}

label.form-check-label {
    opacity: 1 !important;
}


ul.edit-list {
    margin: 5px 0 0 0;
    display: flex;
    justify-content: end;
}

    ul.edit-list li a {
        font-size: 14px;
        /*border-right: 1px solid #ddd;*/
        padding: 0px 10px;
        line-height: 1;
        text-decoration: none;
    }

.btn-save {
    background: var(--dark-grey) !important;
    border-radius: 5px !important;
    color: #fff !important;
    font-size: 16px !important;
    padding: 11px 15px !important;
}

    .btn-save:hover {
        background: var( --dark-grey-hover) !important;
        border-color: var( --dark-grey-hover) !important;
    }


.btn-cancel {
    background: #ffffff !important;
    border-radius: 5px !important;
    color: var(--dark-grey) !important;
    padding: 11px 15px !important;
    font-size: 18px !important;
    margin-left: 20px;
    border: 1px solid var(--dark-grey) !important;
}

    .btn-cancel:hover {
        background: var( --dark-grey-hover) !important;
        border-color: var( --dark-grey-hover) !important;
        color: #fff !important;
    }


/*==============================
service packages
==========================*/


h4.price {
    color: #1D1D1B;
    font-size: 40px;
    font-weight: 600;
}

    h4.price span {
        font-weight: 200;
        background: inherit;
        display: unset;
        font-size: 27px;
        padding: 0px;
        color: #e82127;
    }


/*****Telerik tabs*****/
.telerik-tabing ul {
    display: block;
    box-shadow: none !important;
}

.telerik-tabing .k-tabstrip-content {
    border: 0px;
}

.telerik-tabing ul li {
    margin-bottom: 0px !important;
    display: inline-block !important;
}

    .telerik-tabing ul li .k-link {
        background: #fff;
        width: 100%;
        display: block;
        padding: 15px 35px;
        color: var(--dark-grey);
        text-decoration: none;
        box-shadow: none !important;
    }

    .telerik-tabing ul li.k-state-active .k-link {
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
        font-weight: 700;
    }

.telerik-tabing li a {
    border: 1px solid transparent;
    padding: 10px 15px;
    margin: 0px !important;
    display: flex;
    border-bottom: 0px;
    color: #484644;
    text-decoration: none
}

.validation-message {
    color: red;
}

/************************
 Delete confirm box UI   
 *************************/

/****Delete Telerik POP UP ****/
.k-dialog.delete-pop {
    padding: 20px 15px 10px 70px;
    min-width: 400px;
}

    .k-dialog.delete-pop .k-dialog-buttongroup {
        border-width: 0 0 0 0 !important;
        padding-top: 15px;
    }

    .k-dialog.delete-pop .k-header {
        border: 0px solid !important;
        padding: 0px 0px !important;
    }

    .k-dialog.delete-pop .k-button-solid-base {
        background: #fff !important;
        color: var(--dark-grey) !important;
        border: 1px solid var(--dark-grey) !important;
        border-radius: 4px !important;
    }

    .k-dialog.delete-pop .k-button-solid-primary {
        background: #ea4747 !important;
        border-radius: 4px !important;
        color: white !important;
        border: 1px solid #ea4747 !important;
    }

    .k-dialog.delete-pop .k-dialog-content {
        margin: 0 0px !important;
        padding: 6px 0;
    }

.delete-pop .k-dialog-titlebar {
    background: white;
    color: var(--dark-grey);
    padding-left: 0;
}

.delete-icon-bg {
    border-radius: 50%;
    position: absolute;
    background: #f8cfcf;
    padding: 5px;
    border: 7px solid #fbe2e2;
    color: #ea4747;
    top: 19px;
    left: 13px;
}


/************************
 Cancel confirm box UI   
 *************************/

/****cencel Telerik POP UP ****/
.k-dialog.cancel-pop {
    padding: 20px 15px;
    min-width: 400px;
    text-align: left;
}

    .k-dialog.cancel-pop .k-dialog-buttongroup {
        border-width: 0 0 0 0 !important;
        padding-top: 25px;
    }

    .k-dialog.cancel-pop .k-header {
        border: 0px solid !important;
        padding: 0px 0px !important;
    }

    .k-dialog.cancel-pop .k-button-solid-base {
        background: #fff !important;
        color: var(--dark-grey) !important;
        border: 1px solid var(--dark-grey) !important;
        border-radius: 4px !important;
    }

    .k-dialog.cancel-pop .k-button-solid-primary {
        background: var(--primary-green) !important;
        border-radius: 4px !important;
        color: white !important;
        border: 1px solid var(--primary-green) !important;
    }

    .k-dialog.cancel-pop .k-dialog-content {
        margin: 0 0px !important;
        padding: 6px 0;
    }

.cancel-pop .k-dialog-titlebar {
    background: white;
    color: var(--dark-grey);
    position: relative;
    border: 0px;
    padding: 20px 0 6px 0;
}

    .cancel-pop .k-dialog-titlebar .k-dialog-title {
        justify-content: left;
    }

/*.cancel-pop .k-window-actions {
    position: absolute;
    right: -11px;
    top: 50px;
    background: var(--dark-grey);
    color: #fff;
}*/
.cancel-pop .k-window-action {
    border: 0px;
    border-top: 0 !important;
    padding-top: 20px;
}

.cancel-pop .k-dialog-titlebar-action {
    position: absolute;
    right: -15px;
    top: -20px;
    background: var(--dark-grey) !important;
    color: #fff;
    border-radius: 0px;
}

.k-window-title {
    overflow: visible !important;
}


/*End Mobile view*/
/*==============================
How does it work
==========================*/
.heading {
    margin: 0px 0px 0px 0px;
}

    .heading h3 {
        font-size: 22px;
        font-weight: bold;
        color: #393C41;
    }

    .heading p {
        font-size: 16px;
    }


/*============
How it work and faq banner settings
==============*/

.banner-heading h3 {
    color: #252423;
    font-weight: 700;
    font-size: 32px;
}

.banner-heading p {
    color: #000;
    margin: 20px 0 0 0;
    font-size: 16px;
    line-height: 1.6;
}

.banner-space {
    padding: 50px 0;
}

.light-blue-bg {
    background: #F6F9FF;
}

.thanks-msg {
    margin: auto;
}

    .thanks-msg h3 {
        font-size: 40px;
    }

.thanks {
    background: #26B894;
    border: 0;
}

    .thanks h4 {
        font-size: 29px;
        font-weight: 300;
    }

/*====================
Service choose of select mileage
====================*/

.service-list li {
    color: var(--dark-grey);
    font-size: 14px;
    padding: 0 0 10px 0px;
    line-height: normal;
}

    .service-list li span {
        color: var(--dark-grey);
    }

    .service-list li p {
        margin: 0px;
        font-size: 15px;
        line-height: 8px;
    }

    .service-list li:last-child {
        padding-bottom: 0px;
    }

ul.service-list {
    margin-left: 20px;
}

    ul.service-list li:before {
        content: "";
        position: absolute;
        left: 11px;
        width: 18px;
        height: 18px;
        background-size: 90% !important;
        top: 2px;
        background: url('https://bronyadev.blob.core.windows.net/static/iemployee/BookingPlaced/check.svg') no-repeat;
    }


.service-list li a {
    color: var(--primary-green-color);
    text-decoration: underline !important;
}

    .service-list li a:hover {
        color: var( --dark-grey-hover);
    }

.service-inner h5 span.service-tag {
    position: absolute;
    right: -16px;
    font-size: 12px;
    background: #ddd;
    padding: 6px 9px;
    font-weight: 400;
}

.fixed-width-table {
    width: 560px;
}

.fixed-height {
    max-height: 1000px;
    overflow-y: auto;
    overflow-x: hidden;
}

    .fixed-height.small-height {
        max-height: 500px;
    }

    .fixed-height::-webkit-scrollbar {
        width: 3px; /* width of the entire scrollbar */
    }

    .fixed-height::-webkit-scrollbar-thumb {
        border-radius: 20px; /* roundness of the scroll thumb */
        border: 3px solid var(--primary-green); /* creates padding around scroll thumb */
    }

.sticky-bottom {
    max-height: 500px;
    overflow-y: auto;
    overflow-x: hidden;
    position: sticky;
    bottom: 0;
}

span.final-price {
    font-size: 14px;
    font-weight: 700;
    z-index: 1;
    position: relative;
}

    span.final-price:before {
        /* position: absolute;*/
        content: "";
        width: 157px;
        height: 157px;
        left: -48px;
        background: #eefffa;
        z-index: -1;
        border-radius: 100%;
        bottom: -107px;
    }


/*===============
    Get a Quotes
    ===============
*/

.error {
    position: absolute;
    color: red;
    font-size: 12px;
    display: none;
    bottom: -18px;
}

.error-text {
    color: red;
    font-size: 12px
}

a.raise-query {
    color: #1d1d1b;
    /*  text-decoration: underline !important;*/
    margin: 20px 0 0 0 !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.icon {
    display: inline-block;
    margin-right: 15px;
    font-size: 25px;
}

.icon-green {
    color: #36F586;
}

.more-option {
    margin-bottom: 30px;
}

/*---------------------------------
Login page email and phone tab
------------------------------------*/
.font-11 {
    font-size: 11px;
}

.font-10 {
    font-size: 10px;
}

.login-tab .k-tabstrip-items-wrapper {
    border-bottom: 0px;
}

.login-tab ul.k-tabstrip-items {
    /*  padding-bottom: 10px !important;*/
    padding-left: 0 !important;
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    background: #f4f4f4;
    border-radius: 50px;
    align-items: center;
    justify-content: center;
    padding: 5px;
}

    .login-tab ul.k-tabstrip-items li {
        background: transparent !important;
        color: #222;
    }

.login-tab ul li {
    width: 50%;
    margin-bottom: 0px !important;
    border: 0px !important;
}

    .login-tab ul li.k-active {
        border-bottom: 0px !important;
    }

        .login-tab ul li.k-active span.k-link {
            z-index: 1;
            transition: 0.8s ease-in-out all;
            background: #fff;
            color: #222;
            font-weight: 700;
            border: 1px solid #ddd;
        }

.login-tab .k-tabstrip-content,
.login-tab .k-tabstrip > .k-content {
    border-color: #ffffff !important;
    padding-inline: 5px !important;
}

.login-tab .input-group-addon, .input-group-btn {
    width: 1%;
    white-space: nowrap;
    display: table-cell;
    vertical-align: middle;
}

.login-tab .input-group-addon {
    padding: 6px 19px 6px 7px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
   /* color: var(--primary-green);*/
    color: #6c6c6c;
    text-align: center;
    /* background-color: #eee;*/
    border: 1px solid #ccc;
    border-right: 0px;
    border-radius: 4px 0 0 4px !important;
}

    .login-tab .input-group-addon i {
        font-size: 16px;
    }

.login-tab ul li span.k-link {
    padding: 8px 15px !important;
    border-radius: 50px;
    color: #B0B0B0;
    font-weight: 500;
    margin: 0 5px;
    justify-content: center;
}

.input-group > .form-control:focus {
    z-index: 1;
}

.login-tab label {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.passwrd-group {
    position: absolute;
    right: 10px;
    bottom: 6px;
    z-index: 2;
}

.form-inner-mob {
    background: white;
    border-radius: 27px 25px 0 0;
    padding: 8px;
}

    .form-inner-mob .form-control {
        height: 45px;
    }
/*.passwrd-group {
    position: absolute;
    right: 10px;
    bottom: 10px;
    z-index: 2;
}

.passwrd-group i {
    font-size: 20px;
}*/
/*---------------------------------
Login page services
------------------------------------*/
.car-services {
    margin-bottom: 100px;
}

ul.car-services {
    display: flex;
}

.car-services li {
    display: flex;
    align-items: center;
}

    .car-services li span.delivery-icon {
        display: inline-flex;
        align-items: center;
    }

    .car-services li span.delivery-service {
        white-space: pre-wrap;
        margin-left: 12px;
    }

.service-hero {
    margin: 100px 0;
}

section.tab-heading {
    box-shadow: 0px 4px 4px rgba(51, 51, 51, 0.4), 0px 4px 16px rgba(51, 51, 51, 0.8);
    background: #ffffff;
}

span.warranty {
    margin-left: 20px;
}

    span.warranty i {
        font-size: 18px !important;
        color: #FBB01B;
    }


/*===============
footer Section
=================*/
footer {
    border-top: 1px solid #ddd;
    font-size: 14px;
    line-height: 22px;
}

    footer a {
        color: inherit;
    }

    footer ul li a {
        font-size: 14px;
        padding-bottom: 8px;
        color: #f4f4f4;
    }

        footer ul li a:hover {
            color: var(--primary-green)
        }

/*Inner footer*/
.inner-footer {
    background: #fff;
    padding: 10px 0px;
    width: 100%;
    bottom: 0px;
    font-size: 10px;
}

.ftr-inner-list li a {
    color: var(--dark-grey);
    font-size: 10px;
}


section.outer-section {
    padding: 40px 0;
}


/***Forms Default**/
.k-tabstrip-items-wrapper .k-item:active {
    border-color: transparent;
}

label, .form-check-label {
    font-size: 14px;
}

.form-control,
.k-tabstrip-items-wrapper .k-item {
    border-radius: 0px !important;
}

    .k-tabstrip-items-wrapper .k-item:focus,
    .form-control:focus {
        box-shadow: none;
    }

.input-group-text {
    border-radius: 0px;
}


/*========================
Book Appointment
=====================*/
.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;
}

.k-dropdownlist.custom-input,
.k-dropdownlist.form-control {
    background: transparent;
}

.custom-input:hover, .custom-input:focus {
    outline: none !important;
    box-shadow: none !important;
}

.custom-input-icons {
    background: #fff !important;
    border-left: 1px solid #fff !important;
    border-radius: 0px !important;
    color: #3E6AE1 !important;
    font-size: 26px !important;
    box-shadow: none !important;
}

/*.list-service li {
    font-size: 13px;
}*/

/*.total-amt span {
    font-size: 16px;
}*/



/*==========================
    order booked*/

/*.car-name b {*/
/*text-transform: uppercase;*/
/*font-size: 14px;*/
/* color: #b2b2b2;*/
/*}*/

.appointment-right h4 {
    font-weight: 600;
    color: var( --dark-grey-hover);
    margin-bottom: 0px;
}

.service-provider-tahnks {
    position: absolute;
    top: 5px;
    right: 40px;
    width: 280px;
}

.go-to-booking {
    justify-content: space-between;
}

    .go-to-booking span {
        display: flex;
        /*width:*31%;*/
        width: auto;
        align-items: end;
        justify-content: end;
    }
/*-------------------------
    Tracking order
--------------------------*/
.tracking-id {
    background: #fff;
}

.order-track {
    padding-bottom: 20px !important;
    width: 100%;
    margin: 0;
}

    .order-track:last-child {
        padding-bottom: 0px !important;
    }

        .order-track:last-child label input:before {
            display: none;
        }

    .order-track label input {
        width: 25px;
        height: 25px;
    }

        .order-track label input.form-check-input:checked {
            background-color: #000000;
            border-color: #e3e3e3;
        }

        /*.order-track label input.form-check-input:disabled {
opacity: 0.7;
}*/

        .order-track label input:before {
            left: 12px;
            height: 64%;
            top: 25px;
            position: absolute;
            content: "";
            width: 1px;
            border: 1px dashed #000;
            /* height: 74%;
left: 15px;
top: 29px;*/
        }

        .order-track label input.form-check-input:disabled {
            opacity: 1 !important;
        }

/***Card Thumbnail***/
.short-text {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    max-width: 350px;
}

.short-length {
    display: -webkit-box;
    max-width: 400px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 32px;
}

.toggle-switch .k-switch-label-off {
    color: var(--dark-grey);
}

.toggle-switch .k-switch-md {
    width: 94px !important;
}

.toggle-switch .k-switch-on .k-switch-track {
    background: var(--primary-light);
    border-color: var(--primary-green);
    color: var(--primary-green);
}

.toggle-switch .k-switch-md .k-switch-thumb {
    width: 21px;
    height: 21px;
    background: var(--primary-green);
}

.toggle-switch .k-switch-off .k-switch-track {
    background-color: #eee;
}

.toggle-switch .k-switch-md .k-switch-track {
    height: 25px;
    border: 1px solid var(--primary-green);
    font-weight: 500;
}

.grey-block {
    padding-top: 15px;
    border-radius: 4px;
    border: 1px solid #ddd;
    margin: 0;
    background: #f8f8f8;
}

.border-bottom-radius {
    border-radius: 0 0 14px 14px;
}
.border-bottom {
    border-bottom: 1px solid #ccd2d7 !important;
}
.grey-block .border-bottom:last-child {
    border-bottom: 0px !important;
    margin-bottom: 0px !important;
}

.card {
    border-radius: 0.55rem;
    border-width: 0px;
    box-shadow: 0px 1px 3px #ccc;
    padding: 15px;
}

.card-header {
    padding: 0px 0px 0px 0px !important;
    margin-bottom: 0;
    background-color: transparent !important;
    border-bottom: 0px solid rgba(0,0,0,.125);
}

    .card-header h1,
    .card-header h2,
    .card-header h3,
    .card-header h4,
    .card-header h5,
    .card-header h6 {
        font-size: 16px;
    }

.card-footer:last-child {
    border-radius: 0 0 calc(.55rem - 1px) calc(.55rem - 1px);
}

.card-footer {
    background: white;
    padding-top: 10px;
    padding-bottom: 10px;
}

.card-body {
    padding: 10px 0 0 0;
}

.card-thumbnail {
    width: 200px;
    height: 60px;
    margin: 0 0 0 auto;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: end;
}

    .card-thumbnail img {
        width: auto;
        height: fit-content;
        max-height: 60px;
    }

h6.car-heading {
    font-size: 17px;
}

.th-bold th .k-column-title {
    font-weight: 500;
}


.signature-pad {
    padding: 0px !important;
    box-shadow: none !important;
    border: 1px solid #E0E0E0 !important;
    border-radius: 0px !important;
    background: #F8F8F8;
}

.signature-pad--body {
    border: 0px !important;
}
/*----------------------------
Placeholder image of driver
-----------------------*/
.Placeholder-img {
    background: #f4f4f4;
    WIDTH: 75px;
    height: 75px;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

    .Placeholder-img img {
        /*object-fit: contain;*/
        max-width: 100%;
        height: auto;
        overflow: hidden;
        width: auto;
    }

.black-tab .nav-tabs {
    border-bottom: 0px;
}

.black-tab .nav-link {
    border-radius: 0;
    text-align: left;
    font-weight: bold;
    margin-bottom: 5px;
    background: #ddd;
    color: #1d1d1d;
    padding: 15px;
}

    .black-tab .nav-link.active {
        background: #141414;
        border-radius: 0;
        color: #fff;
    }


/*-------------------NEW Tabing--------------------*/

.new-tabing ul {
    margin-left: 0px;
}

.new-tabing .card {
    /*background: #ffffff;*/
    border: 0px;
}

.new-tabing.k-tabstrip-top > .k-tabstrip-items-wrapper .k-item {
    margin-right: 40px;
    box-shadow: none;
    background: transparent;
    border-width: 0 0 4px 0px;
    margin-bottom: 0px !important;
    font-size: 16px;
}

.new-tabing .k-tabstrip-items .k-link {
    color: var(--dark-grey);
}

.new-tabing .k-tabstrip-items-wrapper .k-item.k-state-active,
.new-tabing .k-tabstrip-items-wrapper .k-item.k-active,
.new-tabing.k-tabstrip-items-wrapper .k-item:active {
    background: transparent;
    border: 0px;
    font-weight: bold;
}

.new-tabing ul li {
    border-bottom: 4px solid transparent !important;
}

.new-tabing .k-tabstrip-items-wrapper ul li.k-state-active,
.new-tabing .k-tabstrip-items-wrapper ul li.k-item.k-active,
.new-tabing .k-tabstrip-items-wrapper ul li.k-active {
    border-bottom: 4px solid var(--primary-green) !important;
    background: transparent;
}

.new-tabing .k-tabstrip-content,
.new-tabing .k-tabstrip > .k-content {
    background-color: transparent !important;
    border: 0px !important;
    padding: 0px 0 0px !important;
    overflow: hidden !important;
}

    .new-tabing .k-tabstrip-content label {
        font-weight: 600;
    }

.new-tabing .card-body {
    /* padding: 1rem 1.8rem;*/
}

.k-tabstrip-content:focus {
    outline: none;
}
/*-------------------
    Select address
    --------------------*/
.bkng-create .card-header h5,
.bkng-create .card-header h6 {
    font-size: 15px;
    font-weight: bold;
    color: var(--dark-grey);
}

.bkng-create h6 {
    font-size: 14px;
}
/*
.bkng-create .card {
    border: 1px solid;
    box-shadow: 0px 0px 5px 0px #ddd;
}

.bkng-create .card-footer {
    background: white;
    padding-top: 10px;
    padding-bottom: 10px;
}
*/


.booking-icon {
    border-radius: 50px;
    display: inline-flex;
    background: transparent;
    padding: 4px 8px;
    margin: 2px 7px 2px 0px;
    border: 1px solid #c2c2c2;
    font-size: 12px;
}

    .booking-icon img {
        padding: 2px 5px;
    }

    .booking-icon i {
        display: flex;
        align-items: center;
    }

.blue-color {
    color: #3E6AE1 !important;
}

.bg-green-light {
    background: #dcfff7;
}

.bg-green {
    background: var(--new-green);
}

.bg-green-dark {
    background: #04765A;
}

.bg-green-double {
    background: linear-gradient(to bottom, var(--new-green-dark) 400px, white 50%);
}

.short-color {
    background: linear-gradient(to bottom, var(--primary-green) 380px, white 29%);
}

.text-green {
    color: var(--primary-green);
}

.light-red-double-bg {
    background: linear-gradient(to right, #ffe5e5 0%, #fff 75%);
}

.light-green-double-bg {
    background: linear-gradient(to right, #dcfff7 0%, #fff 75%);
}

.cart-value {
    background: #222;
    border-radius: 50px;
    color: #fff;
    position: absolute;
    top: 4px;
    right: 8px;
    width: 18px;
    height: 17px;
    display: flex;
    align-items: center;
    line-height: 22px;
    justify-content: center;
}

.add-authorized-user {
    text-align: center;
    padding: 20px;
    border: 1px dashed #a5a5a5;
    margin-bottom: 10px;
}

button.verify-btn {
    background: #000;
    color: #fff;
    height: calc(1.5em + .75rem + 2px);
    /*padding: 5px 10px;*/
    width: 100%;
}
/*------------------------------------
 default edit icon setting
--------------------------------------*/
.fill-icon {
    display: inline-flex;
    line-height: normal;
    padding: 5px 4px;
    font-size: 20px;
    border-color: white !important;
    border-radius: 4px;
}
/*view form detail*/
.fill-grey-icon {
    background: var(--dark-grey);
    color: #fff;
}

    .fill-grey-icon:hover {
        background: var(--dark-grey);
        color: #fff;
    }

.fill-green-icon {
    background: #e8fff3;
    color: var(--primary-green) !important;
    border: 1px solid #a7f2cb !important;
}

    .fill-green-icon:hover {
        background: var(--primary-green);
        color: #fff !important;
    }

.fill-red-icon {
    background-color: #ff000014 !important;
    color: #f00;
    border: 1px solid #ff000036 !important;
}

    .fill-red-icon:hover {
        color: #fff;
        background: #f00 !important;
    }
/*---------------------------------
Terlik notification
-----------------------------------*/
/*toast error*/

/*.demo-notification {*/
/*   position: absolute;*/
/*bottom: 40px !important;
    z-index: 99999 !important
}

.demo-notification .k-notification-wrap {
    font-size: 13px !important;
    font-weight: 500 !important;
    padding: 4px 10px !important;
    align-items: center;
    line-height: normal;
}

.notification-parent {
    position: relative;
}

.k-notification-container {
    margin: 6px 0;
}

.k-notification-container .k-icon {
    color: #fff;
    line-height: normal;
    font-size: 14px;
}

.k-notification-error {
    color: red !important;
    border-color: #ffc9c9 !important;
    background: #ffc9c9 !important;
}

.k-notification-error .k-icon {
    color: red;
}

.k-notification-success {
    background: #92f1c8 !important;
    color: #2f8d6c !important;
    border-color: #92f1c8 !important;
}

.k-notification-success .k-icon {
    color: #2f8d6c !important;
}

#demo-runner {
    height: 320px;  
}*/
.bg-circle {
    background: url(https://bronyadev.blob.core.windows.net/static/iemployee/Dashboard-icons/circles-bg.png), #04765A !important;
    background-repeat: no-repeat !important;
    background-size: 100% auto !important;
    background-position: center !important;
    height: 100px;
}

.current-mileage {
    border-radius: 50px;
    padding: 5px 22px 8px;
    top: -19px;
    position: relative;
    background: white;
    border: 2px solid #D4D8D7;
}

.section-title {
    font-size: 20px;
    font-weight: bold;
}

.bg-licence {
    background: url(https://bronyadev.blob.core.windows.net/static/iemployee/Dashboard-icons/carplate-bg.svg) no-repeat right center;
    background-size: 100% 100%;
    font-size: 11px;
    padding: 6px 9px;
    width: 93px;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.h-150 {
    height: 150px;
}
/*****Telerik Notification*****/
.demo-notification {
    /* position: absolute;*/
    margin-bottom: 65px;
    z-index: 999999 !important;
    text-transform: none !important;
    bottom: 40px !important;
    right: 60px !important;
}

    .demo-notification .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 auto !important;
    display: flex;
    vertical-align: top;
    width: 400px;
}

.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 {
    color: red;
}

.k-notification-success .k-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
}

.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
}



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;
}

.k-i-success::before {
    content: "\e11a" !important;
}

.k-i-error::before {
    content: "\e11d" !important;
}

.k-notification-error .k-svg-icon {
    color: red;
}

.k-notification-success .k-svg-icon {
    color: var(--primary-green);
}

#launcher {
    bottom: 35px !important;
    right: -18px !important;
}

    #launcher button.wrapper-3hgZT {
        padding: 0.5rem !important;
        font-size: 1rem !important;
    }

    #launcher button span svg {
        width: 1rem !important;
        height: 1rem !important;
    }

.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: white;
    background-color: #454545 !important;
}

.k-disabled {
    background-color: #e9ecef !important;
    opacity: 1 !important;
}

.k-calendar-tr .k-disabled {
    background-color: inherit !important;
    opacity: 0.7 !important;
}

.k-input-solid,
.k-picker-solid {
    border-color: #ced4da !important;
}

.new-tabing ul.listing {
    white-space: normal !important;
    margin: 0 !important;
}

    .new-tabing ul.listing li {
        display: list-item !important;
    }

.max-height-card {
    height: 260px;
    overflow-y: scroll;
    overflow-x: auto;
}

::-webkit-scrollbar {
    -webkit-appearance: none;
}

    ::-webkit-scrollbar:vertical {
        width: 5px;
    }

    ::-webkit-scrollbar:horizontal {
        height: 5px;
    }

::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, .5);
    border-radius: 10px;
    border: 1px solid #ffffff;
}

::-webkit-scrollbar-track {
    border-radius: 0px;
    background-color: #ffffff;
}


.update {
    position: fixed;
    bottom: 10px;
    z-index: 99999;
    width: auto;
    max-width: 100%;
    left: auto;
    right: auto;
}

div.shadow {
    box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,.2) !important;
}

.update-inner {
    width: 337px;
    margin: 0 0 0 66px;
    background: #fff;
    padding: 20px;
    border-radius: 5px;
}

/**Holman booking****/

/*****Carousel*****/
.send-booking {
    border: 2px solid #0d96ef !important;
    background: #fff;
    color: #0d96ef !important;
    padding: 7px 9px;
}

.service-tabs {
    display: flex;
    align-items: center;
}



.k-scrollview-elements {
    color: white;
    position: absolute;
    width: 100%;
    top: 24px;
}

.k-scrollview-view {
    padding: 0px 30px;
    /*  display: inline-flex;*/
}

.service-tabs .k-icon-xxxl.k-svg-icon {
    color: lightgray;
}

a.k-scrollview-prev, a.k-scrollview-next {
    background: #00000078;
    opacity: 1;
    border-radius: 40px;
}

.k-scrollview-elements a span {
    font-size: 26px !important;
}

a.k-scrollview-prev {
    left: -13px;
    padding: 5px 1px 5px 7px;
}

a.k-scrollview-next {
    right: -13px;
    padding: 5px 7px 5px 1px;
}

.service-img {
    min-height: 100px;
    /*background: #f4f4f4;*/
    border-radius: 4px;
    display: flex;
    /*  align-items: center;*/
    justify-content: center;
    max-width: 100%;
    max-height: 100%;
    margin-bottom: 16px !important;
}

    .service-img img {
        height: 100px;
        width: auto;
    }

.service-tabs .item {
    width: 20%;
    display: inline-block;
    /* margin: 0px 26px !important;*/
    flex: 0;
    text-align: center;
    border-bottom: 4px solid transparent !important;
    border: 0px !important;
    padding: 8px 5px;
    border-radius: 0px !important;
    cursor: pointer;
    vertical-align: top;
}

    .service-tabs .item h5 {
        font-size: 13px;
        margin: 5px 0 0px 0px;
        white-space: normal;
        line-height: 13px
    }

    .service-tabs .item span img.green-img {
        display: none;
    }

    .service-tabs .item.active {
        border-bottom: 4px solid var(--primary-green) !important;
        background-color: #effaee !important;
    }

        .service-tabs .item.active span img.black-img {
            display: none;
        }

        .service-tabs .item.active span img.green-img {
            display: block;
            text-align: center;
            margin: 0 auto;
        }

.service-list li {
    color: var(--primary-color);
    font-size: 14px;
    padding: 0 0 10px 0px;
}

    .service-list li span {
        color: var(--primary-color);
    }

    .service-list li p {
        margin: 0px;
        font-size: 16px;
        line-height: 8px;
    }

    .service-list li:last-child {
        padding-bottom: 0px;
    }

    .service-list li a {
        color: var(--primary-green);
        text-decoration: underline !important;
    }

        .service-list li a:hover {
            color: var(--primary-hover-color);
        }

.service-inner h5 span.service-tag {
    position: absolute;
    right: -16px;
    font-size: 12px;
    background: #ddd;
    padding: 6px 9px;
    font-weight: 400;
}

.carousel-control-next:hover, .carousel-control-prev:hover {
    background-color: var(--primary-hover) !important;
}

.k-scrollview-wrap img {
    height: 35px;
}

.k-scrollview-wrap > .k-scrollview-view {
    display: block;
}

.price-tag {
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 5px 10px;
    background: #dcfff7;
    color: #222;
    font-weight: bold;
}

.holman-accordian .accordion-button {
    box-shadow: none !important;
    color: inherit;
    font-size: 14px;
}

    .holman-accordian .accordion-button::after {
        margin: 0 10px;
        filter: brightness(0%);
    }

.service-tabs .k-icon-xxxl.k-svg-icon {
    width: 30px;
    height: 30px;
}

.service-tabs .k-icon-xxxl {
    font-size: 34px;
    color: #a2a2a0;
}

.navbuttons {
    display: inline-block;
    overflow: auto;
    overflow-y: hidden;
    max-width: 100%;
    white-space: nowrap;
    width: 100%;
    padding: 0 5px;
    background: #fff;
    box-shadow: 0px 2px 10px #ddd;
}

    .navbuttons li {
        display: inline-block;
        vertical-align: top;
        /*  width: 50%;*/
        text-align: center;
    }

        .navbuttons li .item {
            padding: 8px 11px;
        }

        .navbuttons li > .item.active {
            border-bottom: 4px solid var(--primary-green) !important;
            /*  background-color: #effaee !important;*/
        }

        .navbuttons li .item.active span img.black-img {
            display: none;
        }

        .navbuttons li .item.active span img.green-img {
            display: block;
            text-align: center;
            margin: 0 auto;
        }

        .navbuttons li .item img {
            height: 35px;
        }

        .navbuttons li .item h5 {
            font-size: 13px;
            margin: 5px 0 0px 0px;
            white-space: normal;
        }

        .navbuttons li .item span img.green-img {
            display: none;
        }

.border-radius-0 {
    border-radius: 0;
}

.cart-car-img {
    margin-top: -20px;
}

.font-14 {
    font-size: 14px;
}

.font-15 {
    font-size: 15px;
}

.login-logo {
    background: white;
    border-radius: 50px;
    padding: 5px 10px;
    width: 100px;
    margin-left: 5px;
}

.login-banner-img {
    width: 115px;
    float: right;
    padding: 0px 5px 0 0;
    margin-top: -30px;
}

.ActiveGarage {
    border-color: var(--dark-grey) !important;
}

.calendar-block {
    padding: 3px;
    border: 1px solid #ddd;
    color: #222;
    font-size: 14px;
    border-radius: 4px;
    text-align: center;
    font-weight: 600;
    background: white;
    line-height: 17px;
    /*   margin: 2px 3px;*/
}

    .calendar-block span {
        color: #74817C;
        font-size: 11px;
        font-weight: 400;
    }

    .calendar-block.calendar-active {
        border: 1px solid var(--dark-grey) !important;
        color: #fff;
        background: var(--dark-grey);
    }

.calendar-active {
    border: 1px solid var(--dark-grey) !important;
    color: var(--dark-grey);
    background: var(--light-grey);
}

.calendar-block.calendar-active span {
    color: #fff;
}

.calendar-active span {
    color: var(--dark-grey);
}

.desktop-btn {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1030;
    width: 100%;
    background: #fff;
    box-shadow: 0 0 8px #ddd;
    margin: auto;
    color: white;
    padding-top: 5px;
    padding-bottom: 5px;
}

    .desktop-btn .primary-btn {
        width: 100%;
    }

.inner-sidebar {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /*    padding: 20px 30px;*/
    height: 100%;
    /*  background: #fafdfc;*/
}

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 {
    height: 100%;
    width: 0;
    position: absolute;
    top: 0;
    right: 0;
    background-color: #0000009e;
    overflow-x: hidden;
    transition: .5s;
    z-index: 11111;
}

    .sidebar .closebtn {
        font-size: 36px;
        margin-left: 0;
        text-align: right;
        line-height: 17px;
        display: flex;
        height: 100%;
        color: transparent;
    }

span.setting {
    font-size: 33px;
    float: right;
    color: #4a4a4a;
    font-weight: 100;
    cursor: pointer;
    line-height: 33px;
}

.saving {
    background: #FFEDE0;
    padding: 2px 5px;
    border-radius: 50px;
    line-height: normal;
}

.green-heading {
    color: var(--primary-green);
    font-weight: bold;
    font-size: 25px !important;
}

.bg-orange {
    background: #FFF2E8;
}

.green-circle {
    color: var(--primary-green);
    border-radius: 50px;
    background: #CDF8ED;
}

.grey-circlet-two {
    color: #979797;
    border-radius: 50px;
    background: #eceded;
}

.grey-circle {
    /*  color: var(--primary-green);*/
    border-radius: 50px;
    background: #E9E9E9;
    padding: 3px 5px;
}

.cancel-label {
    /* background: #FDE3E5;
    color: #C5676F;*/
    background: #ddd;
    color: #222;
    font-weight: 500;
    padding: 3px 8px 4px;
    line-height: normal;
}

.w-550 {
    max-width: 550px;
}

.approval-label {
    background: #FEEFE6;
    color: #D6743C;
    font-weight: bold;
    padding: 2px 5px 3px;
    line-height: normal;
}

.block-textarea {
    max-height: 75px;
    overflow-y: auto;
    border: 1px solid #ddd;
    padding: 5px;
    min-height: 50px;
}


/**End holman booking**/

/*******************
    Self booking mergning
    ******/
.form-control.input-otp input,
.form-control.input-otp {
    text-align: left;
    letter-spacing: 9px;
    font-size: 25px;
    height: 55px;
}

.car-first {
    position: relative;
    border-radius: 2px;
    padding-left: 19px;
    height: 48px;
    border-right: 0 !important;
    height: 40px;
}

    .car-first:before {
        content: "";
        width: 26px;
        height: 40px;
        background: url("https://bronyaprod.blob.core.windows.net/static/ifleet/car-plateno.png") no-repeat;
        background-size: contain;
        position: absolute;
        left: 0px;
    }

.car-second {
    position: relative;
    height: 40px;
    border-left: 0 !important;
    border-right: 0 !important;
    padding-left: 24px;
}

    .car-second:before {
        content: "";
        width: 27px;
        height: 40px;
        background: url("https://bronyaprod.blob.core.windows.net/static/ifleet/carplate-dots.png") no-repeat;
        background-size: contain;
        border-right: 1px solid #ccc;
        border-left: 1px solid #ccc;
        position: absolute;
        left: 2px;
    }

.car-third {
    height: 40px;
}

.car-plate span {
    display: block;
    font-size: 18px !important;
}

.car-plate .btn {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}

.didnt-receive {
    color: #0d75c2;
    cursor: pointer;
}

/*Leasing return new CSS*/
.page-title-inner {
    font-size: 16px;
    margin: 0px;
    font-weight: 700;
}

.info-content .text-green {
    color: #0f8b2d;
}

button.current-location {
    background: #F4F5F5;
    border: 1px solid #D4D4D4;
    border-radius: 3px;
    color: #212222;
    font-weight: 600;
}

.radio-tabing .k-tabstrip-content, .radio-tabing .k-tabstrip > .k-content {
    background-color: inherit !important;
    border-color: inherit !important;
    padding: 0 !important;
}

.notification {
    display: flex;
    background: #FFEADB;
    padding: 10px;
}

    .notification span.info-circle {
        margin: 0px 10px 0 0;
        font-size: 21px;
    }

p.info-content {
    font-size: 12px;
    line-height: 18px;
    font-weight: 500;
}

.location1 {
    border: 1px solid #A9B2AF;
    border-radius: 4px;
    overflow: hidden;
}

.location-inner {
    padding: 5px 0px;
}

.location-km {
    display: grid;
    justify-content: center;
}
.neareast-location img {
    width: auto;
    height: auto;
}
    .location-km p {
        font-size: 12px;
        color: #74817C;
        margin-top: 5px;
        margin-bottom: 0px;
    }
.location-address {
    width: 100%;
    white-space: normal;
}

    .location-address p {
        color: #212222;
        font-weight: 600;
        font-size: 14px;
        line-height: 18px;
    }

        .location-address p span {
            color: #E87C2E;
            text-transform: uppercase;
        }

.radio-tabing ul.k-tabstrip-items {
    padding-bottom: 10px;
}

    .radio-tabing ul.k-tabstrip-items li.k-active {
        background: inherit !important;
        border: 0px !important;
    }

.radio-tabing ul li span.k-link {
    position: relative;
    padding-left: 31px;
    color: #212222;
    font-weight: 600;
}

    .radio-tabing ul li span.k-link:before {
        position: absolute;
        width: 20px;
        height: 20px;
        border: 1px solid #bababa;
        content: "";
        left: 3px;
        border-radius: 10px;
    }

.radio-tabing ul li.k-active span.k-link:after {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    background: #212222;
    border-radius: 20px;
    left: 8px;
}

h5.heading-checklist {
    font-size: 16px;
    font-weight: 700;
}

.right-arrow {
    font-size: 32px;
}

.appointment {
    padding: 10px 0;
    font-size: 15px;
}

.appointment-edit {
    background: #f4f5f5;
    border-top: 1px solid #a9b2af;
    padding: 5px 13px;
    border-radius: 0;
    margin-top: 2px;
}

    .appointment-edit p {
        margin: 0px;
        color: #74817C;
        font-size: 14px;
        line-height: 18px;
    }

        .appointment-edit p span {
            font-weight: 500;
        }

.appointment img {
    width: 20px;
    height: 20px;
    margin-right: 3px;
}

.time-list ul li {
    display: inline-flex;
    padding-right: 13px;
}

    .time-list ul li span {
        display: flex;
        align-items: start;
        margin-right: 6px;
        padding-top: 0px;
    }

.time-list p.time-list-inner {
    margin: 0px 0px 0px 10px;
    line-height: normal;
    font-size: 16px;
    font-weight: 600;
}

    .time-list p.time-list-inner span {
        display: table-row-group;
        font-weight: 400;
        font-size: 14px;
    }

.leasing-checklist {
    background: inherit !important;
    border: 0px !important;
    padding: 0px !important;
    display: block !important;
    line-height: 22px !important;
}

.location-radio-btn {
    padding: 0px !important;
    background: inherit !important;
    border: 0px !important;
    width: 100%;
    display: block !important;
    text-align: left !important;
}

.selected-outer-location {
    border: 1px solid #454545;
}

span.selected-location {
    position: absolute;
    right: 9px;
    font-size: 22px;
    color: #0D9F60;
}

.leasing-return-checklist-popup .card-header h5 {
    font-size: 17px;
}

.close-btn {
    font-size: 25px !important;
    background: none !important;
}

    .close-btn:hover, .close-btn:focus {
        background: none !important;
    }

.car-items-left h5 {
    font-size: 15px;
    margin-bottom: 4px;
}

.car-items-left p {
    line-height: 17px;
    font-size: 12px;
}

.bottom-sheet-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.bottom-sheet {
    position: fixed;
    bottom: 0;
    left: 50%;
    /*transform: translateX(-50%) translateY(100%);*/
    width: 100%;
    max-width: 620px;
    height: auto;
    max-height: 95vh;
    background-color: white;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
    z-index: 20;
    padding: 16px;
    overflow-y: hidden;
}

    .bottom-sheet::-webkit-scrollbar-track {
        background: #f1f1f1;
    }

    .bottom-sheet::-webkit-scrollbar-thumb {
        background: #ffa768;
    }

.k-window-content::-webkit-scrollbar-track, .k-prompt-container::-webkit-scrollbar-track {
    background: #f1f1f1 !important;
}

.k-window-content::-webkit-scrollbar-thumb, .k-prompt-container::-webkit-scrollbar-thumb {
    background: #ffa768 !important;
}

.check-list-btm-btn {
    position: sticky;
    bottom: 0;
    padding: 10px;
    background: #fff;
}

.bottom-sheet.show {
    transform: translateX(-50%) translateY(0);
}

.bottom-sheet .card-header {
    position: sticky;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 11px 10px 10px 11px !important;
    z-index: 1000 !important;
    background-color: #fff !important;
    border-bottom: 1px solid #ddd;
}

.bottom-sheet .card-body {
    padding: 15px;
    height: 82vh;
    overflow-y: scroll;
}

.car-key-item-id {
    display: flex;
    align-items: self-start;
    margin-right: 14px;
}

.vehicle-img h5 {
    font-size: 15px;
    font-weight: 600;
}

.vehicle-img h5 {
    font-size: 15px;
    font-weight: 600;
}


.address-appraisal .k-window-content {
    padding: 20px 0px !important;
}

.address-appraisal {
    background: #fff;
    padding: 10px 0 0 0;
    width: 100% !important;
    bottom: 0 !important;
    transform: translate(-50%,0%) !important;
    top: unset !important;
    border-radius: 10px 10px 0px 0px !important;
   /* height: 343px !important;*/
   height: max-content!important;
    overflow: hidden;
    max-width: 610px;
}

button.upload-btn {
    background: #454545;
    width: 100%;
    padding: 10px;
    color: #fff;
    font-size: 19px;
    border: 0px;
    border-radius: 4px;
}

button.capture-btn {
    background: #03a57f;
    width: 100%;
    padding: 10px;
    color: #fff;
    font-size: 19px;
    border: 0px;
    border-radius: 4px;
}

.note {
    background: #F4F4F4;
    padding: 10px;
}

.note-list li {
    font-size: 16px;
    margin-bottom: 5px;
}

.vehicle-image-upload {
    border: 0 !important;
    padding: 0 !important;
    text-align: right !important;
    display: block !important;
}

.vehicle-image {
    border: 0 !important;
    padding: 0 !important;
    text-align: left !important;
    display: block !important;
    width: 100%;
}

.vehicle-image-popup {
    background: #fff;
    padding: 10px 0 0 0;
    width: 100% !important;
    bottom: 0 !important;
    transform: translate(-50%,-47%) !important;
    height: 100% !important;
    border-radius: 10px 10px 0px 0px !important;
    overflow: hidden;
    max-width: 610px;
}

.item-number {
    background: #EFEFEF;
    padding: 0px 6px;
    border-radius: 3px;
}

.car-item {
    border-radius: 5px;
    margin-bottom: 20px !important;
}

.car-items-left h4 {
    color: #212222;
}

span.pm-icon {
    border: 1px solid #ddd;
    padding: 3px 3px;
    background: #f2f2f2;
    font-size: 16px;
}

span.pm-icon-number {
    border: 1px solid #ddd;
    line-height: 21px;
    display: inline-block;
    padding: 3px 8px;
    font-size: 17px;
}

.close {
    font-size: 21px;
}

.vechile-imgae-tab .k-tabstrip-content {
    padding: 10px 0px !important;
    box-shadow: none;
    overflow: unset !important;
    border: 0px;
}

.vechile-imgae-tab ul li {
    border: 0px !important;
    margin-bottom: 0px !important;
    padding: 0px 11px !important;
}

    .vechile-imgae-tab ul li span {
        border-bottom: 3px solid transparent;
        padding: 9px 0px !important;
        color: #212222 !important;
        font-weight: 300 !important;
    }

    .vechile-imgae-tab ul li.k-active span {
        border-bottom: 3px solid #000 !important;
        font-weight: 500 !important;
    }

.vehicle-img h5 span {
    font-size: 14px;
    font-weight: 400;
}

.vechile-imgae-tab .k-tabstrip-content {
    padding: 10px 0 !important;
    box-shadow: none;
    overflow: unset !important;
    border: 0 !important;
}

.vechile-imgae-tab ul {
    border-bottom: 1px solid #ddd;
}

.fs-36 i {
    font-size: 36px;
}

.upload-tire-img {
    position: relative;
    border: 1px solid #b1b1b1;
    border-radius: 5px;
    overflow: hidden;
    padding: 5px;
    height: 90px;
}

span.upload-btn-inner input {
    opacity: 0;
    position: absolute;
    left: 0px;
    width: 100%;
    height: 100%;
    top: 0px;
}

.upload-file-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .upload-file-inner img {
        width: 100%;
        height: 100%;
    }

span.appraisal-no {
    background: #F4F4F4;
    border: 1px solid #CCCCCC;
    padding: 0px 10px;
    color: #0E1010;
    font-weight: 500;
}
/*New Employee design*/
/*Start booking popup*/
.screen-height-scroll {
    height: 72vh;
    overflow-y: scroll;
    overflow-x: hidden;
}
.all-same-size {
    font-size: 11.5px;
}
.start-booking-sheet.bottom-sheet {
    overflow: unset !important;
    height: auto;
    padding-bottom: 20px !important;
}

.start-booking-header {
    background: linear-gradient(88deg, rgba(0, 122, 78, 1) 0%, rgba(0, 88, 100, 1) 35%, rgba(0, 46, 56, 1) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    font-size: 24px !important;
    font-weight: bold;
    color: transparent;
}

.start-booking-sheet.bottom-sheet .card-header {
    padding: 16px 10px 10px 11px !important;
    z-index: 1000 !important;
    background-color: #fff !important;
    border-bottom: 0px !important;
}

.start-booking-sheet p.bg-light-2 {
    background: #E6F6F2 !important;
    font-size: 13px;
    padding: 10px !important;
}

.pac-container {
    left: 13px !important;
    /*new added to change the search box position from bottom to above*/
    top: auto !important;
    bottom: 120px !important;
}

.validation-message {
    position: absolute;
    font-size: 11px;
    bottom: -14px;
}

.vehicle-details-new {
    box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.13) !important;
}

h5.tire-scan-heading {
    font-size: 16px;
    font-weight: 500;
    color: #212222;
}

button.read-tire-details {
    color: #0385D6 !important;
    text-decoration: underline;
    font-size: 12px;
    font-weight: 500;
    border: 0px;
    padding: 0px;
}

    button.read-tire-details:hover {
        color: #016eb2 !important
    }

.scan-tire-image-outer {
    
}

.scan-tire-image {
    text-align: center;
}

.scan-tire-image img {
    max-width: 100%;
    height: auto;
    width: 27%;
}

.scan-tire-fl {
    position: absolute;
    gap: 6px;
    display: flex;
    align-items: center;
    flex-direction: column;
    font-size: 12px;
    font-weight: 600;
}
.scan-tire-fr {
    position: absolute;
    right: 10px;
    gap: 6px;
    display: flex;
    align-items: center;
    flex-direction: column;
    font-size: 12px;
    font-weight: 600;
}
.scan-tire-rl {
    position: absolute;
    bottom: 10px;
    gap: 6px;
    display: flex;
    align-items: center;
    flex-direction: column;
    font-size: 12px;
    font-weight: 600;
}

.scan-tire-rr {
    position: absolute;
    right: 10px;
    bottom: 10px;
    gap: 6px;
    display: flex;
    align-items: center;
    flex-direction: column;
    font-size: 12px;
    font-weight: 600;
}
.scan-tire-detail-data {
    display: flex;
}
.scan-width-height {
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 600;
}
    .scan-width-height span.width {
        border-bottom: 4px solid #5E63CA !important;
    }
    .scan-width-height span.height {
        border-bottom: 4px solid #D77036 !important;
    }
    .scan-width-height span.diameter {
        border-bottom: 4px solid #8CB335 !important;
    }

    .scan-width-height span.load-index {
        border-bottom: 4px solid #D7263D !important;
    }

    .scan-width-height span.speed-index {
        border-bottom: 4px solid #DEBB1C !important;
    }


button.k-button.scan-tire-img {
    background: #00C595 !important;
    padding: 2px;
    width: 40px;
    height: 40px;
}

    button.k-button.scan-tire-img img {
        width: 100%;
    }


.scan-result-card {
    background: #f5f5f5;
    border: 2px solid #ebebeb;
    padding: 13px 10px;
    border-radius: 5px;
    margin-bottom: 20px;
}

h5.scan-detail-heading {
    font-size: 16px;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

    h5.scan-detail-heading span img {
        width: 21px;
        height: 21px;
        margin-right: 5px;
    }

p.scan-content-data {
    margin-bottom: 11px;
    line-height: 24px;
    font-size: 14px;
    padding-left: 10px;
    font-weight: 600;
    border-left: 4px solid;
    border-radius: 0px;
    width: 50%;
    float: left;
}

    p.scan-content-data span {
        font-weight: 400;
    }

    p.scan-content-data.width-scan {
        border-color: #5E63CA;
    }

    p.scan-content-data.height-scan {
        border-color: #D77036;
    }

    p.scan-content-data.diameter-scan {
        border-color: #8CB335;
    }

    p.scan-content-data.speed-scan {
        border-color: #DEBB1C;
    }

    p.scan-content-data.load-scan {
        border-color: #D7263D;
    }

p.same-size-tire-scan {
    line-height: 24px;
    font-size: 14px;
    padding-left: 10px;
    font-weight: 700;
    border-left: 4px solid;
    border-radius: 0px;
    width: 50%;
    float: left;
}

    p.same-size-tire-scan span {
        font-weight: 400;
    }

button.canel-btn {
    color: #686868;
    margin-right: 5px;
    padding: 5.9px 10px;
}

    button.canel-btn:hover {
        color: #686868;
    }

.error-new-msg {
    border: 1px solid red;
    color: red;
    padding: 10px;
}

.saved-tire-details {
    border: 1px solid #ddd;
    border-radius: 4px;
}

.saved-tire-detail-heading {
    background: #ebebeb;
    padding: 8px;
}

    .saved-tire-detail-heading h5 {
        font-size: 16px;
        margin: 0px;
    }

.saved-tire-content {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}
.scan-edit {
    margin-right: 7px;
}
.edit-tire-data-btn {
    padding: 0px !important;
    border: 0px !important;
    box-shadow: none;
    outline: none;
}
ul.saved-tire-content-list {
    margin: 0px;
}

ul.saved-tire-content-list li {
    padding: 0px 0px 0px 10px;
    margin: 0px 0px 5px 0px;
    width: 31%;
}

ul.saved-tire-content-list li:last-child {
    border-right: 0px;
}

.tire-brand-quantity {
    padding: 10px;
}

.tire-detail-width {
    border-left: 4px solid #5E63CA !important;
}

.tire-detail-height {
    border-left: 4px solid #D77036 !important;
}

.tire-detail-diameter {
    border-left: 4px solid #8CB335 !important;
}

.tire-detail-load {
    border-left: 4px solid #D7263D !important;
}

.tire-detail-speed {
    border-left: 4px solid #DEBB1C !important;
}

a.modify-tire-scan {
    color: #0054d8;
    font-size: 12px;
    text-decoration: underline !important;
}
h5.tire-size-notification {
    font-size: 12px;
    padding: 6px 10px;
    margin: 0px;
    background: #faf9eb;
}
.color-info li {
    position: relative;
    padding-left: 16px;
    width: 30%;
}
    .color-info li:before {
        content: "";
        position: absolute;
        width: 10px;
        height: 10px;
        
        left: 0px;
        top: 5px;
    }
    .color-info li.width:before {
        background: #5E63CA;
    }
    .color-info li.height:before {
        background: #D77036;
    }
    .color-info li.dia:before {
        background: #8CB335;
    }
    .color-info li.load:before {
        background: #D7263D;
    }
    .color-info li.speed:before {
        background: #DEBB1C;
    }

.tire-detail-popup .k-window-content {
    padding: 0 0 20px 0px !important;
}

.tire-detail-popup {
    background: #fff;
    padding: 10px 0 0 0;
    width: 100% !important;
    bottom: 0 !important;
    transform: translate(-50%,0%) !important;
    top: unset !important;
    border-radius: 10px 10px 0px 0px !important;
    height: 320px !important;
    overflow: hidden;
    max-width: 610px;
}
.heading h4 {
    font-size: 16px;
    font-weight: 500;
}
.tire-edit-popup span {
    border: 0px; 
    border-radius: 0px;
}
.input-tire {
    border: 1px solid #ddd;
    padding: 5px;
    margin: 0px 0px 10px 0px;
}
.input-tire .inner1 {
    width: 19%;
    display: inline-block;
    margin-bottom: 10px;
}
.same-size-tire { 
    padding: 3px 0px; 
}
    .same-size-tire p {
        margin-bottom: 0px;
        font-size: 12px;
        font-weight: 500;
    }
    .tire-edit-popup span, .tire-edit-popup span:focus {
        border: 0px;
        border-radius: 0px;
        box-shadow: none !important;
        outline: none;
    }
    .tire-edit-popup span.edit-width {
        border-left: 4px solid #5E63CA !important;
    }
    .tire-edit-popup span.edit-height {
        border-left: 4px solid #D77036 !important;
    }
    .tire-edit-popup span.edit-diameter {
        border-left: 4px solid #8CB335 !important;
    }
    .tire-edit-popup span.edit-loadindex {
        border-left: 4px solid #D7263D !important;
    }
    .tire-edit-popup span.edit-speedindex {
        border-left: 4px solid #DEBB1C !important;
    }

.scan-error {
    background-color: #f8d7da;
    color: #721c24;
    padding: 5px 5px;
    border: 1px solid #f5c6cb;
    border-radius: 0px;
    position: relative;
    display: flex;
    align-items: center;
    font-size: 12px;
    line-height: 15px;
}

.scan-close-btn {
    background: transparent;
    border: none;
    font-size: 16px;
    font-weight: bold;
    color: #721c24;
    position: absolute;
    top: 2px;
    right: 0px;
    cursor: pointer;
}


.start-new-booking {
    border: 1px solid #ddd !important;
    color: red !important;
}
.continue-booking-circle {
    color: #03a57f;
    font-size: 19px;
    margin-right: 3px;
}
.booking-tire-detail-section {
    height: 75vh;
    overflow-y: scroll;
    overflow-x: hidden;
}

.heading-reason {
    margin: 0 0 8px 0;
    font-size: 15px;
}
.tire-selection {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 9px;
    justify-content: left;
}

.tire-button {
    border-radius: 20px;
    padding: 7px 8px;
    font-size: 12px;
    background-color: #f8f9fa;
    border: 1px solid #ccc;
    transition: all 0.3s;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
    font-weight: 500;
}

.tire-button.selected {
    background-color: #f7f7f7 !important;
    color: #1d201f !important;
    border-color: #8c9492 !important;
}

    .radio-group {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: left;
    }
.reason-btn ul {
    width: 100%;
    gap: 10px;
}
    .reason-btn ul li {
        width: 47%;
        padding: 0px;
        display: block;
    }
.reason-btn .k-radio-wrap {
    display:none
}
.reason-btn .telerik-button {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 8px;
    border-radius: 10px;
    border: 1px solid #ccc;
    background-color: #fff;
    transition: all 0.3s;
    width: 100%;
    text-align: left;
    cursor: pointer;
    position: relative;
    margin-bottom: 0px;
}
    .reason-btn .telerik-button.selected {
        border-color: #313F3C !important;
        background-color: #F7F7F7 !important;
    }
.radio-text h5 {
    font-size: 15px;
    font-weight: 600;
    margin: 0px;
}

.radio-text-content {
    line-height: 14px;
    font-size: 12px;
    margin-top: 3px;
    margin-bottom: 0px;
}
.reason-btn .radio-content {
    display: flex;
    align-items: self-start;
    gap: 10px;
}
span.snowflake-icon { 
    display: inline;
}
.snowflake-icon img {
   width: 8%;
}

.reason-btn .k-radio {
    display: none !important;
}

.reason-btn .radio-icon {
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3px 9px;
}
.selected .radio-icon {
    padding: 3px 3px;
}

.reason-btn .selected-dot {
    width: 14px;
    height: 10px;
    background-color: #313F3C;
    border-radius: 50%;
}

    .tire-details-container {
        border: 1px solid #ddd;
        border-radius: 8px;
        overflow: hidden; 
    }

        .tire-details-container .header {
            background-color: #FFEADB;
            padding: 5px 10px;
            text-align: left;
            font-size: 12px;
        }

        .tire-details-container .content-vehicle{

        }
.vehicle-title {
    font-size: 14px;
    font-weight: bold;
    margin: 0px 0px 6px 0;
}

    .tire-info {
        margin-top: 5px;
        border-top: 1px solid #ddd;
        padding-top: 10px;
    }

.tire-row {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    padding: 5px 0;
    font-size: 14px;
}
span.axel {
    font-size: 12px;
    font-weight: 700;
}

    .highlight {
        font-weight: bold;
        font-size: 14px;
    }

    

/*New Employee design End*/
@media only screen and (max-width:768px) {
    .scan-tire-image img {
        max-width: 100%;
        height: auto;
        width: 40%;
    }
    .input-tire .inner1 {
        width: 32%;
        display: inline-block;
        margin-bottom: 10px;
    }
    .bottom-sheet {
/*left: 0%;*/
}
    span.selected-location { 
        right: 0px; 
        top: -3px; 
    }

    .start-booking-sheet.bottom-sheet { 
        overflow: unset !important;
        height: auto;
        padding-bottom: 20px !important;
    }
}

/*New Employee design End*/


/*Ronya calender*/

button.day-date-list {
    text-align: center;
    background-color: #fff !important;
    border: 1px solid #A9B2AF !important;
    padding: 9px 6px;
    width: 18.3%;
    margin-right: 7px;
    color: #212222 !important;
}

    button.day-date-list:last-child {
        margin-right: 0px;
    }
.day-date-list span.month {
    font-size: 12px;
}
.day-date-list span.day {
    font-weight: 600;
}
.day-date-list span.week {
    font-size: 12px;
}

.k-button-solid-base.btn-green {
    background: var(--new-green) !important;
    color: #fff !important;
}

.day-date-list.active span.date-list-outer {
    background: #454545;
    color: #fff;
    padding: 5px 8px;
    border-radius: 5px;
}

.day-date-list span.date-list-outer {
    background: #ffffff;
    color: #212121;
    padding: 5px 8px;
    border-radius: 5px;
    border: 1px solid #CCCCCC;
}

.day-date-list span {
    display: block;
}

    .day-date-list span.day {
        font-size: 14px;
    }

    .day-date-list span.date {
        font-size: 18px;
        font-weight: 600;
    }

.time-range ul {
    margin: 10px 0px;
    display: block;
}

ul.time-range-inner {
    display: inline-block;
}

.time-range ul li {
    display: inline-flex;
    padding-right: 13px;
}

    .time-range ul li span {
        display: flex;
        align-items: start;
        margin-right: 6px;
        padding-top: 0px;
        contain-intrinsic-block-size: auto 100px;
    }

    .time-range ul li label {
        font-size: 14px;
        margin: 0px;
    }

h5.date-time-range {
    font-size: 14px;
}

.day-date-list.active {
    background: #E6F6F2 !important;
}
/*ronya calender*/



/***
    **RESPONSIVE SCREENS*****/
@media only screen and (max-width:1200px) {
    .desktop-btn {
        /*  min-width: 500px;*/
    }

    .new-tabing ul.k-tabstrip-items {
        margin-left: 0px;
        display: inline-block;
        white-space: nowrap;
        overflow-y: hidden;
        width: 100%;
        overflow-x: auto;
    }

    .new-tabing ul li,
    .new-tabing.k-tabstrip-top > .k-tabstrip-items-wrapper .k-item {
        display: inline-flex;
        margin-right: 0;
    }

        .new-tabing ul li .nav-link {
            white-space: pre-wrap;
            align-items: self-start;
            display: inline-block;
        }

    .new-tabing ul.k-radio-list.k-list-horizontal {
        overflow: hidden;
        white-space: normal !important;
    }

    h1 {
        font-size: 28px;
    }

    .btn.go-to-booking {
        padding: 7px 10px;
    }

    /*.service-provider-tahnks {
        top: 0px;
    }*/
    .booking-detail .tab-content {
        padding-right: 25px;
    }


    ul.car-services {
        display: block !important;
    }

    .car-services li {
        padding: 17px 16px !important;
        margin-bottom: 10px;
    }

        .car-services li span.delivery-icon {
            font-size: 28px;
        }

    .booking-btn {
        font-size: 18px;
    }

    ul.edit-list li a {
        padding: 0px 5px;
    }

    .service-selected {
        padding: 10px !important;
    }

    .new-tabing ul.listing {
        white-space: normal !important;
        margin: 0 !important;
    }

        .new-tabing ul.listing li {
            display: list-item !important;
        }

    .w-550 {
        max-width: 370px;
    }
}

@media only screen and (min-width:992px) {
    .container {
        max-width: 90%;
        width: 90%;
    }

    .min-w-800 {
        min-width: 800px !important;
        box-shadow: 0 0 8px #222;
    }

    .k-notification-group.demo-notification {
        bottom: 26px !important;
        top: auto !important;
        left: auto !important;
        right: 0 !important;
        transform: translateX(0) !important;
    }
}

@media only screen and (max-width:992px) {
    .min-w-800 {
        min-width: 100% !important;
        box-shadow: 0 0 8px #222;
    }

    .border-right.md {
        border-right: 0px !important;
    }

    .heading h3 {
        font-size: 24px;
    }

    .heading p {
        font-size: 14px;
    }

    .btn.btn-green.btn-book-now {
        padding: 5px 5px !important;
        min-width: 115px;
    }

    #header .logo {
        padding: 8px 25px 8px 0px;
    }

    header .navbar .nav-item {
        padding-left: 20px;
    }

    .list-inline-item:not(:last-child) {
        margin-right: 0px !important;
    }

    .banner-form {
        justify-content: flex-start;
        /* height: fit-content;*/
        /* padding: 50px 0 0 0;*/
        /* margin-bottom: 50px;*/
    }

    #hero h1 {
        font-size: 25px;
    }

    a.book-btn {
        padding: 10px 20px;
        margin: auto;
        font-size: 14px;
    }

    .card-thumbnail {
        width: 120px;
        height: 60px;
    }

        .card-thumbnail img {
            width: auto;
            height: auto;
        }
    /*  body {
        padding-top: 40px;
    }*/
    section.full-height-section {
        padding-top: 20px;
    }

    .k-notification-group.demo-notification {
        bottom: auto !important;
        z-index: 999 !important;
        right: 0 !important;
        width: 100%;
        top: 50px !important;
    }
}

@media only screen and (min-width:767px) {
    .navbuttons li {
        padding-right: 20px;
    }

    body {
        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;
    }

    .desktop-btn {
        width: 40%;
        /*  min-width: 500px;*/
    }

    .k-notification-group {
        width: 40% !important;
        bottom: 60px;
        display: block !important;
        height: auto !important;
        z-index: 1 !important;
    }
}

@media only screen and (max-width:767px) {
    .vehicle-detail p {
        font-size: 12px;
        line-height: normal;
    }

    .w-550 {
        max-width: 100%;
    }

    .navbar ul {
        display: block;
    }

    .sticky-top.booking-summary {
        position: static;
    }

    /*.container-fluid {
        padding-right: var(--bs-gutter-x, 0.05rem);
        padding-left: var(--bs-gutter-x, 0.05rem);
    }*/

    .bg-car {
        background-image: none;
    }

    .banner-space {
        padding: 30px 0;
    }

    /*  .banner-form {
        padding: 30px 0px;
        height: 100%;
    }*/

    .banner-heading .text-center {
        text-align: left !important;
    }
    Deepti@123

    .banner-heading h3 {
        font-size: 26px;
        text-align: left;
        font-weight: 600;
    }

    .banner-heading p {
        font-size: 15px;
        text-align: left;
    }

    /*.navbar a {
        padding: 20px 5px !important;
    }*/
    .navbar li a:not(.btn), .navbar li a:not(.btn):focus {
        padding: 9px 5px !important;
    }

    /*  body {
        padding-top: 55px;
    }*/

    section.full-height-section {
        padding-top: 10px;
    }

    /*  #hero {
        padding: 0px 0;
    }

        #hero h1 br {
            display: none;
        }*/

    #header .logo {
        padding: 8px 0px;
        line-height: 0;
        margin-right: 0;
    }

    header .btn {
        font-size: 12px;
        letter-spacing: 0.5px;
        padding: 5px 10px;
    }

    .btn.btn-green.btn-book-now {
        margin-left: 6px;
        margin-top: 10px;
    }

    .car-services li {
        align-items: center;
        margin-bottom: 20px;
        margin-right: 0px;
        margin-top: 20px;
    }

    .field-input {
        border-radius: 0px !important;
        height: 46px;
        font-size: 15px !important;
    }

    .appointment-right h4 {
        font-size: 19px;
    }

    .service-provider-tahnks {
        position: absolute;
        top: 42px;
        right: 10px;
        width: 180px;
    }

    .btn-border {
        padding: 7px 8px;
    }

    .btn {
        padding: 10px 6px;
        font-size: 14px;
        line-height: normal;
    }

    .k-dialog.cancel-pop,
    .k-dialog.delete-pop {
        width: 90% !important;
        max-width: 90% !important;
        min-width: 90% !important;
    }

    .cancel-pop .k-dialog-titlebar .k-dialog-title {
        /* justify-content: center;*/
        overflow: visible;
        white-space: break-spaces;
    }


    .k-window-title {
        overflow: visible !important;
        white-space: initial;
    }

        .k-window-title::before {
            content: "";
        }
}

@media (min-width: 576px) {
    .navbar li a {
        padding-top: 25px;
        padding-bottom: 25px;
    }

    .container, .container-sm {
        max-width: 90%;
    }

    .container-fluid {
        padding-right: var(--bs-gutter-x, 0.75rem);
        padding-left: var(--bs-gutter-x, 0.75rem);
    }
}

@media only screen and (max-width:576px) {
    .car-plate .btn {
        border-top-left-radius: 4px;
        border-bottom-left-radius: 4px;
    }

    .update {
        width: 100%;
    }

    .update-inner {
        width: 310px;
        margin: 0 auto;
    }

    .company-logo {
        /*     width: 100px;*/
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
    }

    /* .banner-form {
        padding: 30px 0px 0 0;
    }*/

    #hero h1 {
        font-size: 30px;
    }

    h1 br {
        display: none;
    }

    h1 {
        font-size: 25px;
    }

    h4 {
        font-size: 20px;
    }

    h5 {
        font-size: 17px;
    }

    .navbar ul {
        display: block;
        margin: 0 0 10px 0px;
    }

    #launcher {
        bottom: 30px !important;
    }

    .full-height-section {
        height: auto;
    }

    .booking-btn {
        font-size: 16px;
    }

    .thanks {
        font-size: 15px;
        padding-right: 0 !important;
    }

        .thanks p {
            display: flex;
        }

            .thanks p i {
                display: flex;
                align-items: center;
            }
    /*.thanks p>b {
        display:inline-block;
    }*/
    #header .logo {
        padding: 11px 0px;
    }

        #header .logo img {
            max-height: 30px;
        }

    .bg-car h3 {
        font-size: 18px;
    }

    .page-footer {
        padding-bottom: 10px;
    }

    h4.price {
        font-size: 30px;
    }

    .heading h3 {
        font-size: 19px;
    }

    .table-responsive .table-bordered {
        border: 1px solid #dee2e6;
    }

    /*  .appointment-right h4 {
        font-size: 15px;
    }*/

    .order-track {
        padding-bottom: 20px !important;
    }

        .order-track label input:before {
            height: 55%;
            top: 24px;
        }

    .service-provider-tahnks {
        display: none;
    }

    .Placeholder-img {
        height: 60px;
    }

    /* .demo-notification .k-notification {
        width: auto !important;
        margin-bottom: 40px !important;
        padding-right: 5px !important;
    }

    .demo-notification {
        right: 6px !important;
        left: 6px !important;
    }*/

    .k-notification-container {
        width: auto;
        min-width: 350px;
        margin-right: 5px !important;
    }

    .thumbnail {
        text-align: center;
        margin-bottom: 20px;
    }

    /* body {
        padding-top: 45px;
    }*/

    footer ul li a, footer {
        font-size: 12px;
    }

    .btn-border {
        padding: 7px 6px;
        font-size: 14px;
    }
}

/*@media screen and (min-width: 320px) and (max-width: 992px) and (orientation: portrait) {
    .banner-form,
    #hero form {
        height: calc(100vh - 100px) !important;
    }
}*/

@media screen and (min-width: 320px) and (max-width: 992px) and (orientation: landscape) {
    .banner-form, #hero form {
        height: 100% !important;
    }
}

.download-menu {
    padding: 0px 6px;
    border: 1px solid #495057;
    font-size: 23px;
    margin: 11px 15px 0px 0px;
    line-height: 30px;
    cursor: pointer;
}

.download_buttons {
    display: none;
}

.download-menu:hover .download_buttons {
    display: block;
    position: absolute;
    z-index: 3;
    right: 20px;
    background: #fff;
    padding: 10px;
    box-shadow: 0px 0px 3px #222;
    border-radius: 4px;
    width: 210px;
}

.download_buttons a,
.download_buttons a:hover {
    color: inherit;
}

.download_buttons p {
    transition: 0.5s ease all;
}

    .download_buttons p:hover {
        color: #222;
    }


/*Accidental Damage*/
.tiles-A {
    padding: 0px;
    display: block;
   /* box-shadow: 1px 4px 8px #22222224;*/
    box-shadow: 1px 2px 4px 0px #0000001a;
    CONTAIN-INTRINSIC-BLOCK-SIZE: AUTO 100PX;
    height: 100%;
    min-height: 121px;
    border-radius: 8px;
    margin: 10px 0px 0 0;
    overflow: hidden;
    border: 2px solid #E8E4E4;
}

.tiles {
    padding: 5px 0px;
    text-align: center;
    height: 100%;
    transition: ease-in-out .7s;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.tiles-A:hover {
    box-shadow: 1px 3px 8px rgba(0,0,0,.3);
    transition: ease-in-out 0.7s;
    cursor: pointer;
}

.tiles p {
    color: #0E1010;
    font-size: 13px;
    font-weight: 500;
    line-height: 17px;
    margin: 5px 0px 5px 0px;
}

    .tiles p span {
        display: block;
        color: #000;
        font-size: 12px;
    }

.tile-img {
    background: #fff;
    display: inline-block;
    border-radius: 10px;
}

.accidental-damage-card-header h3 {
    color: var(--primary-green);
}

label.lable {
    font-weight: 500;
}

input.upload-img {
    opacity: 0;
    position: absolute;
    height: 100%;
    width: 100%;
    cursor: pointer;
    top: 0px;
    left: 0px;
}

.upload-img-overlay {
    background: rgba(0,0,0,0.4);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
}

.registration-bg {
    background: url("https://bronyadev.blob.core.windows.net/static/iemployee/Accidental-damage/registration.png") no-repeat;
}

.car-dummy-img {
    background: url("https://bronyadev.blob.core.windows.net/static/iemployee/Accidental-damage/car-dummy-img.png") no-repeat;
    background-size: 110% 110%;
}

.mileage-bg {
    background: url("https://bronyadev.blob.core.windows.net/static/iemployee/Accidental-damage/mileage.png") no-repeat;
    border: 1px solid #b2b2b2;
    text-align: center;
    padding: 10px 10px;
    overflow: hidden;
    position: relative;
    background-position: left;
    height: 50px;
}

.upload-img {
    border: 1px solid #b2b2b2;
    border-radius: 9px;
    text-align: center;
    padding: 10px 10px;
    overflow: hidden;
    position: relative;
    background-position: center;
    height: 100px;
}

.uploaded-img {
    border: 1px solid #ddd;
    height: 100px;
    display: flex;
    align-items: center;
    padding: 5px;
    border-radius: 5px;
    position: relative;
}

    .upload-img img, .uploaded-img img {
        width: 100%;
        height: 100%;
    }

span.delete-icon {
    position: absolute;
    right: 5px;
    bottom: 5px;
    background: #fff;
    color: red;
    box-shadow: 0px 1px 4px rgba(0,0,0,0.3);
    padding: 0px 5px;
    border-radius: 3px;
    font-size: 18px;
    cursor: pointer;
}

/*Diadgnostic-add picture*/



.outer-upload-add-diagnostic-picture {
    width: 100%;
    display: block;
    background: #fff;
    padding: 5px;
    box-sizing: border-box;
    margin-bottom: 15px;
    border: 1px solid #ddd;
}

.uploaded-diagnostic-img {
    border: 2px dashed #ddd !important;
    height: 100%;
}

    .uploaded-diagnostic-img .ant-image {
        height: 100%;
    }

    .uploaded-diagnostic-img .ant-image-mask-info {
        display: flex
    }

        .uploaded-diagnostic-img .ant-image-mask-info span.anticon-eye {
            border: 0px !important;
            display: flex;
            width: auto;
            padding: 0px;
            margin: 0px;
        }

            .uploaded-diagnostic-img .ant-image-mask-info span.anticon-eye svg {
                margin-right: 1px;
            }

.upload-img-add-diagnostic-picture img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.upload-img-add-diagnostic-picture {
    text-align: center;
    position: relative;
    overflow: hidden;
    max-width: 100%;
    width: 150px;
    height: 120px;
    margin: auto;
    justify-content: center;
}

    .upload-img-add-diagnostic-picture input {
        position: static;
        width: 100%;
        height: 100%;
        align-items: center;
        opacity: 1;
        display: flex;
    }

    .upload-img-add-diagnostic-picture span {
        color: #ddd;
        font-size: 27px;
        line-height: .2;
        display: block;
        width: 100%;
        text-align: center;
        border: 1px dashed #ddd !important;
        margin-top: 0px;
        padding: 8px;
    }


.custom-file-input::before {
    content: '+';
    border: 0;
    border-radius: 3px;
    cursor: pointer;
    font-weight: 400;
    font-size: 50pt;
    /* color: #333329; */
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
}

.custom-file-input-camera::before {
    content: "\e984";
    border: 0;
    border-radius: 3px;
    cursor: pointer;
    font-weight: 400;
    font-size: 22pt;
    color: #a9a9a9;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
}

.border-right-dashed {
    border-right: 2px dashed #ddd;
}

.custom-file-input-upload::before {
    content: '\ebbb';
    border: 0;
    border-radius: 3px;
    cursor: pointer;
    font-weight: 400;
    font-size: 22pt;
    color: #a9a9a9;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
}



ul.booking-icons-add-diagnostic-picture {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: absolute;
    bottom: 5px;
    right: 5px;
    z-index: 1;
}

.booking-icons-add-diagnostic-picture li {
    /* padding: 5px 4px; */
    line-height: normal;
    /* margin-right: 0px !important; */
    display: inline-flex;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s ease all;
}

    .booking-icons-add-diagnostic-picture li.delete-icon {
        background: var(--bs-red);
        color: #fff;
    }

    .booking-icons-add-diagnostic-picture li i {
        border-radius: 5px;
        font-size: 18px;
        line-height: 26px;
        font-weight: bold;
        cursor: pointer;
        height: 30px;
        width: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
        /* padding: 5px; */
    }

.view-eye-icon-add-diagnostic-picture {
    position: absolute;
    right: 5px;
    bottom: 4px;
    z-index: 1;
    line-height: 16px;
    background: grey !important;
    border-radius: 2px;
    color: white !important;
    padding: 0px 2px;
    font-size: 17px !important;
}

/*Dignostic-add-picture end*/

.Upload-document {
    cursor: pointer;
    color: #4c4c4c;
    z-index: 111;
    position: absolute;
    text-align: center;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    top: 0px;
    left: 0px;
    font-size: 50px;
}

.next-btn {
    background: #12bf81;
    color: #fff;
    border: 1px solid #12bf81;
    padding: 7px 23px;
    font-size: 20px;
}

.car-condition {
    text-align: center;
}

    .car-condition p {
        color: #484646;
        font-size: 16px;
        font-weight: 600;
        margin: 20px 0 10px 0;
    }

    .car-condition span {
        color: #7b7b7b;
        font-size: 14px;
        font-weight: 500;
    }

a.large-btn {
    background: var(--primary-green);
    padding: 15px 20px;
    display: block;
    margin-top: 30px;
    color: #fff;
    font-size: 22px;
    text-align: center;
    border-radius: 60px;
    font-weight: 600;
    width: 70%;
    margin: 30px auto 20px;
}

.accidental-damage-card-header h3 span {
    float: right;
    color: #000;
    font-size: 14px;
    font-weight: 400;
}

.car-involving-tabs li.nav-item {
    width: 50%;
}

    .car-involving-tabs li.nav-item button {
        width: 100%;
        font-size: 16px;
        background: #e4e4e4;
    }

        .car-involving-tabs li.nav-item button.nav-link.active {
            color: #ffffff;
            background-color: #07c597;
            border-color: #07c597 #dee2e6 #fff;
        }

.accident-reason-list ul li {
    font-size: 16px;
    margin: 10px 0 0 0;
}

    .accident-reason-list ul li span input {
        width: 15px;
        height: 15px;
        margin-right: 6px;
        display: inline-flex;
        align-items: center;
    }


.inner-heading {
    font-size: 17px;
    font-weight: 600;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
}

.tracking-damage .order-track-damage {
    position: relative;
    display: block;
    font-size: 14px;
    font-weight: 500;
}

    .tracking-damage .order-track-damage:before {
        content: "";
        position: absolute;
        width: 1px;
        height: 100%;
        background: lightgray;
        left: 18px;
        top: 15px;
        z-index: 1;
    }

    .tracking-damage .order-track-damage:last-child:before {
        display: none;
    }

.order-track-damage label input:before {
    left: 18px;
    height: 56%;
    top: -9px;
    position: absolute;
    content: "";
    width: 1px;
    border: 1px dashed #b9b9b9;
}

.order-track-damage .form-check-label .track-select, .order-track-damage .form-check-label .track-dselect {
    display: inline-flex;
    margin: 10px 6px 8px 10px;
    width: 18px;
    min-width: 18px;
    height: 18px;
    line-height: normal;
    align-items: center;
    border: 1px solid #ddd;
    z-index: 1;
    position: relative;
    background: #454545;
    border-radius: 10px;
}

.order-track-damage .form-check-label .track-select {
    background: #07c597;
}

.order-track-damage .form-check-label input {
    opacity: 0;
}

.upload-img-name {
    font-size: 14px;
    margin: 9px 0px 0px 0px;
}

.telerik-upload {
    position: absolute !important;
    z-index: 999;
    width: 95%;
    height: 100%;
    opacity: 0;
}

    .telerik-upload .telerik-blazor {
        height: 100%;
    }

        .telerik-upload .telerik-blazor .k-upload-button-wrap,
        .telerik-upload .telerik-blazor .k-upload-button-wrap button {
            width: 100%;
            height: 100%;
        }

.thankusectionouter {
    text-align: center;
    height: 80vh;
    display: flex;
    align-items: center;
}

.thankusection i {
    font-size: 78px;
    color: #07C597;
}

.thankusection h3 {
    margin: 20px 0px;
    font-size: 30px;
}

.thankusection p {
    font-size: 16px;
}

.backto-menu {
    width: 100%;
    padding: 15px;
    font-size: 25px;
    border-radius: 50px;
}

input.custom-checkbox {
    width: 20px;
    height: 20px;
}

/*.tab-custom ul.k-tabstrip-items,
.car-involving-tabs ul.k-tabstrip-items {
    justify-content: start;
    width: 100%;
    overflow-x: scroll;
    flex-wrap: nowrap;

}
.tab-custom ul {
    background: #f1f0f0;
    padding: 10px;
   
}*/
.tab-custom ul li.k-active span.k-link h6 {
    color: var(--primary-green);
}

.tab-custom ul.k-tabstrip-items li.k-tabstrip-item {
    border-radius: 50px;
    margin-right: 10px;
    border-bottom: 0;
}

.tab-custom ul.k-tabstrip-items {
    margin-bottom: 10px;
}

.tab-custom ul li span.k-link {
    color: #757575;
    font-size: 15px;
    font-weight: 400;
    background: #fff;
    border-radius: 50px;
    border: 2px solid #ddd;
    line-height: normal;
}

    .tab-custom ul li span.k-link h6 {
        color: #757575;
        font-size: 14px;
    }

.tab-custom ul li.k-active span.k-link {
    color: var(--primary-green) !important;
    background: var(--primary-light);
    border-color: var(--primary-green);
    font-weight: bold;
}

.k-tabstrip-top > .k-tabstrip-items-wrapper {
    border-bottom: 0px;
}

.k-tabstrip-items-wrapper .k-item:active {
    border: 0px !important;
    background-color: transparent !important;
}

.tab-custom ul li.k-active {
    border-radius: 50px !important;
    /*  box-shadow: 0 2px 5px rgba(0,0,0,.1) !important;*/
}

.tab-custom .k-tabstrip-content.k-content {
    padding: 0;
    background: transparent;
    border: 0px solid;
    overflow: hidden;
}

.k-tabstrip-items-wrapper .k-item:focus {
    box-shadow: none !important;
}

.k-button-solid-base.k-selected {
    border-color: #07c597 !important;
    color: white;
    background-color: #07c597;
}

.k-button-flat-primary {
    color: #07c597 !important;
}

.k-calendar .k-calendar-view .k-today {
    color: #ffffff !important;
    background: #07c597 !important;
}

.k-button-solid-primary {
    border-color: #07c597 !important;
    color: white;
    background-color: #07c597 !important;
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.02));
}

.k-time-header .k-time-now, .k-time-selector-header .k-time-now {
    color: #07c597;
}

/*Upload Document CSS*/
.signup-link {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    /*  color: #012B56; */
    color: var(--new-green);
    padding: 8px 0px;
    border-radius: 6px;
    transition: all 0.3s ease-in-out;
    text-decoration: underline !important;
}

.signup-link:hover {
    color: #011831;
}


.capture-image-heading h4 {
    font-size: 22px;
    font-weight: 700;
    line-height: 31px;
    background: linear-gradient(88deg, rgba(0, 122, 78, 1) 0%, rgba(0, 88, 100, 1) 35%, rgba(0, 46, 56, 1) 100%) !important;
    background-clip: text;
    -webkit-background-clip: text !important;
    color: transparent;
}
.capture-image-heading p {
    line-height: 22px;
    background: linear-gradient(88deg, rgba(0, 122, 78, 1) 0%, rgba(0, 88, 100, 1) 35%, rgba(0, 46, 56, 1) 100%) !important;
    background-clip: text;
    -webkit-background-clip: text !important;
    color: transparent;
    font-weight: 600;
}
.capture-box {
    width: 60%;
    margin: auto;
}
.capture-box img {
    width: 100%;
    margin-bottom: 20px;
}
 
.checkbox-container {
    display: flex;
    align-items: flex-start;
    text-align: left;
    margin-top: 15px;
}

    .checkbox-container input {
        margin-top: 4px;
        margin-right: 8px;
    }

/* Hide default file input */
.take-photo .hidden-file-input {
    display: none;
}
/*Upload Document CSS*/


/*Damage service*/
.damage-iframe {
    height: 100vh;
    margin-top: -77px;
}

.font-60 {
    font-size: 60px;
}
/* Car glass damage BY PINKI */
.custom-radio .nav-item {
    margin-right: 60px;
}

    .custom-radio .nav-item .nav-link {
        text-align: left;
    }

span.custom-radio-img {
    height: 100%;
    /* background: #f6f6f6;
    padding: 20px;*/
    text-align: left;
    margin-bottom: 15px;
    display: inline-flex;
}

.nav-pills .nav-link.active {
    background: transparent;
    color: inherit;
}

input[type=checkbox], input[type='radio'] {
    border: 2px solid #bababa !important;
}

input[type=checkbox] {
    border-radius: 2px;
}

input[type='radio']:checked {
    border-color: #1d1d1d !important;
    border-width: 2px !important;
    background-color: #1d1d1d !important;
}

input[type=radio] {
    border-width: 2px !important;
    border-color: var(--i-darkgrey) !important;
    padding: 2px !important;
}

/*.tabs-custom {
    display: flex;
    box-shadow: 0 0 10px #ddd;
    border-radius: 5px;
    padding: 15px;
    background: white;
    margin-bottom: 30px;
}
.tab {
    margin-right: 10%;
    
}
.tabs-custom .tab-box {
    display: none;
    position: absolute;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 0 10px #ddd;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 50px;
}

.tabs-custom .tab > .tab-input:checked + .tab-box {
    display: block;
}*/

/*Garage new design css*/
span.show-more {
    color: #007bff;
    text-decoration: underline;
    cursor: pointer;
}

.available-time-slot table tr th:nth-child(2n+1), .available-time-slot table tr td:nth-child(2n+1) {
    background: #f3f3f3;
}

.available-time-slot table tr th, .available-time-slot table tr td {
    text-align: center;
}

    .available-time-slot table tr th span {
        display: block;
    }

    .available-time-slot table tr td:hover {
        background: #5ed9bb45;
        cursor: pointer;
    }

button.btn.show-mor {
    width: 100%;
    background: #ddd;
    color: #616161;
    border: 0px;
    border-radius: 0px;
}

/*End Garage new design css*/

/*Tire procurement*/
.tire-type {
    border: 1px solid #C2C2C2;
    text-align: left;
    padding: 3px 10px;
    color: #0E1010;
    display: flex;
    align-items: center;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 500;
}

    .tire-type.active {
        border-color: #313F3C !important;
        background-color: #F7F7F7 !important;
    }

span.tire-season {
    width: 35px;
    height: 35px;
    margin-right: 8px;
}

    span.tire-season img {
        width: 100%;
    }

span.tire-width {
    border-left: 4px solid #5E63CA !important;
}

span.tire-height {
    border-left: 4px solid #D77036 !important;
}

span.tire-diameter {
    border-left: 4px solid #8CB335 !important;
}

span.tire-loadindex {
    border-left: 4px solid #D7263D !important;
}

span.tire-speedindex {
    border-left: 4px solid #DEBB1C !important;
}

.custom-quantity {
    height: 35px;
    border-radius: 0px !important;
}

@media only screen and (max-width : 768px) {
    .tire-type {
        padding: 3px 3px;
    }

    span.tire-season {
        width: 23px;
        height: 23px;
        margin-right: 5px;
    }
}


.page-title {
    background: white;
    box-shadow: .0px 6px 7px 0 #ececec;
    margin-bottom: 20px;
}

    .page-title h5 {
        font-size: 15px;
        margin: 7px 0;
    }

@media (min-width: 1200px) {
    label.form-check-label {
        display: flex;
        padding: 4px 0px;
    }

    .order-track-damage .form-check-label .track-select, .order-track-damage .form-check-label .track-dselect {
        margin: 2px 6px 8px 10px;
    }
}

}

@media only screen and (max-width: 1200px) {
    label.form-check-label {
        display: flex;
        padding: 4px 0px;
    }

    .order-track-damage .form-check-label .track-select, .order-track-damage .form-check-label .track-dselect {
        margin: 2px 6px 8px 10px;
    }
}

@media only screen and (max-width: 767px) {
    .uploaded-img {
        height: 200px;
    }
}

@media only screen and (max-width:768px) {
    .bottom-sheet {
        /*left: 0%;*/
    }

    .start-booking-sheet.bottom-sheet {
        overflow: unset !important;
        height: auto;
        padding-bottom: 20px !important;
    }

    ul.saved-tire-content-list li {
        width: 49%;
    }

    .address-appraisal .k-window-content {
        padding: 9px 0 !important;
    }
    .location-inner {
        padding: 0px 8px;
    }
    .time-range ul li {
        padding-right: 10px;
        padding-bottom: 10px;
    }
    .capture-box {
        width: 100%;
        margin: auto;
    }
}
