@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');


:root {
    --heading-color: #00335d;
    --icon-color: #d4d4d4;
    --blue: #03a8f3;
    --c_theme: #b53301;
    --inherit: inherit;
    --theme-color: #b53301;
    --add-color: #03a8f3;
    --export-icon: #68c200;
    --bg_2: #858585;
    --cancel-color: #f5f5f5;
    --white: #ffffff;
    --black: #000000;
    --red: #ff1d1d;
    --yel: #f7a628;
    --primary-bg: #f8ae22;
    --secondry-bg: #eeeded;
    --green: #3AE193;
    --purple_blue: #5f4ce6;
    --light_green: #9bffac;
    --blue: #4400c9;
    --bg_blue_light: #f5f6ff;
    --bg_blue: #e2e3f6;
    --dark_blue: #021260;
    --bg_green: #d1ffea;
    --white: #fff;
    --black: #000;
    --whitesh_grey: #f8f8f8;
    --light_grey: #ededed;
    --light_grey: #ededed;
    --default_font_color: #656565;
    --border_color: #e0e0e0;
    /*Gradient variables*/
    --gradient: linear-gradient(to bottom, var(--green) 8%,var(--purple_blue) 100%);
    --moz_gradient: -moz-linear-gradient(top, var(--green) 8%, var(--purple_blue) 100%);
    --webkit_gradient: -webkit-linear-gradient(top, var(--green) 8%,var(--purple_blue) 100%);
    /*Font variables*/
    --default_font_family: 'Be Vietnam';
}


::selection {
    background: #3297FD;
    color: #ffffff;
}

:hover {
    webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}


/* Color Classes */
.theme-color {
    background-color: var(--theme-color);
}

.primary-bg {
    background-color: var(--primary-bg);
}

.secondry-bg {
    background-color: var(--secondry-bg);
}

.bgcolor-white {
    background-color: var(--white);
}

.color-white {
    color: var(--white);
}

    .color-white:hover {
        color: var(--white);
    }

.c_blue {
    color: var(--blue);
}

.c_green {
    color: var(--green);
}

.c_theme {
    color: var(--c_theme);
}

.c_red {
    color: var(--red);
}

.c_yel {
    color: var(--yel);
}

a, input[type="submit"] {
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    cursor: pointer;
}

/* Fontsize Classes */
.fs14 {
    font-size: 14px;
}

/* Fontweight Classes */
.fw500 {
    font-weight: 500;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
}

/* Margin classes */
.mb-10 {
    margin-bottom: 10px !important;
}

.mb-20 {
    margin-bottom: 20px !important;
}

.mb-30 {
    margin-bottom: 30px !important;
}

/* Padding classes */
.padd-05 {
    padding: 0 0.5rem;
}

.padd-01 {
    padding: 1rem 1.5rem;
}

/* Width classes */
.w-110 {
    width: 110px;
}

.w-95 {
    width: 95% !important;
}

.fd-row {
    flex-direction: row;
}

/* Navbar active */
.nav-group-sub li.nav-item.active a {
    background-color: #ececec !important;
}

/* Error Message */
.error-message {
    border: 1px solid #ff0000 !important;
    background-color: #fce4e4 !important;
}

.field-validation-error {
    position: relative !important;
    color: red !important;
    font-style: italic;
    font-size: 12px;
}

/*Loader 1*/
.loader {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgb(0 0 0 / 0.8);
    z-index: 9999;
    display: none;
}

.loader-element-1 {
    position: absolute;
    width: 50px;
    height: 50px;
    border: 4px solid #ff8700;
    border-radius: 50%;
    animation: animate 1s ease-out infinite;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    text-align: center;
    display: flex;
    align-items: center;
    margin-top: 450px;
}

    .loader-element-1:nth-child(2) {
        animation-delay: -0.5s;
        width: 30px;
        height: 30px;
    }

@keyframes animate {
    0% {
        top: 5px;
        left: 5px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 50px;
        height: 50px;
        opacity: 0;
    }
}

.status-heading {
    line-height: normal;
}

.pa-left-1 {
    left: 1rem !important;
}

ul {
    padding-left: 0;
    margin-bottom: 0;
}

    ul li {
        list-style: none;
    }

    ul.inline-block li {
        display: inline-block;
        margin: 0 0.5rem;
    }

        ul.inline-block li:last-child {
            margin-right: 0;
        }

.p-absolute {
    position: absolute;
}

.display-inline {
    display: inline-block;
}

body * {
    outline: none !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
}

body {
    margin: 0px;
}

ul {
    padding: 0;
}

.button-0 {
    padding: 0;
    margin: 0;
    width: 16px;
    height: 16px;
    font-size: 0;
    position: relative;
    background: transparent;
    border-width: 0;
    outline: none;
}

    .button-0::before {
        font-size: 20px;
    }

    .button-0:focus {
        outline: none;
    }

.btn-style-1 {
    background-color: var(--theme-color);
    border: 1px solid var(--theme-color);
    color: var(--white);
    text-transform: capitalize;
    border-radius: 0px;
    padding: 0.5rem 1.5rem;
    font-size: 13px;
    position: relative;
    background-image: none;
    transition: all 0.4s ease-in-out;
}

    .btn-style-1:hover {
        background: transparent;
        color: var(--theme-color);
        border: 1px solid var(--theme-color);
        box-shadow: 0 0px 15px -8px var(--theme-color);
    }

    .btn-style-1.btn-icon {
        padding: 0.6rem 1.2rem 0.6rem 2rem;
        font-family: inherit !important;
    }

.btn-icon::before {
    position: absolute;
    left: 12px;
    font-family: icomoon !important;
}

.btn-style-2 {
    background-color: var(--cancel-color);
    border: 1px solid var(--cancel-color);
    color: var(--black);
    text-transform: capitalize;
    border-radius: 0px;
    padding: 0.5rem 1.5rem;
    font-size: 13px;
    transition: all 0.4s ease-in-out;
}

    .btn-style-2:hover {
        background-color: #e0e0e0;
    }

.btn-style-green {
    background-image: none;
    background-color: #2db245;
    border: 1px solid #2db245;
    color: var(--white);
    text-transform: capitalize;
    border-radius: 4px;
    padding: 0.5rem 1.5rem;
    font-size: 13px;
    transition: all 0.4s ease-in-out;
}

    .btn-style-green:hover {
        background: transparent;
        color: #2db245;
        border: 1px solid #2db245;
        box-shadow: 0 0px 15px -8px var(--theme-color);
    }

.btn-style-back {
    background: url(/images/back-button.png) no-repeat;
    background-position: center;
    background-size: cover;
    width: 41px;
    height: 41px;
    font-size: 0;
    border: 0;
    border-radius: 50%;
    padding: 0;
    margin-right: 1.2rem;
    transition: all 0.4s ease-in-out;
}

    .btn-style-back:hover {
        box-shadow: 0 0px 10px 3px rgb(0 0 0 / 17%);
    }

.btn-style-save {
    background: url(/images/save-button.jpg) no-repeat;
    width: 50px;
    height: 38px;
    border-radius: 4px;
    font-size: 0;
    border: 0;
    padding: 0;
    transition: all 0.4s ease-in;
}

    .btn-style-save:hover {
        box-shadow: 0 0px 10px 3px rgb(0 0 0 / 17%);
    }

.btn-style-disabled {
    background: #b2b2b2 !important;
    border: #b2b2b2 !important;
}

    .btn-style-disabled:hover {
        color: #ffffff !important;
    }

.inh-btn-style .k-button {
    background-color: var(--theme-color);
    border: 1px solid var(--theme-color);
    color: var(--white);
    text-transform: capitalize;
    font-size: 13px;
    transition: all 0.4s ease-in-out;
}

    .inh-btn-style .k-button:hover {
        background: transparent;
        color: var(--theme-color);
        border: 1px solid var(--theme-color);
        box-shadow: 0 0px 15px -8px var(--theme-color);
    }

#navbar-mobile {
    padding: 15px 35px 0px 40px;
}

    #navbar-mobile .navbar-nav {
        min-height: 62.93px;
        display: flex;
        align-items: center;
    }

        #navbar-mobile .navbar-nav > li.nav-item > a {
            height: 62.93px;
            display: flex !important;
            align-items: center;
            padding: 0 20px;
        }


.navbar-text {
    padding-top: 0.475rem;
    padding-bottom: 0.475rem;
    display: flex;
    align-items: center;
    text-transform: capitalize;
    font-size: 14px;
    font-weight: 500;
}
/*New Theme POPUP*/

.k-window.qrApp-popup-blue {
    width: 40% !important;
}

    .k-window.qrApp-popup-blue .k-window-titlebar {
        background: var(--dark_blue);
    }

    .k-window.qrApp-popup-blue .k-window-actions .k-i-close {
        opacity: 0.9;
    }

    .k-window.qrApp-popup-blue .k-window-actions:hover .k-i-close {
        opacity: 1;
    }

.custom-popup-style#QRWindow {
    max-height: 65vh !important;
    overflow: hidden;
    background: var(--bg_blue_light);
}

.app-qr {
    background: url(../../images/mobile.png) center center no-repeat;
    background-size: 43%;
    height: 62vh;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.qr-codeBox {
    border: 1px solid var(--border_color);
    margin: 30px 0;
}

.k-qrcode svg path:nth-child(2) {
    fill: #12005d;
}

#QRWindow .android-style,
#QRWindow .font-div {
    font-family: 'Be Vietnam';
    padding: 15px;
    color: var(--blue);
    margin: 0;
    padding: 10px;
    margin-top: 20px;
    text-align: center;
}


    #QRWindow .android-style a,
    #QRWindow .font-div a {
        font-family: 'Be Vietnam';
        color: var(--dark_blue);
        display: block;
    }

