﻿* {
    box-sizing: border-box;
    padding: 0px;
    margin: 0px;
    text-decoration: none !important;
}

:root {
    --para_font: 'Urbanist', sans-serif;
    --para_font_color: #545151;
    --para_font_size: 12px;
    --backcolor: #f0f0ff;
    --backcolor2: #ffffff4a;
    --transgrey: #8d8d8d61;
    --transwhite: #ffffff42;
    --table-head: #252323;
    --blacktrans: #000000e0;
    --inputback: #f6f3ff;
    --headbg: radial-gradient(#5d12c2, #292d99);
    --headFontStyle: bookman old style;
    --themeheader: #ebdcfd;
    --headfont: 500;
}

::-webkit-scrollbar {
    width: 8px;
    height:8px;
}

::selection {
    color: darkblue;
    font-weight: 600;
    background: yellow;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px #e5d8ff;
    border-radius: 30px;
}

::-webkit-scrollbar-thumb {
    background: var(--headbg);
    border-radius: 30px;
}

.preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #e7edfe;
    z-index: 999;
}

.pl,
.pl__ball,
.pl__ball-inner-shadow,
.pl__ball-side-shadows,
.pl__ball-texture,
.pl__inner-ring,
.pl__outer-ring,
.pl__track-cover {
    border-radius: 50%;
}

.pl {
    position: relative;
    width: 16em;
    height: 16em;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}

.pl__ball,
.pl__ball-inner-shadow,
.pl__ball-outer-shadow,
.pl__ball-side-shadows,
.pl__ball-texture,
.pl__ball-texture:before,
.pl__inner-ring,
.pl__outer-ring,
.pl__track-cover {
    position: absolute;
}

    .pl__ball,
    .pl__ball-inner-shadow,
    .pl__ball-outer-shadow,
    .pl__ball-texture:before,
    .pl__track-cover {
        animation: ball 3s linear infinite;
    }

.pl__ball {
    top: calc(50% - 1.25em);
    left: calc(50% - 1.25em);
    transform: rotate(0) translateY(-6.5em);
    width: 2.5em;
    height: 2.5em;
}

.pl__ball-inner-shadow {
    animation-name: ballInnerShadow;
    box-shadow: 0 0.1em 0.2em hsla(0, 0%, 0%, 0.3), 0 0 0.2em hsla(0, 0%, 0%, 0.1) inset, 0 -1em 0.5em hsla(0, 0%, 0%, 0.15) inset;
    width: 100%;
    height: 100%;
}

.pl__ball-outer-shadow {
    animation-name: ballOuterShadow;
    background-image: linear-gradient(hsla(0, 0%, 0%, 0.15),hsla(0, 0%, 0%, 0));
    border-radius: 0 0 50% 50% / 0 0 100% 100%;
    filter: blur(2px);
    top: 50%;
    left: 0;
    width: 100%;
    height: 250%;
    transform: rotate(20deg);
    transform-origin: 50% 0;
    z-index: -2;
}

.pl__ball-side-shadows {
    background-color: hsla(0, 0%, 0%, 0.1);
    filter: blur(2px);
    width: 100%;
    height: 100%;
    transform: scale(0.75,1.1);
    z-index: -1;
}

.pl__ball-texture {
    overflow: hidden;
    width: 100%;
    height: 100%;
    transform: translate3d(0,0,0);
}

    .pl__ball-texture:before {
        animation-name: ballTexture;
        animation-duration: 0.25s;
        background: url(https://assets.codepen.io/416221/snow.jpg) 0 0 / 50% 100%;
        content: "";
        display: block;
        filter: brightness(1.05);
        top: 0;
        right: 0;
        width: 200%;
        height: 100%;
    }

.pl__inner-ring {
    box-shadow: 0 -0.25em 0.5em hsla(0, 0%, 100%, 0.4), 0 0.5em 0.75em hsla(0, 0%, 100%, 0.4) inset, 0 0.5em 0.375em hsla(0, 0%, 0%, 0.15), 0 -0.5em 0.75em hsla(0, 0%, 0%, 0.15) inset;
    top: 2.375em;
    left: 2.375em;
    width: calc(100% - 4.75em);
    height: calc(100% - 4.75em);
}

.pl__outer-ring {
    box-shadow: 0 -0.45em 0.375em hsla(0, 0%, 0%, 0.15), 0 0.5em 0.75em hsla(0, 0%, 0%, 0.15) inset, 0 0.25em 0.5em hsla(0, 0%, 100%, 0.4), 0 -0.5em 0.75em hsla(0, 0%, 100%, 0.4) inset;
    top: 0.75em;
    left: 0.75em;
    width: calc(100% - 1.5em);
    height: calc(100% - 1.5em);
}

.pl__track-cover {
    animation-name: trackCover;
    background-image: conic-gradient(hsla(223, 90%, 95%, 1) 210deg, hsla(223, 90%, 95%, 0) 270deg);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Animations */
@keyframes ball {
    from {
        transform: rotate(0) translateY(-6.5em);
    }

    50% {
        transform: rotate(180deg) translateY(-6em);
    }

    to {
        transform: rotate(360deg) translateY(-6.5em);
    }
}

@keyframes ballInnerShadow {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(-360deg);
    }
}

@keyframes ballOuterShadow {
    from {
        transform: rotate(20deg);
    }

    to {
        transform: rotate(-340deg);
    }
}

@keyframes ballTexture {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(50%);
    }
}

