﻿@import url('https://fonts.googleapis.com/css2?family=Courier+Prime:ital,wght@0,400;0,700;1,400;1,700&display=swap') * {
    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: 5px;
    height: 5px;
}

::selection {
    color: #5f0360;
    font-weight: 600;
    background: #e4b314;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px #e4b314;
    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;
    accent-color: #4120ac;
}

input[type=checkbox], input[type=file], .chngemobpad {
    cursor: pointer;
}

input[type=file] {
    border: none;
}

input[type=checkbox] {
    accent-color: #ebdcfd;
}

::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;
    font-size: 18px;
}

li .astric {
    left: -6px;
}

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-upload-button, .k-input, .k-picker {
    width: 100%;
    padding: 5px 5px;
    background: var(--inputback);
    font-weight: 500;
    border: 0.5px solid lightgrey;
    font-size: 12px;
    font-family: "Poppins",sans-serif;
    border-radius: 10px !important;
}

.modal-content {
    background: #d3d3d324;
}

input:disabled {
    background: #a195ab;
    border: none !important;
    color: white;
}

    input:disabled::placeholder {
        color: white !important;
    }

input:focus, select:focus, textarea:focus {
    outline: none;
    background-color: white
}

textarea {
    min-height: 74px
}

.page-info-area-1, .card {
    height: calc(100vh - 9em);
}

._customCard .card {
    height: auto;
}

.card {
    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;
}

th, td {
    font-size: 0.75rem;
    font-weight: 400 !important;
}

th {
    font-weight: bolder !important
}

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;
    font-weight: 300
}

.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);
}

.side-nav {
    background: white
}

.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);
    z-index: 1099;
}

.text-gelblue, .sub-dropdown ul li .text-gelblue {
    color: var(--para_font_color) !important;
    transition: all 0.1s linear 0s;
}

.border-bottom > .text-gelblue {
    display: block;
    width: 100%
}

.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: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: var(--backcolor);
    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);
}

.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: 60px 30px;
    background: linear-gradient(to bottom, #672585, #5631d7);
    background-image: url('../img/loginbg.jpg');
}

    .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: 450px;
        margin: 0 auto;
        padding: 70px 35px;
        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-dark {
        background: #212529;
    }

        .login .btn-dark:before {
            background: #7e5e76;
        }

        .login .btn-dark:after {
            background: #000;
        }

        .login .btn-dark:hover {
            color: #7e5e76;
            border: 2px solid #7e5e76;
        }


.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: 12px;
}

    .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: #e4b314;
        z-index: -1;
    }

    .theme-button:hover,
    .theme-button:focus {
        color: #5f0360;
        font-weight: 900;
        -webkit-transition: .5s all ease;
        transition: .5s all ease;
    }

        .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;
}

#chkIsActive, .custom-control-input {
    width: 20px !important;
}

.ui-dialog-titlebar {
    padding: .25rem !important;
    text-align: center;
}

.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;
    margin: 3px auto;
}

.ui-dialog {
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%,-50%);
    position: absolute !important;
}

.ui-dialog-title {
    padding: 5px;
    font-size: 18px;
    font-weight: 500;
    color: darkblue;
}

.ui-dialog-content .ui-widget-content {
    height: auto !important;
    padding: 0px !important;
}

.ui-dialog-titlebar-close {
    position: absolute;
    width: 20px;
    height: 20px;
    right: 0px;
    border: 1px solid darkgrey;
    background: white;
}

    .ui-dialog-titlebar-close::after {
        content: "x";
        position: absolute;
        right: 5px;
        top: -3px;
        color: red;
    }

.ui-dialog-content .ui-widget-content {
    padding: 0px
}

.ti-close, .ti-trash {
    color: red;
}

.ti-check-box {
    color: forestgreen;
}

.ti-pencil-alt {
    color: blue;
}


/*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
}

.user_login, .user_logout, .userNotification {
    padding: 3px 2px 3px 2px;
    border-radius: 4px;
    background: #e4b314;
    font-size: 10px;
    letter-spacing: 1.5px;
    color: #5f0360 !important;
    font-weight: bolder;
    text-transform: uppercase;
    cursor: pointer;
}

    .user_login > .ti-user, .user_logout > .ti-share, .userNotification > .ti-bell {
        background: #5f0360;
        padding: 3px;
        border-radius: 4px;
        color: white;
        cursor: pointer;
    }

    .userNotification span {
        padding: 1px 5px;
        position: absolute;
        z-index: 999;
        left: 15px;
        top: -11px;
        background: red;
        border-radius: 50%;
        color: white;
    }


.k-grid-container > .k-grid-content {
    height: calc(100vh - 25em) !important;
}

.k-upload > .k-upload-dropzone {
    padding: 0 !important;
}

.k-upload {
    /*border-radius:10px;*/
    border-color: transparent !important;
}

.k-upload-button-wrap > .k-upload-button-wrap, .k-upload-button {
    width: 100% !important;
}

.k-table-td > .k-upload-button-wrap, .k-upload-button {
    width: auto !important;
}

.k-upload-button-wrap, .k-upload-button {
    width: 100% !important;
}

.item-image-edit {
    position: absolute;
    z-index: 9;
    width: 25px;
    height: 25px;
    margin-top: 5px;
    margin-left: 5px;
    background-color: white;
    border-radius: 5px;
}

.ti-eye {
    color: #a390d5;
}

.fa-eye-slash {
    color: red
}

.ti-lock, .ti-eye, .fa-eye-slash {
    position: absolute;
    right: 6%;
    top: 8%;
    padding: 5px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
}

.k-list > .k-list-footer, .k-table-footer {
    border-top: 1px dashed;
    text-align: center;
    background-color: #7bd2f6;
    color: black;
}

    .k-table-footer span {
        display: block;
        text-align: center;
        padding: 0px !important;
    }

#EmployeeeEducationalitemgrid .k-grid-container > .k-grid-content, #EmployeeeOffspringitemgrid .k-grid-container > .k-grid-content, #EmployeeeParentitemgrid .k-grid-container > .k-grid-content, #EmployeeeJobitemgrid .k-grid-container > .k-grid-content, #EmployeeeBankitemgrid .k-grid-container > .k-grid-content, #EmployeeeActivityitemgrid .k-grid-container > .k-grid-content, #EmployeeeMedicalitemgrid .k-grid-container > .k-grid-content, #EmployeeeEarningHeaditemgrid .k-grid-container > .k-grid-content, #EmployeeeDeductionHeaditemgrid .k-grid-container > .k-grid-content, #EmployeeSpouseitemgrid .k-grid-container > .k-grid-content {
    height: 250px !important;
}

#MAEarningHeaditemgrid .k-grid-container > .k-grid-content, #MADeductionHeaditemgrid .k-grid-container > .k-grid-content {
    height: 205px !important;
}
.slip, .slip b, .slip label{
    font-size:14px !important;
}
.slip small{
    font-size:12px;
}
.printFont, .slip b {
    font-family: "Courier Prime", monospace;
}
.list-unstyled {
    margin-bottom: 0 !important;
}
.text-midnighblue{
    color:midnightblue !important;
}
.system-ui, .slip .col {
    font-family: system-ui !important;
}
.text-orange-red{
    color:orangered;
}