.scan-txt {
    width: 100%;
    text-align: center;
}

    .scan-txt h2 {
        font-size: 25px;
        font-weight: bold;
        color: var(--dark_blue);
        font-family: 'Be Vietnam';
    }

    .scan-txt h3 {
        font-size: 14px;
        color: var(--dark_blue);
        font-family: 'Be Vietnam';
    }

.android-style {
    margin: 0 !important;
}


/*.add-icon {
    background-color: #ffffff;
    color: var(--add-color);
}

.export-icon {
    color: var(--export-icon);
}

.edit-icon {
    color: var(--theme-color);
}

.upload-icon {
    color: var(--add-color);
}

.download-icon {
    color: var(--export-icon);
}

.icon-green {
    color: var(--export-icon);
}

.icon-blue {
    color: var(--add-color);
}

.bg_1 {
    background-color: var(--bg_2);
}

.bg_2 {
    background-color: var(--export-icon);
}

.icon-key:before {
    font-size: 24px;
}

.icon-move-right:before {
    font-size: 24px;
}

.search-box-icon {
    position: relative;
}

    .search-box-icon::before {
        content: "\f002";
        font: normal normal normal 14px/1 FontAwesome;
        position: absolute;
        right: 0.5rem;
        top: 0;
        bottom: 0;
        margin: auto;
        font-size: 18px;
        color: #d0cece;
        z-index: 1;
        text-align: center;
        display: flex;
        align-items: center;
    }

button[type="button"]:disabled {
    color: var(--icon-color);
}

input:disabled {
    color: var(--icon-color);
}

.k-window-titlebar {
    background-color: var(--theme-color);
    color: #ffffff;
}

.box-shadow-none:hover {
    box-shadow: none !important;
}*/
/*.panel-box {
    background-color: #eeeded;
    padding: 1.5rem 1.5rem;
    border-radius: 2px;
    position: relative;
    margin-bottom: 2rem;
    transition: all 0.4s ease-in-out;
}

    .panel-box:hover {
        box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.10);
    }

    .panel-box h4 {
        line-height: normal;
        display: inline-block;
        text-transform: capitalize;
        color: var(--heading-color);
        font-weight: 500;
        font-size: 22px;
    }

    .panel-box ul.p-absolute {
        top: 1.4rem;
        right: 1.5rem;
    }

    .panel-box ul li a {
        color: var(--icon-color);
    }

        .panel-box ul li a:hover {
            color: var(--theme-color)
        }

.panel-box-2 {
    transition: none !important;
}

    .panel-box-2:hover {
        box-shadow: none !important;
    }*/