@keyframes trackCover {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

input[type=radio] {
    width: 20px;
    margin-right: 4px;
    cursor: pointer;
}

input[type=checkbox], input[type=file], .chngemobpad, #foodImg {
    cursor: pointer !important;
}

input[type=file] {
    border: none !important;
}

::file-selector-button {
    /*   display: block;
    width: 100%;*/
    border: none;
}

h1, h2, h3, h5, h6 {
    font-family: var(--headFontStyle);
    font-weight: var(--fweight2);
}

#astric {
    color: red;
    position: absolute;
    z-index: 9;
    left: 5px;
    top: -5px;
}

td #astric {
    top: 0px;
}

.relative {
    position: relative !important;
}

.absolute {
    position: absolute !important;
}

p, spam, li, u, a {
    color: var(--para_font_color);
}

input, select, textarea, .k-input, .k-picker, .k-upload .k-upload-button, .k-upload {
    width: 100%;
    padding: 5px 5px;
    background: var(--inputback);
    font-weight: 600;
    /*border-right: 1px solid darkgrey !important;*/
    border: none;
    border-radius: 10px;
    font-size: 12px;
    font-family: "Poppins",sans-serif;
}
    input[type=checkbox], input[type=radio] {
        accent-color: rebeccapurple
    }

.k-upload {
    padding: 0px !important;
}

input:disabled {
    background: #a195ab;
    border: none !important;
}

    input:disabled::placeholder {
        color: white !important;
    }

input:focus, select:focus, textarea:focus {
    outline: none;
}

.page-info-area-1 {
    margin-bottom: 45px;
}

.page-info-area-1, .card {
    height: calc(100vh - 125px);
    overflow: auto;
}

    .page-info-area-1 .modal-body > form {
        min-height: 0px;
    }

body {
    padding: 0;
    margin: 0;
    font-family: 'Urbanist', sans-serif;
    background: var(--backcolor);
    font-size: 14px;
    font-weight: 600;
}

h1, h2, h3, h5, h6 {
    font-weight: var(--headfont);
}

h4 {
    font-size: 15px;
    font-family: var(--head_font);
    font-weight: var(--fweight2);
    color: darkblue;
    font-weight: 600;
}

.astrict {
    color: red;
    position: absolute;
    top: 0px;
    left: 5px;
}

td, label {
    font-family: 'Poppins',sans-serif !important;
    font-weight: 400 !important
}

.side-nav {
    border-bottom: 1px solid grey;
    box-shadow: 0px 5px 20px #eff0fe;
}

    .side-nav .menu-item .list-inline .active {
        background-color: white;
        color: var(--white);
        font-weight: var(--fweight2);
    }

    .side-nav .menu-item .list-inline-item .active a > .tText,
    .side-nav .menu-item .list-inline-item .active a > i {
        color: darkblue !important;
    }

    .active .tText, .side-nav .menu-item .list-inline .list-inline-item a {
        color: darkblue !important;
    }

.active a, .active a i {
    color: darkblue !important;
}

.icofont-long-arrow-up, .icofont-rupee-plus {
    color: var(--green);
    font-size: 15px;
}

.icofont-long-arrow-down, .icofont-rupee-minus {
    color: red;
    font-size: 15px;
}