/*label {
    display: block;
    margin-bottom: .2rem;
    font-weight: 600;
}

.form-input {
    width: 100%;
    height: 30px;
    padding: 0 0.5rem;
    border-radius: 3px;
    border-width: 1px;
    border-style: solid;
    border-color: #cccccc;
    color: #000000;
    position: relative
}

input[type=file] {
    border: none;
    outline: none;
}

.company-logo {
    border: 1px solid #cccccc;
    margin-bottom: 1.5rem;
    margin: 10px auto 10px;
    position: relative;
}

.company-logo .company-logo-img img {
    max-width: 100%;
    height: auto;
}

    .company-logo .select-company-logo .k-upload {
        border: none;
    }

    .company-logo form {
        width: 100%;
        position: absolute;
        bottom: 0;
    }

    .company-logo .k-dropzone {
        background-color: #03a8f3;
        color: #ffffff;
    }

.select-file {
    width: 100%;
    height: 100%;
    border-color: transparent;
    background: transparent;
}

    .select-file input {
        width: 100%;
        height: 100%;
    }

    .select-file .k-file, .select-file .k-upload {
        border-color: transparent;
        background: transparent;
    }

    .select-file .k-upload-button {
        margin-right: 0;
    }

.multi-select .k-select {
    right: 2px;
    display: flex;
    align-items: center;
}

    .multi-select .k-select .k-icon {
        font-size: 14px;
    }

.switch-control {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

    .switch-control .k-switch {
        width: 11em;
        font-size: 8px;
    }

    .switch-control .switch-control-label {
        display: inline-block;
    }

        .switch-control .switch-control-label label {
            font-size: 12px;
            font-weight: 500;
            margin-left: 0.7rem;
            margin-bottom: 0;
        }

.sw-2 .switch-control-label label {
    margin-left: 0;
    margin-right: 0.7rem;
}

.sw-2 .k-switch {
    width: 4.5rem;
}

.switch-control.ac-nac .k-switch {
    width: 9em;
}

.popup-switch-control .switch-control-label {
    display: block;
}

.popup-switch-control .k-switch {
    width: 5.5rem;
}

.active-status {
    margin-top: 0.5rem;
}

    .active-status h6 {
        display: inline-block;
        color: #68c200;
        font-size: 12px;
        font-weight: 500;
        margin: 0;
    }

    .active-status h5 {
        display: inline-block;
        color: #00335d;
        font-size: 14px;
        font-weight: 500;
        margin: 0;
    }

        .active-status h5 span {
            color: #262626;
            font-size: 12px;
        }

.list-code {
    margin: 0;
    color: #7e7e7e;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
}

.k-window-content {
    padding: 1.5rem 1.5rem;
}

.k-window .k-window-action {
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}


label.cabinet {
    display: block;
    cursor: pointer;
    position: relative;
    margin: 1rem 0 0 0;
}

    label.cabinet input.file {
        position: relative;
        height: 100%;
        width: auto;
        opacity: 0;
        filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
        margin-top: -30px;
    }

#upload-demo {
    width: 250px;
    height: 250px;
    padding-bottom: 25px;
}

figure figcaption {
    position: absolute;
    bottom: 0;
    color: #fff;
    width: 100%;
    padding-left: 9px;
    padding-bottom: 5px;
    text-shadow: 0 0 10px #000000;
}

    figure figcaption i {
        position: absolute;
        left: 3.3rem;
        bottom: 1.5rem;
    }

.grid-edit-icon {
    color: #f46a2f;
    background: transparent;
    border: none;
}

    .grid-edit-icon:hover {
        background: transparent;
    }

.grid-trash-icon {
    color: #fd0c22;
    background: transparent;
    border: none;
}

    .grid-trash-icon:hover {
        background: transparent;
    }

.k-grid td.k-command-cell {
    text-align: center;
}

.bulk-upload-download {
    display: inline-block;
    border: 1px solid #e9e9e9;
    padding: 0.8rem 0.5rem;
    border-radius: 10px;
    margin-right: 1rem;
}

    .bulk-upload-download ul li a {
        color: #7e7e7e;
    }

        .bulk-upload-download ul li a span {
            background-color: #f5f3f2;
            border: 1px solid #dcdcdc;
            padding: 0.3rem 0.5rem;
            color: #7f6c6f;
        }

.new-location {
    display: inline-block;
}

.template-up-down {
}

    .template-up-down h5 {
        margin: 0;
    }

    .template-up-down span {
        font-size: 12px;
    }

.is-success {
    color: #68c200;
}

.is-failed {
    color: #ff2b16;
}

.k-upload {
    background-color: var(--theme-color);
    border: 1px solid var(--theme-color);
    color: var(--white);
    text-transform: capitalize;
    border-radius: 4px;
    font-size: 13px;
    transition: all 0.4s ease-in-out;
    max-width: 150px;
}

    .k-upload .k-upload-button {
        color: var(--white);
    }

    .k-upload .k-dropzone {
        background-color: transparent;
        border: 1px solid transparent;
    }

.k-dropdown .k-dropdown-wrap .k-input {
    color: #000000;
}

.k-progressbar {
    height: 28px;
    grid-template-rows: 29px;
    background-color: #707070;
    color: #ffffff;
}

.is-completed {
    background: var(--theme-color);
}

.uploading-status {
    text-align: center;
}

    .uploading-status p {
        font-size: 12px;
        margin: 1rem 0 0 0;
    }

.spacebar {
    border: 1px solid var(--theme-color);
    margin: 0 0 1rem 0;
}

figure figcaption.pos-i i {
    left: 1rem;
    bottom: 0.5rem;
}

.assign-unassign {
    padding: 0.5rem 0;
    width: 100%;
    color: #ffffff;
    text-align: center;
    font-size: 16px;
    letter-spacing: 1px;
    margin-bottom: 0 !important;
}

#lblerror .alert {
    padding: 0.5rem 1rem;
}*/
/* Role Assignment CSS */
/*.k-ghost {
    display: none !important;
}*/
/* Material Theme padding adjustment*/
/*.k-material #role-assignment .k-item, .k-material #role-assignment .k-item.k-state-hover, .k-materialblack #role-assignment .k-item, .k-materialblack #examplel .k-item.k-state-hover {
    padding-left: 5px;
    border-left: 0;
}

.k-item > span {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: inline-block;
    vertical-align: top;
    margin: 20px 10px 10px 5px;
}

#role-assignment .k-item > span:first-child, .k-item.k-drag-clue > span:first-child {
    -moz-box-shadow: inset 0 0 30px rgba(0,0,0,.3);
    -webkit-box-shadow: inset 0 0 30px rgba(0,0,0,.3);
    box-shadow: inset 0 0 30px rgba(0,0,0,.3);
    margin: 10px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#role-assignment h3, .k-item.k-drag-clue h3 {
    font-size: 1.2em;
    font-weight: normal;
    margin: 0 0 1px 0;
    padding: 0;
}

#role-assignment p {
    margin: 0;
    padding: 0;
    font-size: .8em;
}

.role-assignment .demo-section {
    width: 100%;
    font-size: 0;
}

.role-assignment .k-listbox {
    width: 50%;
    height: 300px;
}

.role-assignment .k-listbox-toolbar {
    margin-left: 0;
    margin: 0 5px;
    display: flex;
    align-items: center;
}

.role-assignment .k-list li {
    padding: 5px 8px;
    line-height: normal;
}

.role-assignment .k-list .k-item .k-state-default h5 {
    margin: 0;
}

.k-listbox-toolbar ul li a {
    background-color: #cccccc;
    border-color: #cccccc !important;
    background-image: none;
    color: #ffffff;
}

    .k-listbox-toolbar ul li a:hover {
        color: #ffffff;
        background-color: var(--theme-color);
        background-image: none;
        border-color: var(--theme-color) !important;
    }

.compo-list .comp-link {
    color: #0487c4;
}

    .compo-list .comp-link:hover {
        text-decoration: underline;
        color: #0487c4;
    }

.open-popup:hover {
    text-decoration: underline;
}

#treeview .k-sprite {
    background-image: url("/images/coloricons-sprite.png");
}

.rootfolder {
    background-position: 0 0;
}

.folder {
    background-position: 0 -16px;
}

.pdf {
    background-position: 0 -32px;
}

.html {
    background-position: 0 -48px;
}

.image {
    background-position: 0 -64px;
}

.c-treeview .k-treeview-lines > li {
    margin-bottom: 0.5rem;
    padding: 0;
}

    .c-treeview .k-treeview-lines > li .k-icon {
        left: 0;
        top: 0;
        background: #d4d4d4;
        display: inline-block;
        height: 35px;
        width: 5%;
        margin: 0;
        position: relative;
    }

        .c-treeview .k-treeview-lines > li .k-icon::before {
            color: #ffffff;
            position: absolute;
            top: 0;
            bottom: 0;
            margin: auto;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
        }

    .c-treeview .k-treeview-lines > li div {
        padding: 0;
        border: 1px solid #e0e0e0;
        border-radius: 4px;
        position: relative;
    }

.c-treeview .k-treeview-lines li div .k-in {
    padding: 0 0 0 15px;
    line-height: normal;
    width: 100%;
    height: 35px;
}

.c-treeview .k-treeview-lines > li > div .k-in.k-state-selected {
    background: transparent;
    color: #656565;
}

.c-treeview .k-treeview-lines > li .k-in:hover {
    background: transparent;
    color: #656565;
}

.c-treeview .k-treeview-lines > li > ul li {
    padding: 0;
    margin-left: 1rem;
    margin-top: 1rem;
}

.c-treeview .k-treeview-lines > li ul li .k-in {
    line-height: normal;
    height: 35px;
    width: 100%;
}

.DeleteHierarchyRow {
    position: absolute;
    right: 0.5rem;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    color: #cccccc;
    font-size: 12px;
    cursor: pointer;
}

    .DeleteHierarchyRow:hover {
        color: var(--theme-color);
    }

.k-treelist.k-grid td {
    padding: 15px 12px;
}*/
/*.k-treelist.k-grid tbody tr:hover {color: var(--white);}
.k-treelist.k-grid tr:hover .k-button-icontext {color: var(--white);}*/
/*.swal-overlay {
    z-index: 100000 !important;
}

span.ActionArea {
    display: none;
}

#MenuTreeview > ul > li {
    margin: 0 0 0.5rem 0;
}

#MenuTreeview .k-in .ActionArea {
    display: inline !important;
}

    #MenuTreeview .k-in .ActionArea a {
        color: #ffffff;
        margin: 0 3px;
        transition: none;
    }

.form-group-float span.form-control {
    padding: 0;
}

#griddealerCodes .btn-style-1 {
    padding: 0.6rem 2.5rem;
    font-size: 14px;
}

.k-textbox {
    width: 100% !important;
}

.toggle-password {
    box-shadow: none;
    position: absolute;
    background-color: transparent;
    color: #000000;
    padding: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    display: flex;
    align-items: center;
    right: 1rem;
    border: none;
    outline: none !important;
}

.toggle-password-confirm {
    box-shadow: none;
    position: absolute;
    background-color: transparent;
    color: #000000;
    padding: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    display: flex;
    align-items: center;
    right: 1rem;
    border: none;
    outline: none !important;
}

.toggle-password {
    box-shadow: none;
    position: absolute;
    background-color: transparent;
    color: #000000;
    padding: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    display: flex;
    align-items: center;
    right: 1rem;
    border: none;
    outline: none !important;
}

.toggle-password-confirm {
    box-shadow: none;
    position: absolute;
    background-color: transparent;
    color: #000000;
    padding: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    display: flex;
    align-items: center;
    right: 1rem;
    border: none;
    outline: none !important;
}

.toggle-password-reset {
    box-shadow: none;
    position: absolute;
    background-color: transparent;
    color: #000000;
    padding: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    display: flex;
    align-items: center;
    right: 1rem;
    border: none;
    outline: none !important;
}

.toggle-password-reset-confirm {
    box-shadow: none;
    position: absolute;
    background-color: transparent;
    color: #000000;
    padding: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    display: flex;
    align-items: center;
    right: 1rem;
    border: none;
    outline: none !important;
}

.k-dropdown .k-dropdown-wrap.k-state-focused {
    color: #ffffff;
}

#divMenuSection .k-treeview {
    width: 100%;
    overflow: unset;
}

    #divMenuSection .k-treeview ul {
        top: auto;
        right: 0;
    }

#divMenuSection .panel-box ul li a {
    color: #000000;
}

.field-action-save a {
    font-size: 32px;
    color: #ff8700;
}

#wizard .k-wizard-content {
    overflow: hidden;
}

#wizard .k-wizard-step:focus {
    box-shadow: none;
}

#MenuTreeview li[role="treeitem"] .k-in {
    padding: 6px 8px;
}

    #MenuTreeview li[role="treeitem"] .k-in:hover .edit-folder {
        color: var(--green);
    }

    #MenuTreeview li[role="treeitem"] .k-in:hover .deleteMenu {
        color: var(--theme-color);
    }

#MenuTreeview .k-sprite.Group {
    color: var(--blue);
}

#MenuTreeview .k-sprite.Form {
    color: #ff000f;
}

#MenuTreeview .k-sprite {
    position: relative;
    color: #000000;
    font-size: 18px;
    overflow: visible;
    margin-right: 0.8rem;
}

    #MenuTreeview .k-sprite::before {
        font-family: icomoon !important;
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        display: flex;
        align-items: center;
    }

    #MenuTreeview .k-sprite.Group::before {
        content: "\e9a0";
    }

    #MenuTreeview .k-sprite.Form::before {
        content: "\ea08";
    }

#MenuTreeview li .k-in.k-state-selected .k-sprite, #MenuTreeview .k-in.k-state-selected .ActionArea a {
    color: #ffffff !important;
}

.form-control-masking .k-maskedtextbox {
    width: 100%;
    padding: 0;
}

    .form-control-masking .k-maskedtextbox input {
        padding: 4px 8px;
        border: 1px solid rgba(0,0,0,.08);
    }

#divMenuSection .k-in {
    padding: 6px 8px;
}

#divMenuSection .k-sprite.Group, #divMenuSection .k-sprite.Form {
    display: none;
}

#divMenuSection .icon-triangle2 {
    margin-right: 0.4rem;
    color: var(--blue);
}

#divMenuSection .icon-grid5 {
    margin-right: 0.4rem;
    color: var(--blue);
}

#divMenuSection .icon-file-text {
    color: #ff000f;
}

#divMenuSection .k-in.k-state-selected .icon-color {
    color: #ffffff;
}

#Usersgrid .icon-key:before {
    font-size: 20px;
}

#div_hours .business-hours {
    table-layout: fixed;
}

    #div_hours .business-hours tr th, #div_hours .business-hours tr td {
        padding: 8px;
    }

        #div_hours .business-hours tr th:first-child {
            padding-left: 0;
        }

        #div_hours .business-hours tr td:first-child {
            padding-left: 0;
        }

    #div_hours .business-hours .k-switch {
        width: 8.5em;
    }

#divMenuSection .k-in.k-state-selected .icon-color {
    color: #ffffff;
}

.validation-case {
    position: relative;
    padding: 0 0 0 1rem;
}

    .validation-case::before {
        content: '';
        font: normal normal normal 14px/1 FontAwesome;
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        margin: auto;
        display: flex;
        align-items: center;
    }

    .validation-case.invalid {
        color: #ff0000;
    }

        .validation-case.invalid::before {
            content: "\f00d";
        }

    .validation-case.valid {
        color: #008000;
    }

        .validation-case.valid::before {
            content: "\f00c";
        }

#Usersgrid .k-select {
    display: none;
}

#grid .k-select {
    display: none;
}

ont-weight: 500;
}

.badge-mark {
    width: 30px;
    height: 30px;
}

    .badge-mark img {
        border-radius: 25px;
        width: 100%;
        height: 100%;
    }

.disabled {
    pointer-events: none !important;
    opacity: 0.3 !important;
}*/
span.user-nav-img img {
    width: 35px;
    height: 35px;
    object-fit: cover;
}

.card.ht-50vh {
    height: 33vh;
}

.card.ht-70vh {
    height: 67vh;
}

.card.ht-10vh {
    height: 16vh;
}

.pro-icon-st a.text-default {
    color: #b53301;
    background-color: #fff;
    z-index: auto;
}

.card.pro-icon-st:hover img {
    filter: brightness(0) invert(1);
}

.pro-icon-st a .font-size-sm {
    color: #404040;
}

.card.pro-icon-st a.text-default:hover {
    color: #b53301;
}

.pro-icon-st a .font-size-xs {
    color: #404040;
}

.pro-icon-st:hover a .font-size-xs {
    color: #fff;
}

.card.pro-icon-st:hover a.text-default {
    color: #fff;
    background: #b53301;
}

    .card.pro-icon-st:hover a.text-default .font-size-sm {
        color: #fff;
    }

.card.pro-icon-st:hover {
    background: #b53301;
}


.sidebar-bg, .breadcrumb-bg-color {
    background: #eeeded;
    color: #000;
    box-shadow: none;
}

    .breadcrumb-bg-color .breadcrumb a {
        color: #000000;
        font-weight: 500;
    }

    .breadcrumb-bg-color .breadcrumb-item.active {
        color: #929292;
        font-weight: 500;
    }

.card-sidebar-mobile .nav-sidebar .nav-item:not(.nav-item-header):first-child {
    padding-top: 0px;
}

.sidebar-bg .nav-sidebar > .nav-item-open > .nav-link:not(.disabled), .sidebar-bg .nav-sidebar > .nav-item > .nav-link.active {
    background-color: #f7a628;
    color: #fff;
    align-items: center;
}

.sidebar-bg .nav-sidebar > .nav-item-submenu > .nav-group-sub {
    background: #e6e4e4;
}

    .sidebar-bg .nav-sidebar > .nav-item-submenu > .nav-group-sub .nav-link.active {
        border-right: 3px solid #f7a628;
    }


.page-content {
    padding-top: 1rem;
}

.ext-overlay {
    width: 100%;
    height: 100vh;
    background: #000000b3;
    position: fixed;
    z-index: 99999;
    top: 0px;
}

.loader {
    position: absolute;
    /*    width: 75px;
    height: 100px;
    left: 50%;
    top: 35%;*/
}

.loader__bar {
    position: absolute;
    bottom: 0;
    width: 10px;
    height: 50%;
    background: #fb8329;
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    box-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
}

    .loader__bar:nth-child(1) {
        left: 0px;
        -webkit-transform: scale(1, 0.2);
        transform: scale(1, 0.2);
        -webkit-animation: barUp1 4s infinite;
        animation: barUp1 4s infinite;
    }

    .loader__bar:nth-child(2) {
        left: 15px;
        -webkit-transform: scale(1, 0.4);
        transform: scale(1, 0.4);
        -webkit-animation: barUp2 4s infinite;
        animation: barUp2 4s infinite;
    }

    .loader__bar:nth-child(3) {
        left: 30px;
        -webkit-transform: scale(1, 0.6);
        transform: scale(1, 0.6);
        -webkit-animation: barUp3 4s infinite;
        animation: barUp3 4s infinite;
    }

    .loader__bar:nth-child(4) {
        left: 45px;
        -webkit-transform: scale(1, 0.8);
        transform: scale(1, 0.8);
        -webkit-animation: barUp4 4s infinite;
        animation: barUp4 4s infinite;
    }

    .loader__bar:nth-child(5) {
        left: 60px;
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
        -webkit-animation: barUp5 4s infinite;
        animation: barUp5 4s infinite;
    }

.loader__ball {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    -webkit-animation: ball 4s infinite;
    animation: ball 4s infinite;
}

.duplication-msg {
    color: red;
    font-size: 12px;
    font-style: italic;
}

    .duplication-msg i {
        font-size: inherit;
        margin-right: 0.5rem;
    }

.ellipsisMessage {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hamburger-none .sidebar-control.sidebar-main-toggle {
    display: none !important;
}

.code-image {
}

    .code-image img {
        max-width: 100%;
        height: auto;
        width: 500px;
    }

.code-box {
}

    .code-box h4 {
        font-size: 30px;
        font-weight: 800;
        color: #222222;
    }

    .code-box p {
        font-size: 14px;
        color: #222222;
    }

    .code-box a {
        display: inline-block;
    }

.daj_align {
    display: flex;
    align-items: center;
    justify-content: center;
}

#filterParams .k-multiselect-wrap {
    max-height: 100px !important;
    overflow: auto !important;
}

#ReconciliationHistoryGrid .k-loading-mask {
    display: none !important;
}

#wizard .k-loading-mask {
    display: none !important;
}

#manualreconcile_loader .k-loading-mask {
    z-index: 99999 !important;
}

.HighlightMismatch {
    color: red;
}

.k-grid a:hover {
    text-decoration: none;
    color: #ff8700 !important;
}
/*a.btn-style-green:hover {
    text-decoration: none;
    color: var(--green) !important;
}*/
/*.k-grid .k-button {
    border-color: rgba(0,0,0,.08);
    color: #656565;
    background-image: var(--theme-color) !important;
     background-image: linear-gradient(#f6f6f6,#f1f1f1);
}*/

a.k-button.k-button-icontext.k-grid-delete {
    background-color: red;
    color: white;
    text-transform: capitalize;
    border-radius: 4px;
    padding: 0.5rem 1.5rem;
    font-size: 13px;
    transition: all 0.4s ease-in-out;
}

    a.k-button.k-button-icontext.k-grid-delete:hover {
        background: transparent;
        color: red;
        border: 1px solid red;
        box-shadow: 0 0px 15px -8px var(--green);
    }

.k-button.k-primary.k-state-hover, .k-button.k-primary:hover {
    border-color: #ff8700;
    color: #fff !important;
    background-color: #ff8700;
    /* background-image: linear-gradient(rgba(255,146,88,0),rgba(255,146,88,.2)); */
}

#ReconciliationDetail ul.k-reset.k-tabstrip-items {
    height: 600px;
    overflow-y: auto;
    overflow-x: hidden;
    min-width: 150px;
}

.btnBack {
    font-size: 26pt;
    color: var(--theme-color) !important;
    font-weight: bold;
}

.btnBackText {
    font-size: 17pt;
    vertical-align: middle;
    font-weight: 500;
    color: var(--theme-color) !important;
}

.Recurrence {
    font-weight: 500;
    color: var(--theme-color) !important;
    font-size: 19pt;
}

.scheduleRight {
    border-width: 3px;
    border-style: solid;
    border-image: linear-gradient(to bottom, rgba(0, 0, 0, 0),var(--theme-color) ) 1 100%;
    border-left: 0px;
}

.PopUpstatus .k-switch {
    width: 9em !important;
}

div[disabled] {
    pointer-events: none;
    opacity: 0.6;
    filter: alpha(opacity=50);
    zoom: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
    -moz-opacity: 0.5;
    -khtml-opacity: 0.5;
}

.add-btn {
    background: transparent;
    border: none;
    color: #b53302;
    padding: 0 10px;
}

    .add-btn:hover {
        background: transparent;
        color: #b53302;
    }

    .add-btn i {
        font-size: 22px;
    }



#navbar-mobile .navbar-nav {
    min-height: 62.93px;
    display: flex;
    align-items: center;
}

    #navbar-mobile .navbar-nav > li.nav-item > a {
        height: 62.93px;
        display: flex !important;
        align-items: center;
        padding: 0 20px;
    }

.sidebar-light .nav-sidebar .nav-link {
    font-size: .750rem;
}



div#divWizard {
    max-height: 80vh;
    overflow: hidden;
}

/*form#frmMatchingCriteria, form#frmMapColumns, form#frmSource2, #frmfileselection {
    max-height: 45vh;
    overflow-y: scroll;
    overflow-x: hidden;
}*/

form#frmMapColumns {
    max-height: 34vh;
    overflow-y: scroll;
    overflow-x: hidden;
}
/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #dcdcdc;
}

    /* Handle on hover */
    ::-webkit-scrollbar-thumb:hover {
        background: #a92f01;
    }


.section.portfolio .filters {
    text-align: center;
    position: sticky;
    width: 100%;
    top: 0;
    background: #fff;
    z-index: 10;
}

    .section.portfolio .filters ul {
        padding: 0;
        background: #fff;
    }

        .section.portfolio .filters ul li {
            list-style: none;
            display: inline-block;
            padding: 20px 30px;
            cursor: pointer;
            position: relative;
            color: #b53302;
            font-size: 15px;
            font-weight: 600;
        }

            .section.portfolio .filters ul li:after {
                content: "";
                display: block;
                width: calc(0% - 60px);
                position: absolute;
                height: 2px;
                background: #b53302;
                transition: width 350ms ease-out;
            }

            .section.portfolio .filters ul li:hover:after {
                width: calc(100% - 60px);
                transition: width 350ms ease-out;
            }

            .section.portfolio .filters ul li.active:after {
                width: calc(100% - 60px);
            }



.portfolio.section {
    overflow-y: scroll;
    position: relative;
    padding-top: 0%;
}

/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #dcdcdc;
}

    /* Handle on hover */
    ::-webkit-scrollbar-thumb:hover {
        background: #a92f01;
    }

.section.portfolio .filters-content .show {
    opacity: 1;
    visibility: visible;
    transition: all 350ms;
}

.section.portfolio .filters-content .hide {
    opacity: 0;
    visibility: hidden;
    transition: all 350ms;
}