.card-header, .card-footer {
    font-weight: 500;
}

.w-45 {
    width: 45%;
}

.drpdwn {
    position: relative;
}

header {
    position: sticky;
    top: -2.5pc;
    z-index: 99;
    width: 100%;
}

.head_area, .mainbg {
    border-bottom: 1px solid #b3b3b3d1 !important;
    background: var(--headbg);
}

.themeheader {
    background: var(--headbg);
}

.side-nav {
    background: white
}

.k-upload .k-dropzone, .k-upload .k-upload-dropzone {
    padding: 0px !important;
}

.k-upload-button-wrap, .k-upload .k-upload-button {
    width: 100% !important;
}


.dropdown {
    display: none;
    position: absolute !important;
    width: 17em;
    background: var(--bs-body-bg);
    top: 100%;
    left: 0%;
    border-top: 2px solid var( --gelblue);
    border-bottom: 2px solid var( --gelblue);
}
.border-bottom > .text-gelblue{
    width:100%;
    display:block;
}
.text-gelblue, .sub-dropdown ul li .text-gelblue {
    color: var(--para_font_color) !important;
    transition: all 0.1s linear 0s;
}

.dropdown > .list-unstyled li:hover > a,
.dropdown .list-unstyled li:hover > a > span,
.sub-dropdown > .list-unstyled > li:hover > a span {
    color: white !important;
    transition: all 0.1s linear 0s;
    display: inline-block;
}
.menu-item .list-inline .list-inline-item:hover a {
    color: #bb7658
}
.menu-item .list-inline .list-inline-item:after {
    content: "";
    position: absolute;
    width: 0%;
    height: 1px;
    left: 0;
    top: -1px;
    z-index: 9;
    background-color: white;
    transition: all 0.1s linear 0s !important;
}

.menu-item .list-inline .list-inline-item:hover:after {
    width: 100%;
    background-color: #bb7658;
    height: 2px;
    transition: all 0.1s linear 0s !important;
}

.menu-item .list-inline .list-inline-item:hover .dropdown {
    display: block;
    transition: all 0.1s linear 0s !important;
}

.dropdown .list-unstyled li {
    transition: all 0.1s linear 0s;
}

    .dropdown .list-unstyled li:hover {
        background: var(--headbg);
        transition: all 0.5s cubic-bezier(0, 0.47, 0.88, 0.1) 0s;
        border-left: 0px solid #fff;
        border-bottom: none !important;
    }

    .dropdown .list-unstyled li .icofont-simple-right {
        transition: all 1s linear 0s !important;
    }

    .dropdown .list-unstyled li:hover .icofont-simple-right {
        transition: all 1s linear 0s !important;
        position: relative;
        left: 50%;
    }

    .dropdown .list-unstyled li:hover .sub-dropdown {
        display: block;
        transition: all 1s linear 0s !important;
    }

.sub-dropdown {
    position: absolute !important;
    left: 100.5%;
    width: 15em;
    background: #ede9e9e0 !important;
    margin-top: -10%;
    display: none;
    transition: all 1s linear 0s !important;
}

.footer-part {
    position: fixed;
    width: 100%;
    bottom: 0px;
    z-index: 99;
    background: white;
    border-top: 2px solid var(--bs-border-color-translucent);
}

.custom-tooltip {
    --bs-tooltip-bg: var(--bd-violet-bg);
    --bs-tooltip-color: var(--bs-white);
}

.login {
    top: 0;
    width: 100%;
    text-align: center;
    bottom: 0;
    opacity: 1;
    z-index: 999;
    min-height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 0;
    /*background-image: linear-gradient(to bottom, #672585, #5631d7);*/
    background-image: url(../img/loginBg.jpg);
    background-size: cover;
}

    .login::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url("../img/pattern.png") top left repeat;
        z-index: -1;
    }

    .login .form-section {
        max-width: 500px;
        margin: 0 auto;
        padding: 70px;
        background: #fff;
        border-radius: 50px;
        box-shadow: 0 0 35px rgba(0, 0, 0, 0.1);
        z-index: 999;
        position: relative;
    }

        .login .form-section a {
            text-decoration: none;
        }

    .login #particles-js {
        background-size: cover;
        background-position: 50% 50%;
        position: fixed;
        min-height: 100vh;
        width: 100%;
        z-index: -999;
    }

    .login .form-section p {
        color: #535353;
        margin-bottom: 0;
        text-align: center;
        font-size: 16px;
    }


        .login .form-section p a {
            color: #535353;
        }

    .login .form-section ul {
        list-style: none;
        padding: 0;
        margin: 0 0 40px;
    }

    .login .logo-2 img {
        margin-bottom: 20px;
        height: 30px;
    }

    .login .form-section .social-list li {
        display: inline-block !important;
        margin-bottom: 5px;
    }

        .login .form-section .social-list li a {
            font-size: 14px;
            font-weight: 400;
            width: 130px;
            margin: 2px 0 3px 0;
            height: 40px;
            line-height: 40px;
            border-radius: 0;
            display: inline-block;
            text-align: center;
            text-decoration: none;
            background: #fff;
            box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
            font-family: 'Jost', sans-serif;
        }

            .login .form-section .social-list li a i {
                height: 40px;
                width: 40px;
                line-height: 40px;
                float: left;
                color: #fff;
            }

            .login .form-section .social-list li a span {
                margin-right: 7px;
            }

    .login .form-section .thembo {
        margin-left: 4px;
    }

    .login h1 {
        margin: 0 0 30px;
        font-size: 24px;
        font-weight: 400;
        color: #040404;
    }

    .login .form-section .form-group {
        margin-bottom: 25px;
    }

    .login .form-section .form-control {
        font-size: 16px;
        outline: none;
        background: #fff;
        color: #535353;
        border-radius: 3px;
        border: 1px solid #fff;
        box-shadow: 0 0 5px rgb(0 0 0 / 20%);
        float: left;
        width: 100%;
        padding: 12px 20px 12px 20px;
        height: 55px;
    }

    .login .form-section .checkbox .terms {
        margin-left: 3px;
    }

    .login .form-section button:focus {
        outline: none;
        outline: 0 auto -webkit-focus-ring-color;
    }

    .login .form-section .terms {
        margin-left: 3px;
    }

    .login .form-section .form-check-input {
        width: 20px;
        height: 20px;
        margin-top: 0px;
        position: absolute;
        border: 1px solid #fff;
        border-radius: 2px;
        background-color: #fff;
        margin-left: -22px;
        box-shadow: 0 0 5px rgb(0 0 0 / 20%);
    }

    .login .form-section .form-check {
        float: left;
        margin-bottom: 0;
    }

        .login .form-section .form-check a {
            color: #535353;
        }

    .login .form-section .form-check-label {
        padding-left: 5px;
        margin-bottom: 0;
        font-size: 16px;
        color: #535353;
    }

    .login .form-check-input:checked {
        background-color: #0022a7;
        border-color: #0025b7;
    }

    .login .form-section a.forgot-password {
        font-size: 16px;
        color: #535353;
    }

    .login .btn-theme {
        color: #fff;
        text-align: center;
        border: 2px solid transparent;
        display: inline-block;
        position: relative;
        z-index: 1;
        transition: all .7s ease;
        border-radius: 3px;
        font-size: 17px;
        font-weight: 400;
        font-family: 'Jost', sans-serif;
        width: 100%;
    }

        .login .btn-theme:before {
            position: absolute;
            content: "";
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            visibility: hidden;
            transition: all .7s ease;
            z-index: -1;
            border-radius: 3px;
        }

        .login .btn-theme:after {
            position: absolute;
            content: "";
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            visibility: hidden;
            transition: all .7s ease;
            z-index: -1;
        }

        .login .btn-theme:hover {
            background: transparent;
        }

            .login .btn-theme:hover:before {
                width: 0;
                opacity: 1;
                visibility: visible;
            }

            .login .btn-theme:hover:after {
                width: 0;
                opacity: 1;
                visibility: visible;
            }

    .login .btn-lg {
        padding: 0 50px;
        line-height: 51px;
    }

    .login .btn {
        box-shadow: none !important;
    }

    .login .btn-md {
        padding: 0 45px;
        line-height: 41px;
    }

    .login .btn-primary {
        background: #1d21bc;
    }

        .login .btn-primary:before {
            background: #1d21bc;
        }

        .login .btn-primary:after {
            background: #1d21bc;
        }

        .login .btn-primary:hover {
            color: #1d21bc;
            border: 2px solid #1d21bc;
        }
button,input[type=submit]{
    border:none
}