.section.portfolio .filters-content .item {
    text-align: center;
    cursor: pointer;
    margin-bottom: 30px;
}

    .section.portfolio .filters-content .item .p-inner {
        padding: 20px 30px;
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    }

        .section.portfolio .filters-content .item .p-inner h5 {
            font-size: 15px;
        }

        .section.portfolio .filters-content .item .p-inner .cat {
            font-size: 13px;
        }

    .section.portfolio .filters-content .item img {
        width: 100%;
    }

.filters-content .media-body p {
    font-size: 12px;
    text-align: justify;
}

.filters-content .all {
    min-width: 100%;
}

#frmPopUpAnnouncements .card-header {
    padding: 5px 20px;
    background: #b53301;
}

    #frmPopUpAnnouncements .card-header .card-title {
        font-size: 14px;
        font-weight: 600;
        color: #fff;
    }


#frmPopUpAnnouncements .card {
    height: 79vh !important;
}

.filter-btn-down {
    position: absolute;
    bottom: 10px;
    left: 3%;
    width: 94%;
}

.sidebar-bg, .breadcrumb-bg-color {
    background: #eeeded;
    color: #000;
    box-shadow: none;
}

    .breadcrumb-bg-color .breadcrumb a {
        color: #000000;
        font-weight: 500;
    }

    .breadcrumb-bg-color .breadcrumb-item.active {
        color: #929292;
        font-weight: 500;
    }



.page-content {
    padding-top: 1rem;
}

.add-btn {
    background: transparent;
    border: none;
    color: #b53302;
    padding: 10px 10px;
    font-size: 22px;
}

.k-tooltip {
    font-size: 12px;
    padding-top: 5px;
    padding-bottom: 5px;
}

:focus, button:focus {
    outline: none;
}


.panel-box {
    background-color: #eeeded;
    padding: 1.5rem 1.5rem;
    border-radius: 2px;
    position: relative;
    margin-bottom: 2rem;
    transition: all 0.4s ease-in-out;
}


    .panel-box:hover {
        box-shadow: 0 0 0px 0 rgba(0, 0, 0, 0.10);
    }

    .panel-box h4 {
        line-height: normal;
        display: inline-block;
        text-transform: capitalize;
        color: var(--heading-color);
        font-weight: 500;
        font-size: 14px;
    }


div#example\ no-border .k-editor {
    border: none;
}

.k-checkbox-label {
    font-weight: 400;
    font-size: 12px;
}

.k-dateinput .k-dateinput-wrap .k-input, .k-dateinput .k-picker-wrap .k-input, .k-datepicker .k-dateinput-wrap .k-input, .k-datepicker .k-picker-wrap .k-input, .k-datetimepicker .k-dateinput-wrap .k-input, .k-datetimepicker .k-picker-wrap .k-input, .k-timepicker .k-dateinput-wrap .k-input, .k-timepicker .k-picker-wrap .k-input {
    font-size: 12px;
}




.side-card-result {
    height: 71vh;
    overflow-y: scroll;
}

.side-card-result-num {
    color: #b53301 !important;
    font-size: 15px;
}

.panel-box.result-table-grid {
    max-height: 72vh;
    overflow-y: scroll;
    margin-bottom: 0.5rem;
}

div#divTables thead tr th:first-child {
    min-width: 110px;
}


div#divTables .k-button {
    padding: 4px 3px;
}

#ExportData td a.k-button:hover {
    border: none;
    background: transparent;
}

#ExportData td {
    font-weight: 600;
}

#DnGenerate-btn {
    position: absolute;
    top: 0;
    right: 0;
    display: inline-block;
    z-index: 99;
}

form#frmResults .k-multiselect .k-multiselect-wrap {
    border-color: rgba(0,0,0,.08);
    color: #656565;
    background-color: #fff;
    height: calc(17px + 1.42857143em);
    align-items: center;
    display: flex;
    font-size: 12px;
    overflow-y: scroll;
}

.k-window {
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    position: absolute;
    max-height: 90vh !important;
}

div#CardView {
    background: #ccc;
}


    div#CardView .k-button-group .k-button.k-state-active, {
        border-color: #f6a628;
        color: #fff;
        background-color: #f6a628;
        background-image: linear-gradient(rgba(255,138,88,.2),rgba(255,138,88,0));
        box-shadow: inset 0 2px 2px 0 rgb(0 0 0 / 6%);
    }



/*K NEW CSS*/
.k-grid tbody tr:hover, .k-grid tbody tr.k-state-hover {
    background-color: #e6e4e4;
}

.k-grid tbody .k-button {
    min-width: auto;
}

.k-grid tbody .grid-edit-icon {
    min-width: auto;
    background: transparent;
}

.k-grid tr td {
    font-size: 12px;
}

.k-grid-header th.k-header > .k-link, .k-grid-header th.k-header {
    font-weight: 600;
    color: #545454;
    font-size: 12px;
}

.k-pager-numbers .k-link {
    border: none;
}

label {
    font-weight: 500;
}

.card-title {
    font-size: 14px;
}

.active-status h6, .active-status h5 {
    display: inline-block;
    margin: 10px 0 0;
}

.k-popup .k-list .k-item {
    color: #545454;
}


.k-autocomplete.k-state-active, .k-dropdown-wrap.k-state-active, .k-numeric-wrap.k-state-active, .k-picker-wrap.k-state-active {
    color: #fff;
    background-color: var(--theme-color);
    border-color: var(--theme-color);
}

.k-input, .k-multiselect-wrap, .k-textbox, .k-textbox > input {
    border-color: #ffffff;
}


.queueBtns {
    display: inline-block;
    float: right;
}


button.btn-primary.services-btn {
    background: #b53301;
    border: 1px solid #b53301;
    margin: 5px;
    padding: 3px 10px 3px;
}

    button.btn-primary.services-btn i {
        margin-right: 1px;
    }

form#frmMainAnnouncements {
    width: 100%;
    display: inline-block;
    overflow: hidden;
}

.row.align-items-center, .k-widget * {
    box-sizing: border-box;
}

div#upload-demo .cr-boundary img {
    position: relative;
}

div#upload-demo {
    height: 300px !important;
}

.modal-header {
    background-color: #b53302;
    padding: 25px 20px 20px 10px;
    height: 30px !important;
}

    .modal-header button.close {
        padding: 0px 10px;
        color: #ffff;
    }

        .modal-header button.close span {
            font-size: 24px;
            margin: 0 0 10px 0;
        }

}

.k-grid .k-alt {
    background-color: #f6f6f6;
}

form#frmMainAnnouncements #cropImagePop .modal-footer {
    margin-top: 30px;
}

.k-window-titlebar {
    border-color: #b53302;
    background-color: #b53302;
    position: relative;
    color: #fff;
}

.k-font-weight-bold {
    font-weight: bold;
}

.k-header.k-grid-toolbar {
    background-color: #f6f6f6;
    border-color: #e0e0e0;
}

.k-grid .k-alt {
    background-color: #f6f6f6;
}

.k-stepper .k-step-current .k-step-indicator {
    border-color: #f7a628;
    color: #fff;
    background-color: #f7a628;
}

.k-progressbar-horizontal .k-state-selected {
    border-top-color: #b53301;
    border-bottom-color: #b53301;
    border-left-color: #e0e0e0;
    border-right-color: #e0e0e0;
}

.k-progressbar .k-state-selected {
    background-color: #b53301;
}

.k-stepper .k-step-done .k-step-indicator {
    border-color: #b53301;
    color: #fff;
    background-color: #b53301;
}

.k-stepper .k-step-current.k-step-hover .k-step-indicator, .k-stepper .k-step-current:hover .k-step-indicator {
    border-color: false;
    color: false;
    background-color: #f7a628;
}

.k-stepper .k-step-done.k-step-hover .k-step-indicator, .k-stepper .k-step-done:hover .k-step-indicator {
    border-color: false;
    color: false;
    background-color: #b53301;
}