.theme-button {
    color: #471fae;
    background-color: #fff;
    -webkit-transition: .3s all ease;
    transition: .3s ease all;
    display: inline-block;
    text-align: center;
    padding: 2px 10px;
    border: 1px solid #491eb0;
    border-radius: 2px;
    position: relative;
    box-shadow: 0 2px 10px rgba(0,0,0,.16), 0 3px 6px rgba(0,0,0,.1);
    z-index: 2;
    font-weight: 600;
    font-size: 14px;
}

    .theme-button:before {
        -webkit-transition: .5s all ease;
        transition: .5s all ease;
        position: absolute;
        top: 0;
        left: 50%;
        right: 50%;
        bottom: 0;
        opacity: 0;
        content: '';
        background-color: #491eb0;
        z-index: -1;
    }

    .theme-button:hover,
    .theme-button:focus {
        color: #FFF;
    }

        .theme-button:hover:before,
        .theme-button:focus:before {
            -webkit-transition: 0.5s all ease;
            transition: 0.5s all ease;
            left: 0;
            right: 0;
            opacity: 1;
        }

.accordion {
    cursor: pointer;
    transition: 0.4s;
    position: relative;
    /*background: var(--themeheader);*/
}

    .accordion:before {
        content: '\002B';
        color: #777;
        font-size: 20px;
        float: right;
        position: relative;
        top: 0px;
        margin-right: 5px;
        z-index: 9;
    }

.row > .active:before {
    content: "\2212";
}

.panel {
    transition: max-height 0.2s ease-out;
    display: none;
}


.table-overflow {
    height: calc(100vh - 175px);
    overflow: auto;
    border: 1px solid darkblue;
    border-radius: 3px;
    background-color: rgb(255 255 255 / 76%);
}

/*thead, th {
    background: #3925a5;
    color: white;
    font-family: bookman old style;
    font-weight: 400;
}*/

.themeheader {
    background: var(--themeheader);
    font-family: var(--headFontStyle);
}

.card_title, .newHead {
    text-transform: capitalize;
    font-weight: 600;
    color: #74008b;
    font-family: var(--headFontStyle);
}

.newHead {
    color: darkblue !important;
}

.modal-header {
    background: lavender;
    padding: 5px 10px;
}

/*.tText:hover, .tText:hover i {
    color: blueviolet !important;
}*/
.list-inline-item:active {
    background: #e5d8ff;
    background-image: linear-gradient(360deg, #491db391, #e9e9e969);
}
#chkIsActive {
    width: 20px !important;
}

.poperror span {
    color: #df2121 !important;
    font-size: .75rem !important;
}

.toast {
    position: FIXED;
    Z-INDEX: 99;
    top: 1%;
    background: green;
    color: white;
}

.dataTables_length label select, .dataTables_filter label input {
    width: auto !important;
}

.ui-dialog {
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%,-50%);
}

.ui-dialog-content .ui-widget-content {
    height: auto !important;
    padding: 0px !important;
}

.ui-dialog-titlebar-close::after {
    content: "x";
    position: absolute;
    right: 4px;
    top: -4px;
}

.ui-dialog-content .ui-widget-content {
    padding: 0px
}

.poperror span {
    color: red !important;
    font-size: 0.75em !important;
}

.ui-dialog-titlebar-close {
    display: none !important;
}

/*PreLoader */


#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    background: #cfc0c05e;
}

#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #9370DB;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

    #loader:before {
        content: "";
        position: absolute;
        top: 5px;
        left: 5px;
        right: 5px;
        bottom: 5px;
        border-radius: 50%;
        border: 3px solid transparent;
        border-top-color: #BA55D3;
        -webkit-animation: spin 3s linear infinite;
        animation: spin 3s linear infinite;
    }

    #loader:after {
        content: "";
        position: absolute;
        top: 15px;
        left: 15px;
        right: 15px;
        bottom: 15px;
        border-radius: 50%;
        border: 3px solid transparent;
        border-top-color: #FF00FF;
        -webkit-animation: spin 1.5s linear infinite;
        animation: spin 1.5s linear infinite;
    }

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.border-dashed {
    border: 1px dashed #dee2e6 !important
}

.astric {
    color: red;
    position: absolute;
    z-index: 9;
    left: 5px;
    top: -5px;
    font-size: 18px;
}

td .astric {
    top: 0px;
}

.la-lock, .la-low-vision, .la-eye {
    position: absolute;
    right: 5%;
    top: 10%;
    padding: 5px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
}

.k-list > .k-list-footer {
    border-top: 1px dashed;
    text-align: center;
    background-color: #7bd2f6;
    color: black;
}

.la-user-tie, .la-share {
    background: #75219a;
    padding: 3px;
    border-radius: 4px;
    color: white;
    cursor: pointer;
}

.user_login, .user_logout {
    padding: 3px 2px 3px 2px;
    border-radius: 4px;
    background: #e4b314;
    font-size: 10px;
    letter-spacing: 1.5px;
    font-weight: bolder;
    text-transform: uppercase;
    cursor: pointer;
}
/*.overback {
    background: #5c6bc0;
    border-radius: 5px
}*/
.overback a {
    font-size: 10px;
    font-weight: bolder;
    letter-spacing: 1px;
    text-transform: uppercase
}

.tableendOverlay {
    position: absolute;
    z-index: 9;
    margin-top: 0.5rem;
    right: 2%;
}
/*Kendo grid css*/
.k-grid-content {
    min-height: 258px !important;
    height: calc(100vh - 22rem) !important;
}
#grid .k-grid-content {
    height: auto !important;
}

.k-table-thead, .k-table-header, .k-table-group-sticky-header, .k-pager {
    border-color: #bacdd5 !important;
    color: #000 !important;
    background-color: #e5d8ff !important;
}

.k-link .k-column-title {
    color: black !important;
}

.k-pager-numbers-wrap {
    border-color: #dfedff6e !important;
    color: black !important;
    background: #fff !important;
    box-shadow: none !important;
}

.k-pager-md .k-pager-numbers-wrap .k-button {
    border-color: #75219a !important;
}

.k-button-flat-primary {
    color: #4c1bb4 !important;
}

.k-grid-header .k-grid-filter:hover, .k-grid-header .k-header-column-menu:hover, .k-grid-header .k-grid-header-menu:hover, .k-grid-header .k-hierarchy-cell .k-icon:hover, .k-grid-header .k-hierarchy-cell .k-svg-icon:hover {
    background-color: #f0f0ff !important;
}

.k-grid-header, .k-grouping-header, .k-grid-add-row, .k-grid-footer {
    color: #5217ba !important;
    background-color: #3725a4 !important;
}

.k-picker-solid {
    border-color: #fff !important;
    background-color: #e5d8ff52 !important;
    background-image: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0)) !important;
}

    .k-picker-solid:hover, .k-picker-solid.k-hover {
        border-color: black !important;
        background-image: var(--headbg) !important;
        color: white !important;
        font-weight: bold !important;
    }

.k-list-item.k-selected, .k-selected.k-list-optionlabel {
    color: #fff !important;
    background-color: darkslateblue !important;
}

.k-list-item:hover, .k-list-optionlabel:hover, .k-list-item.k-hover, .k-hover.k-list-optionlabel {
    color: #003f59;
    background-color: gainsboro;
}
.k-button-solid-primary, .k-button-solid-base {
    border-color: midnightblue !important;
    color: white !important;
    background-color: #7bd2f6 !important;
    background-image: var(--headbg) !important;
}
    .k-button-solid-base:hover, .k-button-solid-base.k-hover, .k-button-solid-primary:hover, .k-button-solid-primary.k-hover {
        border-color: darkblue !important;
        background: white !important;
        color: darkblue !important;
    }
.k-table, .k-data-table {
    color: #565353;
}
.la-save{font-size:18px !important;}
.btn-outline-warning:hover {
    color: #fbfbfb;
    background-color: #ffc107;
    border-color: #ffc107;
}
.la-exclamation-triangle{
    color:crimson;
}
.k-list-item:hover, .k-list-optionlabel:hover, .k-list-item.k-hover, .k-hover.k-list-optionlabel {
    background-color: #e5d8ff !important;
}
.k-toolbar {
    background-color: #ffffff !important;
}
#employeeissueitemgrid .k-grid-content {
    height: calc(100vh - 22.5rem) !important;
}
.k-grid-md td, .k-grid-md .k-table-td {
    font-weight: 500 !important;
    font-family: 'Urbanist' !important;
}
.k-table-td{
    display:block;
    text-align:center
}
.w-70{
    width:70% !important;
}