.k-tabstrip-items {
    background-image: none;
    background-image: none,linear-gradient(to bottom,#ffffff 0,#ffffff 100%);
    background-color: #ffffff;
}

.k-dropdown .k-dropdown-wrap .k-input, .k-dropdowntree .k-dropdown-wrap .k-input, .k-input {
    padding: 6px 6px !important;
    height: calc(10px + 1.42857143em);
}

.k-select .k-icon {
    height: 14px;
    top: 0px;
}

.k-filtercell .k-select .k-icon {
    height: 17px;
    top: 0px;
    font: 15px/1 WebComponentsIcons;
}

.k-animation-container, .k-animation-container :after, .k-block .k-header, .k-list-container, .k-widget, .k-widget *, .k-widget :before {
    box-sizing: inherit;
}

.k-switch-on.k-state-hover .k-switch-handle, .k-switch-on:hover .k-switch-handle {
    border-color: #b53301;
    color: #b53301;
    background-color: #b53301;
}

.k-switch-on .k-switch-handle {
    border-color: #b53301;
    color: #b53301;
    background-color: #b53301;
}

.k-switch-on .k-switch-container {
    color: #b53301;
}

.k-card-footer {
    border-color: #fff;
    color: #333;
    background-color: #ffffff;
}

.k-state-selected {
    background-color: rgb(246 166 40);
}

.k-popup .k-list .k-state-selected {
    color: #fff;
    background-color: #f6a628;
    border-color: #f6a628;
}

.k-icon.k-i-close {
    margin: 0;
    font-size: 12px;
}

.k-multiselect-wrap .k-button {
    color: #9c9c9c;
    background-color: #dedede;
    border-color: #bdbdbd;
}

.k-textbox, .k-textbox input, .k-widget.k-dropdown, .k-dropdown-wrap.k-state-default {
    background: #ffffff;
    border-color: #ececec;
}

.k-wizard-content {
    overflow-y: initial;
}

span.k-wizard-buttons-right button {
    padding: 8px 15px;
    min-width: 100px;
}

    span.k-wizard-buttons-right button:first-child {
        background-color: var(--cancel-color);
        border: 1px solid var(--cancel-color);
        color: var(--black);
        margin: 0px 10px;
    }

    span.k-wizard-buttons-right button:last-child {
        background-color: var(--theme-color);
        border: 1px solid var(--theme-color);
        color: var(--white);
    }

.k-grid-header, .k-grouping-header, .k-header, .k-panelbar .k-tabstrip-items .k-item, .k-state-highlight {
    background-color: #eeeded;
    border-color: #eeeded;
}

.k-tabstrip-items {
    padding: 0px 3px;
}

    .k-tabstrip-items .k-item {
        color: #5d5d5d;
        background-color: #e0e0e0;
    }

        .k-tabstrip-items .k-item.k-state-active, .k-tabstrip-items .k-item.k-state-selected {
            border-color: rgba(0,0,0,.08);
            color: #fff;
            background-color: #f6a628;
            border-color: #f6a628;
            border: 2px solid #f6a628;
            border-bottom: 0;
            background-image: none !important;
        }

.k-tabstrip > .k-content.k-state-active {
    display: block;
    border-color: #f6a628;
    border-top: 1px solid #f6a628;
}

.k-tabstrip-items .k-state-active .k-link {
    color: #fff;
}

.k-tabstrip-top > .k-tabstrip-items .k-item {
    padding: 3px 10px;
}

.k-tabstrip-items .k-item.k-state-hover, .k-tabstrip-items .k-item.k-state-selected {
    border-top-color: #e0e0e0;
    background-image: none;
    background-color: #e0e0e0;
}

.k-step-done span.k-step-text {
    font-weight: 700;
}


.k-multiselect-wrap, .k-multiselect-wrap.k-state-hover {
    background-color: #fff;
    border-color: #e0e0e0;
}


.k-splitbar {
    background: #eeeded;
    border-color: #eeeded;
}

.k-button.k-state-active, .k-button.k-state-selected, .k-button:active {
    color: #fff;
    background-color: #b53301;
    border-color: #b53301;
}

.k-grid-header .k-i-sort-asc-sm, .k-grid-header .k-i-sort-asc-sm:hover, .k-grid-header .k-i-sort-desc-sm, .k-grid-header .k-i-sort-desc-sm:hover, .k-grid-header .k-sort-order {
    color: #b53301;
}

.k-grid td.k-state-selected, .k-grid td.k-state-selected.k-state-focused, .k-grid tr.k-state-selected {
    background-color: #f6a628;
}


    .k-grid td.k-state-selected:hover, .k-grid tr.k-state-selected:hover td {
        background-color: #f6a628;
    }

.k-breadcrumb .k-breadcrumb-link {
    border-color: transparent;
    color: #b53301;
    background-color: transparent;
}

div#divPreview {
    text-align: center;
}


.k-widget.k-window .k-window-content {
    max-height: 85vh;
    overflow-y: scroll;
}

.k-window-titlebar .k-window-actions {
    position: absolute;
    /*top: 65%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-49%);*/
    right: 6px;
}

.portfolio.section .filters-content .media span.text-muted {
    width: 120px;
    display: inline-block;
}

.portfolio.section .filters-content .media .anno-wd,
#frmPopUpAnnouncements .filters-content .media .anno-wd {
    width: 120px;
}

.dateExpire {
    width: 49% !important;
    float: left;
    margin-right: 1%;
    padding: 0px !important;
}

.k-calendar > .k-header {
    border-color: #e0e0e0;
    color: #fff;
    background-color: #b53301;
    background-image: none;
}

.k-calendar .k-today .k-link {
    color: #b53301;
    box-shadow: inset 0 0 0 1px #b53301;
}

.k-grid .k-button {
    color: #f7a628;
    border-color: transparent;
    background-color: #ffffff;
}

.k-filter-row .k-dropdown-operator,
.k-filtercell > span > .k-button,
.k-operator-hidden [type=button]:not(:disabled),
.k-operator-hidden [type=reset]:not(:disabled),
.k-operator-hidden [type=submit]:not(:disabled),
.k-operator-hidden button:not(:disabled) {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    border: none;
    background: #fff;
    border-radius: 3px;
    color: #f7a628;
}

.hidden {
    display: none;
}

.navbar-nav .card.pro-icon-st {
    min-height: 135px;
}

#role-assignment .k-widget.k-listbox {
    width: 48%;
}

.homeboxes .card a {
    min-height: 155px;
}

form#frmPopUpAnnouncements .news-box .card #filterAnnouncements {
    overflow: auto;
}


@media only screen and (min-width: 300px) and (max-width: 600px) {
    .type-pg {
        display: inline-block;
        position: relative;
        top: auto;
        transform: translate(0%, 0%);
        background: transparent !important;
        padding: 15px 10px;
        width: 100%;
    }

        .type-pg form {
            padding: 50px 40px !important;
        }


    .entry-content-wrap h4 {
        font-size: 42px;
        font-weight: 300;
        color: var(--white-color);
        margin-bottom: 20px;
        text-transform: uppercase;
        line-height: 50px;
        text-align: center;
        margin-top: 30px;
    }



    .entry-content-wrap p {
        color: var(--white-color);
        font-size: 16px;
        line-height: 1.60;
        text-align: center;
        font-weight: 300;
        font-style: italic;
        letter-spacing: .40px;
    }

    .navbar-expand-md .navbar-nav-link.dropdown-toggle:not(.caret-0):after {
        right: 0px;
    }
}

.Users-Mapping {
    width: 46%;
}

.User-Group-Mapping {
    width: 46%;
    margin-left: 2%;
}

#SourceTemplate {
    background: transparent;
    border: none;
}
/*
a.home-app-icons {
    background: #66d56a;
    min-height: initial !important;
    padding: 5px;
    border-radius: 50%;
    width: 30px;
    height: 30px !important;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 10px 10px 0px 0;
    color: #fff;
}

a.apple-app-icons {
    background: black;
    min-height: initial !important;
    padding: 5px;
    border-radius: 50%;
    width: 30px;
    height: 30px !important;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 10px 10px 0px 0;
    color: #fff;
}
*/
.icon-box-style {
    width: 55%;
    margin: 16% 0% 0% 25%;
}

.icon-scan-me {
    width: 66%;
    margin: 0% 0% 0% 5%;
}

.font-div {
    margin: 5% 6%;
    font-size: larger;
    font-family: none;
}

.font-a {
    font-family: none;
    font-size: revert;
}

.android-style {
    margin: 2% 24%;
}

a.app-icons {
    min-height: 40px !important;
    height: 40px;
    display: inline-block;
    margin: 15px 15px 0 0;
}

#drpEmployee-list input {
    padding-right: 0px;
}

.groups_layout .k-tabstrip .k-content.k-state-active {
    color: #333;
    border-color: #eeeded;
}

.groups_layout .k-tabstrip-items-wrapper {
    border-color: #eeeded;
}

/*.groups_layout .k-tabstrip-items {
    background: #eeeded;
}*/

.groups_layout .k-tabstrip-items li {
    background: #ccc !important;
    padding: 5px 15px;
    min-width: 150px;
    text-align: center;
    color: #fff !important;
    border: none;
}

    .groups_layout .k-tabstrip-items li span {
        color: #fff !important;
        font-size: 14px;
        font-weight: 500;
        text-align: center;
        width: 100%;
        justify-content: center;
    }

    .groups_layout .k-tabstrip-items li.k-state-active {
        background: var(--yel) !important;
    }

.groups_layout .k-tabstrip:focus {
    box-shadow: none;
}

.swal-overlay {
    z-index: 99999 !important;
}
/*Bug Fix*/
.c-treeview .k-treeview .k-item {
    padding: 0 0 0 10px !important;
}

.c-treeview .k-treeview .k-item {
    padding: 0 0 0 10px !important;
}

.c-treeview .k-treeview span.k-in {
    cursor: default;
    width: 100%;
    padding: 5px;
}

.c-treeview .k-treeview .k-item ul li span.k-in {
    font-size: 11px;
}

.c-treeview .k-treeview span.k-in span.EditHierarchyRow,
.c-treeview .k-treeview span.k-in span.DeleteHierarchyRow {
    display: inline-block;
    margin: 0 1px;
}

    .c-treeview .k-treeview span.k-in span.EditHierarchyRow i,
    .c-treeview .k-treeview span.k-in span.DeleteHierarchyRow i {
        font-size: 12px;
    }


#CompanyHierarchyTree li {
    text-align: right;
}

    #CompanyHierarchyTree li span.rh-name {
        float: left;
        overflow: hidden;
        white-space: nowrap;
        width: 80%;
        text-overflow: ellipsis;
        text-align: left;
    }







/***********NAJAF CSS START FROM HERE************/


@font-face {
    font-family: 'Be Vietnam';
    src: url('/fonts/BeVietnam-Medium.woff2') format('woff2'), url('/fonts/BeVietnam-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Be Vietnam';
    src: url('/fonts/BeVietnam-MediumItalic.woff2') format('woff2'), url('/fonts/BeVietnam-MediumItalic.woff') format('woff');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Be Vietnam';
    src: url('/fonts/BeVietnam-LightItalic.woff2') format('woff2'), url('/fonts/BeVietnam-LightItalic.woff') format('woff');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Be Vietnam';
    src: url('/fonts/BeVietnam-SemiBoldItalic.woff2') format('woff2'), url('/fonts/BeVietnam-SemiBoldItalic.woff') format('woff');
    src: url('/fonts/BeVietnam-SemiBoldItalic.woff2') format('woff2'), url('/fonts/BeVietnam-SemiBoldItalic.woff') format('woff');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Be Vietnam';
    src: url('/fonts/BeVietnam-Regular.woff2') format('woff2'), url('/fonts/BeVietnam-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Be Vietnam';
    src: url('/fonts/BeVietnam-SemiBold.woff2') format('woff2'), url('/fonts/BeVietnam-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Be Vietnam';
    src: url('/fonts/BeVietnam-ThinItalic.woff2') format('woff2'), url('/fonts/BeVietnam-ThinItalic.woff') format('woff');
    font-weight: 100;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Be Vietnam';
    src: url('/fonts/BeVietnam-Thin.woff2') format('woff2'), url('/fonts/BeVietnam-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Be Vietnam';
    src: url('/fonts/BeVietnam-Bold.woff2') format('woff2'), url('/fonts/BeVietnam-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Be Vietnam';
    src: url('.../fonts/BeVietnam-BoldItalic.woff2') format('woff2'), url('/fonts/BeVietnam-BoldItalic.woff') format('woff');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Be Vietnam';
    src: url('/fonts/BeVietnam-ExtraBoldItalic.woff2') format('woff2'), url('/fonts/BeVietnam-ExtraBoldItalic.woff') format('woff');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Be Vietnam';
    src: url('/fonts/BeVietnam-ExtraBold.woff2') format('woff2'), url('/fonts/BeVietnam-ExtraBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Be Vietnam';
    src: url('/fonts/BeVietnam-Italic.woff2') format('woff2'), url('/fonts/BeVietnam-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Be Vietnam';
    src: url('/fonts/BeVietnam-Light.woff2') format('woff2'), url('/fonts/BeVietnam-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

body {
    outline: none !important;
    font-family: 'Be Vietnam' !important;
    font-size: 14px;
    color: var(--default_font_color);
    font-weight: 400;
    background-color: var(--white);
}

* {
    margin: 0;
    padding: 0;
    outline: none !important;
}

:hover {
    webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

*::placeholder {
    opacity: 0.6 !important;
    font-weight: normal;
    font-family: 'Be Vietnam';
}

*:hover,
*:active,
*:focus,
*:focus-visible,
*:focus-within {
    outline: none;
}

/*-------Box Sizing-----*/
*,
*::before,
*::after {
    box-sizing: inherit;
}

* {
    box-sizing: border-box !important;
}

html {
    box-sizing: border-box;
}

a {
    text-decoration: none !important;
}

.text-blue {
    color: var(--dark_blue);
}



/*New Theme UI*/

.entry-pg {
    background: var(--dark_blue);
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
}

.entry-content-wrap {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    position: relative;
    flex-direction: column;
}

    .entry-content-wrap h4 {
        font-size: 4vw;
        text-transform: uppercase;
        line-height: 4vw;
        font-family: var(--default_font_family);
    }

        .entry-content-wrap h4 span {
            font-size: 4vw;
            font-family: var(--default_font_family);
        }

.reset-h3 {
    font-size: 22px;
}

.mainlogo {
    position: relative;
}

    .mainlogo img {
        position: absolute;
        left: 0px;
        top: -50px;
        z-index: 5;
        right: 0%;
    }

.type-pg {
    position: relative;
    z-index: 1;
}

    .type-pg form {
        background-color: #ffffffb0;
        padding: 50px 30px;
        border-radius: 40px;
        margin-top: 25px;
        width: 100%;
    }

    .type-pg .reset-pass-text {
        text-align: center;
        font-size: 30px;
        color: #fff;
    }

.field {
    position: relative;
    margin-bottom: 1.5rem;
}

.type-pg form label {
    display: block;
    font-size: 12px;
    color: var(--dark_blue);
    font-weight: 400;
    margin-bottom: 10px;
    font-family: var(--default_font_family);
    top: auto !important;
}

.type-pg form input {
    font-family: var(--default_font_family);
}

.field .k-textbox input {
    height: 45px;
    padding: 0 10px;
    border-bottom: 1px solid #b5330129;
    color: var(--dark_blue) !important;
    background-color: #ffffff82 !important;
    border-radius: 0px;
    font-weight: 400;
}

.login-screen .field > span {
    width: 100%;
}

.field .k-textbox {
    border: none;
    padding: 0;
    width: 100%;
    height: 45px;
}

/*span.k-floating-label-container.k-state-empty.k-state-focused {
    color: #fff;
}*/

.k-form-error, .k-text-error, .k-form-field-error .k-label {
    font-weight: 600 !important;
}

.login-screen .field > .k-form-error {
    padding: 0px 8px;
    font-family: var(--default_font_family);
}

.loginlabels a {
    font-size: 12px;
    font-family: var(--default_font_family);
}

.loginlabels input[type=checkbox] {
    position: relative;
    margin: 0;
    width: 20px;
    height: 20px;
}

    .loginlabels input[type=checkbox]:focus {
        box-shadow: none;
    }

.type-pg a:hover {
    color: var(--dark_blue);
}

.butn, .butn:visited, .reset-btn input {
    background: rgb(58,225,147);
    background: linear-gradient(90deg, rgba(58,225,147,1) 0%, rgba(64,1,219,1) 100%);
    width: 100%;
    border-radius: 4px;
    border: none;
    color: #fff;
    position: relative;
    overflow: hidden;
    padding: 10px 0px;
    transition: all 0.3s ease-in-out;
    font-weight: 500;
    font-size: 16px;
    font-family: var(--default_font_family);
}

    .butn::before {
        background: #fff;
        content: "";
        height: 155px;
        opacity: 0;
        position: absolute;
        top: -50px;
        transform: rotate(35deg);
        width: 50px;
        transition: all 3000ms cubic-bezier(0.19, 1, 0.22, 1);
    }

.butn__new::before {
    left: -50%;
}

.butn::after {
    background: #fff;
    content: "";
    height: 20rem;
    opacity: 0;
    position: absolute;
    top: -50px;
    transform: rotate(35deg);
    transition: all 3000ms cubic-bezier(0.19, 1, 0.22, 1);
    width: 3rem;
}

.butn__new::after {
    left: -100%;
}

.submitarrow {
    position: absolute;
    top: 15px;
    left: 50px;
    right: -50px;
    margin: 0 auto;
    width: 30px !important;
    height: 30px;
    /* background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgaGVpZ2h0PSI0OCIgdmlld0JveD0iMCAwIDQ4IDQ4IiB3aWR0aD0iNDgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTE3LjE3IDMyLjkybDkuMTctOS4xNy05LjE3LTkuMTcgMi44My0yLjgzIDEyIDEyLTEyIDEyeiIvPjxwYXRoIGQ9Ik0wLS4yNWg0OHY0OGgtNDh6IiBmaWxsPSJub25lIi8+PC9zdmc+) no-repeat; */
    background-size: contain;
    color: #fff;
}

.butn:hover,
.butn:active {
    transform: translateY(-3px);
    color: #fff;
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.3);
    background: #3AE193;
}

.butn__new:hover::after {
    left: 200%;
    opacity: 0.6;
}


.type-pg img.wave-img {
    position: absolute;
    top: -10%;
    right: 20%;
    z-index: -1;
    width: 90%;
}

/*Dashboard Page Css*/
button.nav-link.active {
    color: var(--green) !important;
    background-color: transparent !important;
    font-weight: 600;
}

button.nav-link:hover {
    color: var(--dark_blue);
}

button.nav-link {
    color: var(--dark_blue) !important;
    text-transform: uppercase;
    font-size: 20px;
    background-color: transparent;
    border: transparent;
    font-weight: 400;
    position: relative;
    z-index: 9999;
    font-family: var(--default_font_family);
}

.cardSec .tab-content {
    background-color: #F8F8F8;
    padding: 10px 0px;
    border-radius: 50px;
    overflow-x: hidden;
}

.tab-content > .tab-pane {
    overflow-x: hidden;
    max-height: 75vh;
    min-height: 75vh;
}

.homeboxes label {
    font-size: 20px;
    font-weight: 600;
    color: var(--green);
    text-transform: uppercase;
    margin: 20px 0 10px 0;
    font-family: var(--default_font_family);
}

.cardSec .tab-content .card {
    background-color: #F8F8F8;
    box-shadow: none;
    padding: 10px 20px;
    cursor: pointer;
}

.cardSec .pro-icon-st {
    margin-bottom: 15px;
}

.cardSec a.app-icons {
    display: block;
    margin: 0;
    height: auto !important;
}

.cardSec .cards {
    display: flex;
    padding: 10px 15px;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s all ease-in-out;
}

.legitRipple-ripple {
    background-color: transparent !important;
}

.homebox-image {
    background-color: #EDEDED;
    border-radius: 50px;
    padding: 10px 15px;
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
}

    .homebox-image i {
        color: var(--dark_blue);
        font-size: 2rem;
    }

    .homebox-image:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        z-index: -1;
        transition: all 0.5s;
        opacity: 0;
    }

    .homebox-image:after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: transparent;
        border-radius: 50%;
        z-index: -1;
        transition: all 0.5s;
        opacity: 0;
        border: 2px dashed #fff;
        box-sizing: border-box;
    }

    .homebox-image img {
        width: 50px;
        height: 50px;
        filter: brightness(0);
    }

.cards.flex-row:hover {
    background-color: #ededed !important;
    border-radius: 50px;
}

    .cards.flex-row:hover .homebox-image {
        background: rgb(58,225,147);
        background: linear-gradient(185deg, rgba(58,225,147,1) 20%, rgba(64,1,219,1) 90%);
        transform: scale(1.1);
        transition: 0.3s all ease-in-out;
    }

        .cards.flex-row:hover .homebox-image i, .cards.flex-row:hover .homebox-image img {
            position: relative;
            transition: .5s;
            will-change: transform;
            transform-style: preserve-3d;
            transition: 0.5s ease all;
            /*transition: all 1s cubic-bezier(.99,.82,.11,1.41);*/
        }

        .cards.flex-row:hover .homebox-image i, .cards.flex-row:hover .homebox-image img {
            color: #fff;
            transform: rotate(360deg) scale(1.2);
            transition: 0.3s ease all ease-in-out;
        }

        .cards.flex-row:hover .homebox-image img {
            filter: brightness(0) invert(1);
        }

    .cards.flex-row:hover h5 {
        color: #4001DB;
        font-weight: 600;
    }

    .cards.flex-row:hover .homebox-image:before {
        opacity: 1;
        transform: scale(0.8);
    }

    .cards.flex-row:hover .homebox-image:after {
        opacity: 1;
        animation: rotate 10s linear infinite;
    }

h4.card-title {
    padding: 1rem 1rem;
    font-weight: 500;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    width: 270px;
    font-family: var(--default_font_family);
    text-align: left;
    font-size: 20px;
}

.news-box h5.media-title {
    font-family: var(--default_font_family);
}



@keyframes rotate {
    0% {
        transform: scale(0.92) rotate(0deg)
    }

    100% {
        transform: scale(0.92) rotate(360deg)
    }
}

/*Scroll Bar*/
.cardSec ::-webkit-scrollbar {
    width: 10px
}

.cardSec ::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px
}

.cardSec ::-webkit-scrollbar-thumb {
    background: #001c4e;
    border-radius: 10px
}

    .cardSec ::-webkit-scrollbar-thumb:hover {
        background: var(--dark_blue);
    }

.cardSec .pro-icon-st a.text-default {
    background-color: transparent;
    cursor: pointer;
}

.icon-box-style {
    width: 10%;
    margin: 0px auto 20px;
    display: block;
}

.k-window {
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    position: absolute;
    max-height: 90vh !important;
}

#QRWindow .row {
    align-items: center;
}

.k-icon.k-i-close {
    font-size: 16px;
    color: #fff;
}

.font-div a {
    color: var(--dark_blue);
}

/*announcement tab*/
.news-box .badge {
    background-color: var(--green);
    color: var(--white);
}

.announcement-body {
    border-bottom: 1px solid #efefef;
    align-items: center;
}

    .announcement-body h5.media-title a {
        font-weight: 600;
        font-family: var(--default_font_family);
        font-size: 16px;
    }

        .announcement-body h5.media-title a:hover {
            color: var(--green);
        }

    .announcement-body p {
        font-size: 14px;
        font-family: var(--default_font_family);
    }

    .announcement-body span {
        font-family: var(--default_font_family);
        font-size: 12px;
    }
/*announcement tab*/

/*Navbar Css*/
a.logoImage {
    padding: 0px 20px;
}

#dashboardLanding {
    box-shadow: none;
    position: initial;
    padding: 0px 40px;
}

#navbar-mobile .navbar-nav {
    min-height: 62.93px;
    display: flex;
    align-items: center;
}

#dashboardLanding #navbar-mobile .navbar-nav > li.nav-item > a {
    display: flex !important;
    align-items: center;
    padding: 15px 20px !important;
    color: var(--dark_blue);
    font-weight: normal;
    font-size: 16px;
}

    #dashboardLanding #navbar-mobile .navbar-nav > li.nav-item > a i.icon-bell3 {
        font-size: 30px;
        color: var(--blue);
    }

    #dashboardLanding #navbar-mobile .navbar-nav > li.nav-item > a span {
        font-weight: normal;
        font-family: var(--default_font_family);
        font-size: 16px;
    }

#dashboardLanding .navbar-nav-link .badge {
    background: #d92d34;
    color: var(--white) !important;
    padding: 5px 0px !important;
    width: 22px;
    height: 22px;
    margin: 0 !important;
    top: 6px;
    right: 6px;
    line-height: 10px;
}


#dashboardLanding #navbar-mobile .navbar-nav > li.nav-item > a .user-nav-img img {
    max-width: 45px;
    width: 45px;
    height: 45px;
    object-fit: cover;
}

#dashboardLanding .dropdown-menu.show {
    background-color: #fff;
}

    #dashboardLanding .dropdown-menu.show a {
        color: var(--black);
        font-family: var(--default_font_family);
    }

#dashboardLanding .dropdown-item:focus, #dashboardLanding .dropdown-item:hover {
    background-color: var(--dark_blue);
}

.txt-green {
    color: var(--green);
}

/*Navbar Css*/

/*Dashboard Page Css*/

/*Admin Page CSS*/
.location-grid .k-grid td, .location-grid .k-grid th {
    padding: 0.4em 0.6em;
}

.k-grid td, td.k-command-cell {
    padding: 0.4em 0.6em !important;
}

.k-grid .k-button, .k-grid .k-grid-toolbar > * {
    margin: 0.16em;
}

.k-grid .k-command-cell > .k-button + .k-button {
    margin: 0px !important;
}

.k-grid-toolbar {
    border-style: solid;
    border-width: 0 0 1px;
}

.k-input[type=text], .k-input[type=number], .k-picker-wrap .k-input, .k-textarea, .k-textarea > .k-input .k-multiselect .k-input, .k-textarea > textarea, .k-textbox, .k-textbox > .k-input, .k-textbox > input {
    border-style: solid;
    border-width: 1px;
}

tr.k-filter-row .k-input[type=text] {
    border: transparent;
}

.k-textbox.k-invalid, .k-textbox.k-state-invalid, .k-textbox.ng-invalid.ng-dirty, .k-textbox.ng-invalid.ng-touched {
    background: #ffffff;
    border-color: #ececec;
}

.k-loading-image {
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center center;
}

    .k-loading-image::before, .k-loading-image::after {
        display: none;
    }

.k-calendar .k-header .k-link {
    padding: 4px 4px;
    border-width: 0;
    border-style: solid;
    border-radius: 4px;
    display: inline-block;
    color: #fff;
}

.k-calendar .k-nav-fast {
    width: 60%;
    margin: auto;
}

.k-grid .k-header .k-grid-search {
    float: right;
}

.k-grid-toolbar:after {
    content: "";
    display: block;
    clear: both;
    visibility: hidden;
    height: 0;
    overflow: hidden;
}

.k-tabstrip-wrapper {
    display: initial;
}

/ /*-*+*/ form#frmEvent .k-tabstrip-wrapper {
    display: block;
    background-color: #fff;
}

form#frmEvent .k-tabstrip {
    display: block;
}

form#frmEvent .k-tabstrip-left > .k-tabstrip-items {
    float: left;
    padding: 0.25em 0.25em 0.3em 0.3em;
    display: block;
}

form#frmEvent .k-tabstrip-left > .k-content {
    border-left-color: #f6a628 !important;
}

#wizard .k-stepper .k-progressbar {
    position: absolute;
}

#wizard .k-numeric-wrap {
    width: 140px;
}

#wizard .k-widget.k-numerictextbox {
    background-color: transparent;
}

.disabled-row {
    pointer-events: none;
    opacity: 0.5;
}


/*Admin Page CSS*/
/*New Theme UI*/
/*Responsive Css*/
@media only screen and (min-width: 1366px) and (max-width: 1600px) {
    .type-pg img.wave-img {
        position: absolute;
        top: -15%;
        right: 25%;
        z-index: -1;
        width: 95%;
    }

    .cardSec .col-xl-3 {
        max-width: 33%;
        flex: 0 0 auto;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .type-pg img.wave-img {
        top: 20%;
        right: 25%;
        width: 100%;
    }

    .cardSec h4.card-title {
        width: auto;
        font-size: 16px;
    }

    .homebox-image {
        padding: 10px 20px;
    }

    button.nav-link {
        font-size: 16px;
    }


    .cardSec .tab-content > .tab-pane {
        min-height: 70vh;
        max-height: 70vh
    }
}

@media only screen and (min-width: 280px) and (max-width: 600px) {

    .cardSec .cards {
        display: block;
        padding: 0 5px;
    }

    .mainlogo img {
        right: 0;
    }

    .entry-content-wrap {
        height: auto;
    }

    .entry-pg .container {
        display: flex;
        align-items: center;
        height: 100vh;
        justify-content: center;
    }


    .entry-content-wrap .entry-text {
        display: none;
    }

    .entry-content-bg {
        position: relative;
        background: none;
    }

    .type-pg img.wave-img {
        top: 50% !important;
        right: 5% !important;
        width: 100%;
    }

    .cardSec h4.card-title {
        padding: 1rem 0rem;
        white-space: nowrap;
        width: auto;
        font-size: 14px;
        text-align: center;
    }

    .homebox-image {
        margin: 0 auto;
    }

    button.nav-link {
        font-size: 16px;
    }

    .tab-content > .tab-pane {
        max-height: 100%;
        min-height: 100%;
    }
}
/*Responsive Css*/

/*Najaf Css End*/

