@font-face {
    font-family: 'vazir';
    src: url('../fonts/Vazir-FD.eot'); /* IE9 Compat Modes */
    src: url('../fonts/Vazir-FD.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('../fonts/Vazir-FD.woff2') format('woff2'), /* Super Modern Browsers */
    url('../fonts/Vazir-FD.woff') format('woff'), /* Pretty Modern Browsers */
    url('../fonts/Vazir-FD.ttf') format('truetype'), /* Safari, Android, iOS */
    url('../fonts/Vazir-FD.svg#svgFontName') format('svg'); /* Legacy iOS */
}

@font-face {
    font-family: 'vazirMD';
    src: url('../fonts/Vazir-Medium.eot'); /* IE9 Compat Modes */
    src: url('../fonts/Vazir-Medium.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('../fonts/Vazir-Medium.woff2') format('woff2'), /* Super Modern Browsers */
    url('../fonts/Vazir-Medium.woff') format('woff'), /* Pretty Modern Browsers */
    url('../fonts/Vazir-Medium.ttf') format('truetype'), /* Safari, Android, iOS */
    url('../fonts/Vazir-Medium.svg#svgFontName') format('svg'); /* Legacy iOS */
}

@font-face {
    font-family: 'yekan';
    src: url('../fonts/Yekan.eot'); /* IE9 Compat Modes */
    src: url('../fonts/Yekan.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('../fonts/Yekan.woff2') format('woff2'), /* Super Modern Browsers */
    url('../fonts/Yekan.woff') format('woff'), /* Pretty Modern Browsers */
    url('../fonts/Yekan.ttf') format('truetype'), /* Safari, Android, iOS */
    url('../fonts/Yekan.svg#svgFontName') format('svg'); /* Legacy iOS */
}

body {
    margin: auto;
    font-size: 13px;
    font-family: vazir, Arial, tahoma, Verdana;
    cursor: default;
    direction: rtl;
}

* {
    outline: none;
    box-sizing: border-box;
    font-family: vazir !important;
}

    *:focus {
        outline: none !important;
    }

a {
    text-decoration: none;
    color: #3a3939;
}

    a:hover {
        color: #333;
        text-decoration: none;
    }

*:before,
*:after {
    transition: all 0.3s ease 0s;
}

::-moz-selection {
    color: #fff;
    background: #5f5f5f;
}

::selection {
    color: #fff;
    background: #012448;
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background-color: #fff;
    border: 0;
}

::-webkit-scrollbar-thumb {
    background-color: #012448;
}

    ::-webkit-scrollbar-thumb:hover {
        background-color: #013367;
    }

/* Loading overlay */
.loadingPane {
    position: fixed;
    inset: 0;
    z-index: 100001;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 50% 42%, rgba(112, 146, 190, 0.28) 0%, rgba(30, 67, 97, 0.62) 58%, rgba(1, 51, 103, 0.78) 100%);
    backdrop-filter: blur(10px) saturate(120%);
    -webkit-backdrop-filter: blur(10px) saturate(120%);
    animation: loadingPane-overlay-in 0.28s ease-out;
}

    .loadingPane[style*="display: block"] {
        display: flex !important;
    }

.loadingPane-loader {
    position: relative;
    width: 58px;
    height: 58px;
    animation: loadingPane-loader-in 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.loadingPane-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 3px solid transparent;
}

.loadingPane-ring--outer {
    border-top-color: #fff;
    border-right-color: rgba(255, 255, 255, 0.22);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.28));
    animation: loadingPane-spin 1s cubic-bezier(0.55, 0.15, 0.25, 0.85) infinite;
}

.loadingPane-ring--inner {
    inset: 9px;
    border-bottom-color: #b8dcff;
    border-left-color: rgba(255, 255, 255, 0.14);
    animation: loadingPane-spin-reverse 1.35s cubic-bezier(0.55, 0.15, 0.25, 0.85) infinite;
}

.loadingPane-core {
    position: absolute;
    inset: 20px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #fff 0%, rgba(255, 255, 255, 0.55) 100%);
    box-shadow: 0 0 18px rgba(255, 255, 255, 0.35);
    animation: loadingPane-core-pulse 1.6s ease-in-out infinite;
}

@keyframes loadingPane-overlay-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes loadingPane-loader-in {
    from {
        opacity: 0;
        transform: scale(0.82);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes loadingPane-spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes loadingPane-spin-reverse {
    to {
        transform: rotate(-360deg);
    }
}

@keyframes loadingPane-core-pulse {
    0%, 100% {
        opacity: 0.72;
        transform: scale(0.92);
    }

    50% {
        opacity: 1;
        transform: scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .loadingPane,
    .loadingPane-loader,
    .loadingPane-ring--outer,
    .loadingPane-ring--inner,
    .loadingPane-core {
        animation: none !important;
    }

    .loadingPane-ring--outer {
        border-color: rgba(255, 255, 255, 0.35);
        border-top-color: #fff;
    }
}

ul {
    padding: 0;
    margin: 0;
}

.body.menu.row {
    height: 100vh;
    max-width: 100%;
    position: relative;
}

.first-page {
    background: #f2f3f5;
}

.main-dashboard {
    width: 95%;
    margin: auto;
}

.navigation-pageTitle {
    display: inline-block;
    width: 100%;
    padding-bottom: 10px;
    background-color: #ddd;
    min-height: 45px;
    box-sizing: border-box;
    padding-top: 17px;
    padding-right: 20px;
}

    .navigation-pageTitle .navigation {
        float: right;
        width: 40%;
        font-size: 13px;
        font-family: vazir;
        color: #aaa;
    }

        .navigation-pageTitle .navigation a {
            color: #00bcd4;
        }

    .navigation-pageTitle .pageTitle {
        float: right;
    }

        .navigation-pageTitle .pageTitle h2 {
            color: #222;
            font-size: 20px;
            font-family: vazirMD;
            margin: 0;
        }

.boxes {
    display: inline-block;
    width: 100%;
    color: #fff;
    margin-bottom: 60px;
    padding-top: 30px;
}

    .boxes .box-item {
        float: right;
        width: 24%;
        border-radius: 5px;
        min-height: 160px;
        background-color: #5564ba;
        margin-left: 10px;
        position: relative;
    }

        .boxes .box-item:nth-child(2) {
            background-color: #00c853;
        }

        .boxes .box-item:nth-child(3) {
            background-color: #ffa726;
        }

        .boxes .box-item:nth-child(4) {
            background-color: #f44336;
            margin-left: 0;
        }

        .boxes .box-item:after {
            position: absolute;
            content: "";
            top: 20px;
            left: 20px;
            width: 60px;
            height: 50px;
            background: url("../images/dashboard/icons.png") -8px -50px;
        }

        .boxes .box-item:nth-child(2):after {
            background-position: -75px -50px;
        }

        .boxes .box-item:nth-child(3):after {
            background-position: -145px -50px;
        }

        .boxes .box-item:nth-child(4):after {
            background-position: -217px -50px;
        }

        .boxes .box-item h4 {
            font-size: 16px;
            margin: 20px;
            line-height: 25px;
            padding-left: 55px;
            font-family: 'vazirMD';
        }

        .boxes .box-item p {
            font-size: 13px;
            margin-right: 20px;
            margin-bottom: 10px;
            font-family: 'vazir';
        }

        .boxes .box-item .more-link {
            font-size: 13px;
            padding-right: 15px;
            border-top: 1px solid rgba(255,255,255,0.5);
            padding-top: 10px;
            margin: 0 15px;
            font-family: 'vazir';
            position: relative;
        }

            .boxes .box-item .more-link:after {
                position: absolute;
                content: "»";
                top: 10px;
                right: 0px;
            }

            .boxes .box-item .more-link a {
                color: #fff;
            }

.bottom-blocks {
    display: inline-block;
    width: 100%;
}

.default-block {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 3px 7px #bbb;
    font-family: vazir;
}

    .default-block h3 {
        display: inline-block;
        position: relative;
        background-color: #00bcd4;
        line-height: 45px;
        padding: 0 20px;
        font-size: 16px;
        font-family: vazirMD;
        text-align: center;
        color: #fff;
        border-radius: 4px;
        right: 15px;
        top: -22px;
        margin: 0;
    }

    .default-block .block-content {
        padding: 0 25px;
        box-sizing: border-box;
    }

        .default-block .block-content span {
            float: left;
            color: #bbb;
            font-size: 12px;
        }

        .default-block .block-content h5 {
            margin: 0;
            color: #222;
            font-size: 15px;
            float: right;
            font-family: vazirMD;
        }

            .default-block .block-content h5 a {
                color: #222;
            }

        .default-block .block-content p {
            padding-top: 10px;
            font-size: 12px;
            display: inline-block;
            width: 100%;
            color: #777;
            line-height: 23px;
            text-align: justify;
        }

.events-block {
    width: 47%;
    float: right;
    margin-left: 15px;
}

.latest-reports {
    width: 25%;
    float: right;
    margin-left: 15px;
}

    .latest-reports .report-item {
        margin-bottom: 7px;
    }

    .latest-reports h5 {
        position: relative;
        padding-right: 30px;
    }

        .latest-reports h5:before {
            position: absolute;
            content: "";
            top: -5px;
            right: 0px;
            width: 25px;
            height: 20px;
            background: url("../images/dashboard/icons.png") -8px -10px;
        }

    .latest-reports .report-item:nth-child(2) h5:before {
        background-position: -45px -5px;
    }

    .latest-reports .report-item:nth-child(3) h5:before {
        background-position: -81px -7px;
    }

    .latest-reports p {
        padding-right: 30px;
        margin-bottom: 9px;
    }

.date-block {
    width: 24%;
    float: right;
}

    .date-block img {
        margin: auto;
        max-width: 100%;
        height: auto;
    }

.event-item {
    display: inline-block;
    width: 100%;
    border-bottom: 1px solid #e8e8e8;
    padding-bottom: 2px;
    margin-bottom: 13px;
}

    .event-item:last-child {
        border: 0;
    }

/*Admin Layout*/
.menu-right-fix {
    background: #013367 !important;
    border: 0 !important;
}

.submenu-selected {
    background-color: transparent;
}

.navbar-default-custome {
    height: 72px !important;
}

.right.col {
    width: 20%;
}

    .right.col.just-right {
        background-color: #1e4361;
        border: 0;
        border-radius: 0;
        top: 72px;
        z-index: 2;
        position: absolute;
    }

.body.row.content {
    border: 0;
    border-radius: 0;
    border-right: 0;
    top: 42px;
    position: absolute
}

.breadcrumb {
    display: block !important;
    height: 12%;
}

.navbar.navbar-custum.banner {
    --bs-navbar-padding-y: 0;
    position: relative;
    min-height: 72px;
    height: 72px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}

    .navbar.navbar-custum.banner .navbar-toggler {
        margin: 0;
        padding: 6px 12px;
        align-self: center;
        border: 0;
        flex-shrink: 0;
    }

    .navbar.navbar-custum.banner .navbar-nav {
        align-items: center;
        margin: 0;
        flex-shrink: 0;
    }

    .navbar.navbar-custum.banner .nav-link {
        padding-top: 0;
        padding-bottom: 0;
    }

.dashboard-logo {
    float: none;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    margin-inline-start: 15px;
    padding: 5px;
    box-sizing: border-box;
    border: 2px solid rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

a.dashboard-logo--home {
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

a.dashboard-logo--home:hover,
a.dashboard-logo--home:focus-visible {
    transform: scale(1.04);
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.18);
    outline: none;
}

a.dashboard-logo--home:active {
    transform: scale(0.97);
}

.dashboard-logo img,
#dashboard-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.dashboard-title {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    float: none;
    flex: none;
    width: auto;
    max-width: calc(100% - 340px);
    margin: 0;
    padding: 0 12px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #e6f6fd;
    font-size: 18px;
    line-height: 1.3;
    font-family: yekan !important;
    font-weight: normal;
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.dashboard-navbar-user {
    position: relative;
    z-index: 2;
}

.dashboard-user-trigger {
    gap: 10px;
    color: #fff !important;
    padding: 6px 12px !important;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.1);
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

    .dashboard-user-trigger::after {
        display: none !important;
    }

    .dashboard-user-trigger:hover,
    .dashboard-user-trigger:focus,
    .dashboard-user-trigger.show {
        color: #fff !important;
        background: rgba(255, 255, 255, 0.2) !important;
        border-color: rgba(255, 255, 255, 0.5);
    }

.dashboard-user-info {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    min-width: 0;
}

.dashboard-user-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.82);
}

.dashboard-user-name {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dashboard-user-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
}

.dashboard-user-caret {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.92);
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.dashboard-user-trigger.show .dashboard-user-caret {
    transform: rotate(180deg);
}

.navbar .dropdown-menu.dashboard-user-dropdown {
    left: 0 !important;
    right: auto !important;
    inset: auto auto auto 0 !important;
    min-width: 220px;
    padding: 8px;
    margin-top: 10px !important;
    border: 1px solid rgba(30, 67, 97, 0.1);
    border-radius: 12px !important;
    background: #fff;
    box-shadow: 0 10px 28px rgba(30, 67, 97, 0.18);
    overflow: hidden;
}

.dashboard-user-dropdown-header {
    padding: 10px 14px 8px;
    text-align: right;
    pointer-events: none;
}

.dashboard-user-dropdown-name {
    display: block;
    color: #1e4361;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    word-break: break-word;
}

.dashboard-user-dropdown-label {
    display: block;
    margin-top: 2px;
    color: #64748b;
    font-size: 11px;
}

    .navbar .dropdown-menu.dashboard-user-dropdown .dropdown-item {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 14px;
        border-radius: 8px !important;
        color: #334155;
        font-size: 13px;
        text-align: right;
        white-space: nowrap;
        transition: background-color 0.15s ease, color 0.15s ease;
    }

        .navbar .dropdown-menu.dashboard-user-dropdown .dropdown-item i {
            font-size: 15px;
            color: #7092be;
            width: 18px;
            flex-shrink: 0;
            text-align: center;
        }

        .navbar .dropdown-menu.dashboard-user-dropdown .dropdown-item:hover,
        .navbar .dropdown-menu.dashboard-user-dropdown .dropdown-item:focus {
            background-color: #eef4fb;
            color: #1e4361;
        }

        .navbar .dropdown-menu.dashboard-user-dropdown .dropdown-item:active,
        .navbar .dropdown-menu.dashboard-user-dropdown .dropdown-item.active {
            background-color: #dce9f7 !important;
            color: #1e4361;
        }

    .navbar .dropdown-menu.dashboard-user-dropdown .dropdown-item-danger {
        color: #c62828;
    }

        .navbar .dropdown-menu.dashboard-user-dropdown .dropdown-item-danger i {
            color: #e53935;
        }

        .navbar .dropdown-menu.dashboard-user-dropdown .dropdown-item-danger:hover,
        .navbar .dropdown-menu.dashboard-user-dropdown .dropdown-item-danger:focus {
            background-color: #fdecea;
            color: #b71c1c;
        }

        .navbar .dropdown-menu.dashboard-user-dropdown .dropdown-item-danger:active,
        .navbar .dropdown-menu.dashboard-user-dropdown .dropdown-item-danger.active {
            background-color: #f9d5d2 !important;
            color: #b71c1c;
        }

    .navbar .dropdown-menu.dashboard-user-dropdown .dropdown-divider {
        margin: 6px 4px;
        border-color: #e8edf2;
        opacity: 1;
    }

@media (max-width: 991px) {
    .dashboard-title {
        max-width: calc(100% - 260px);
        font-size: 16px;
    }

    .dashboard-user-name {
        max-width: 110px;
    }
}

@media (max-width: 767px) {
    .dashboard-title {
        opacity: 0;
        visibility: hidden;
    }

    .dashboard-user-info {
        display: none;
    }

    .dashboard-navbar-user {
        margin-inline-end: 8px !important;
        margin-inline-start: 0 !important;
    }

    .navbar .dropdown-menu.dashboard-user-dropdown {
        left: 0 !important;
        right: auto !important;
        min-width: 210px;
        max-width: calc(100vw - 16px);
    }

    .dashboard-user-trigger {
        padding: 4px 10px !important;
        gap: 8px;
    }

    .dashboard-user-avatar {
        width: 34px;
        height: 34px;
        font-size: 16px;
    }

    .navbar .dropdown-menu.dashboard-user-dropdown .dropdown-item-danger {
        font-weight: 600;
    }
}

.menu.pane, ul.k-widget.k-reset.k-header.k-panelbar {
    background-color: #1e4361;
    background-image: none !important;
    border-bottom: 0 !important;
}

#cssmenu > ul > li {
    background: transparent;
    position: relative;
}

    #cssmenu > ul > li:first-child {
        border-top: 0;
    }

    #cssmenu > ul > li:last-child {
        border-bottom: 0;
    }

    #cssmenu > ul > li img {
        margin-left: 10px;
    }

    #cssmenu > ul > li > a {
        background-image: none !important;
        background-color: transparent;
        text-shadow: none;
        border: 0;
        color: #fff;
        font-size: 16px;
    }

#cssmenu {
    width: 100%;
    padding-top: 15px;
    box-sizing: border-box;
    border: 0 !important;
    z-index: 3;
    background-color: #1e4361;
    position: relative;
}

    #cssmenu > ul > li:after {
        background: url("../images/dashboard/icons.png") -129px -14px !important;
        width: 13px;
        height: 6px;
        content: "";
        top: 20px;
        left: 20px;
        position: absolute;
    }

    #cssmenu > ul > li.active:after {
        background: url("../images/dashboard/icons.png") -103px -175px !important;
    }

    #cssmenu > ul > li.has-sub > a span {
        background: transparent;
    }

    #cssmenu > ul > li:hover {
        background: transparent;
    }

        #cssmenu > ul > li:hover > a {
            background: #7eb8f2 !important;
        }

    #cssmenu > ul > li.active > a {
        background: #0abde3 !important;
    }

.k-widget, .k-button {
    box-shadow: none;
}

.left.col {
    /*     right:17% !important;
     top: 65px !important;
    */
}

#cssmenu > ul > li.has-sub.active > a span {
    background: transparent !important;
}

#cssmenu ul ul {
    border: 0 !important;
    /*background:transparent !important;
     padding:20px 0;
         */
}

    #cssmenu ul ul li {
        background: #1e4361 !important;
        border: 0 !important;
    }

        #cssmenu ul ul li a {
            padding: 0 !important;
            font-weight: normal !important;
            line-height: 26px !important;
            padding-right: 20px !important;
            position: relative;
        }

            #cssmenu ul ul li a:after {
                position: absolute;
                content: "»";
                top: -2px;
                right: 7px;
                font-family: tahoma;
                font-size: 15px;
            }

            #cssmenu ul ul li a.submenu-selected {
                color: #5ce1ff !important;
            }

    #cssmenu ul ul a:hover {
        background: transparent !important;
        color: #b8f0ff !important;
        border: 0 !important;
        box-shadow: none !important;
    }

.dropdown-toggle .profile-pic {
    border-radius: 100%;
    display: inline-block;
}

.nav a.dropdown-toggle.dashboard-user-trigger {
    padding: 6px 12px !important;
}

.nav > li > a:hover, .nav > li > a:focus, .nav .open > a, .nav .open > a:hover, .nav .open > a:focus, ul > li.open {
    background-color: #7092be !important;
}

.nav > li > a.dashboard-user-trigger:hover,
.nav > li > a.dashboard-user-trigger:focus,
.nav .open > a.dashboard-user-trigger,
.nav .open > a.dashboard-user-trigger:hover,
.nav .open > a.dashboard-user-trigger:focus {
    background-color: rgba(255, 255, 255, 0.2) !important;
}

.version {
    font-size: 13px;
    color: #bbb;
    text-align: center;
    position: absolute;
    margin: auto;
    z-index: 2;
    bottom: 5px;
    right: 65px
}
/*.navbar-left .dropdown-menu {
    left: 10px;
    padding: 10px 15px;
    font-size: 12px;
    border-radius: 0;
    border: 1px solid#eee;
    box-shadow: 0 1px 7px #777;
    line-height: 30px;
}*/
/*.dropdown-menu > li > a{
    padding: 0;
    font-weight: bold;
}*/
.notifications {
    width: 25px;
    height: 25px;
    background: url("../images/dashboard/icons.png") -166px -9px;
    top: 22px;
}

.messages {
    width: 25px;
    height: 25px;
    background: url("../images/dashboard/icons.png") -216px -9px;
    top: 22px;
}

.navbar-top-links li {
    float: left;
    margin-left: 25px;
}

.nav.navbar-top-links.navbar-left {
    margin-top: 0;
}

.notifications span {
    border-radius: 100%;
    color: #fff;
    font-size: 12px;
    background-color: #f44336;
    width: 20px;
    height: 20px;
    display: block;
    position: absolute;
    top: -14px;
    left: 14px;
    text-align: center;
    line-height: 20px;
}

.messages span {
    border-radius: 100%;
    color: #fff;
    font-size: 12px;
    background-color: #28a745;
    width: 20px;
    height: 20px;
    display: block;
    position: absolute;
    top: -13px;
    left: 22px;
    text-align: center;
    line-height: 20px;
}
/*grid*/
/*.companyList, .CMREdit, .userAccessLevelList, .company-main, .companyEdit {
    position:relative;
    /*height:100vh;*/
/*background-color: #f2f3f5;
     z-index:1;
}*/
.main.pane.active {
    background-color: #f2f3f5;
}

.k-grid-toolbar {
    background: transparent !important;
    margin-top: 0px;
    border: 0 !important;
    text-align: left;
    margin-bottom: 5px;
}

.k-grid.k-widget {
    border: 0 !important;
    background: transparent;
    width: 98%;
    margin: auto;
}

.k-grid-toolbar label.k-button {
    color: #222;
    background: transparent !important;
    border: 0;
    line-height: 40px;
}

.k-grid-toolbar a.k-button {
    float: right;
    background: #04a91b;
    border: 0;
    line-height: 45px;
    min-width: 140px;
    font-size: 17px;
    padding: 0;
    transition: all 0.3s ease;
}

    .k-grid-toolbar a.k-button:hover {
        background: #1a7e26;
        color: #fff;
    }

    .k-grid-toolbar a.k-button .cis-add {
        width: 17px;
        height: 17px;
        background: url("../images/dashboard/icons.png") -165px -127px;
        position: relative;
        right: -5px;
    }

.k-grid-toolbar input {
    margin-right: 25px;
}

.k-grid tr:nth-child(odd) {
    background-color: #fff;
}

.k-grid tr:nth-child(even) {
    background-color: #eee;
}

.k-grid-header, .k-grid-header-wrap, th.k-header, th.k-header a {
    background: #7092be !important;
    color: #fff !important;
    border: 0 !important;
    text-align: center !important;
    line-height: 55px !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    padding: 0 !important;
    margin: 0 !important;
}

.k-grid .k-icon.k-filter {
    width: 10px;
    height: 12px;
    background: url("../images/dashboard/icons.png") -271px -16px;
    position: relative;
    left: 10px;
}

.k-pager-wrap.k-grid-pager {
    background: transparent !important;
    border: 0 !important;
    text-align: center !important;
    margin-top: 8px;
    margin-bottom: 30px;
}

    .k-pager-numbers, .k-pager-wrap.k-grid-pager .k-link {
        display: inline-block !important;
        margin: auto !important;
        float: none !important;
        color: #949292;
    }

    .k-pager-wrap.k-grid-pager .k-link {
        border: 1px solid #ccc;
        padding: 0;
        margin: 0 2px !important;
    }

.k-grid tr td {
    border-color: transparent;
    font-size: 14px;
    font-weight: normal;
    color: #777;
    border-left: 1px solid #ddd;
}

.k-grid-header .k-header:first-child, .k-grid tbody td:first-child, .k-grid tfoot td:first-child {
    border-left: 1px solid #ddd;
}

.k-grid-header .k-header:last-child, .k-grid tbody td:last-child, .k-grid tfoot td:last-child {
    border-left: 0;
}

.k-grid-header-wrap .k-header {
    border-left: 1px solid #ccc !important;
}

    .k-grid-header-wrap .k-header:last-child {
        border-left: 0 !important;
    }

.k-grid tr td .k-button {
    padding: 0;
    line-height: 35px;
    width: 90px;
    font-size: 12px;
    border: 0;
    border-radius: 3px;
    display: inline-block;
    position: relative;
    color: #fff;
}

    .k-grid tr td .k-button.operation-button {
        background: #5078f9;
    }

        .k-grid tr td .k-button.operation-button.operation-button-edit {
            background: #3cbb23;
        }

        .k-grid tr td .k-button.operation-button.operation-button-delete {
            background: #f42626;
        }

        .k-grid tr td .k-button.operation-button.operation-button-other {
            background: #ce7a10;
        }

.k-grid-content {
    border: 1px solid #ddd;
    box-sizing: border-box;
    margin: 0 !important;
    padding: 0 !important;
    width: 100%;
    display: inline-block;
    height: auto !important;
    overflow: auto;
}

.cis-edit {
    width: 13px;
    height: 13px;
    background: url("../images/dashboard/icons.png") -205px -128px;
    position: absolute;
    right: 5px;
    top: 7px;
}

.cis-delete {
    width: 13px;
    height: 13px;
    background: url("../images/dashboard/icons.png") -237px -128px;
    position: absolute;
    right: 5px;
    top: 5px;
}
/*form*/
.companyEdit {
    /*position:relative;*/
    background-color: #f2f3f5;
    z-index: 1;
}

.header-back {
    text-align: left;
    display: inline-block;
    /* width: 100%; */
    margin: auto;
    padding-left: 20px;
    /* padding-top: 20px; */
    margin-top: -56px;
    float: left;
}

.back-button {
    display: block;
    background: #dc3545 !important;
    width: 140px;
    height: 45px;
    position: relative;
    border-radius: 3px;
    margin: 0 5px;
    float: left;
}

.button-icon-return {
    background: #dc3545 !important;
    border: 0 !important;
    line-height: 45px !important;
    width: 140px !important;
    height: 45px !important;
    font-size: 17px !important;
    padding: 0 !important;
    transition: all 0.3s ease;
    padding-right: 10px !important;
    color: #fff !important;
}

.back-button:before {
    width: 25px;
    height: 17px;
    background: url(../images/dashboard/icons.png) -262px -127px;
    position: absolute;
    right: 20px;
    top: 15px;
    content: "";
}

.back-button:hover, .button-icon-return:hover {
    background: #013367 !important;
}

.k-window1.admin-form {
    background: #fff !important;
    border: 0 !important;
    box-shadow: 0 2 7px #ccc !important;
    border-radius: 0;
    margin: 10px auto 80px;
    width: 100%;
    /* left: 48%; */
    /* margin-left: -47.5%; */
    /* padding-bottom:160px; */
}

.admin-form .k-alt {
    background: #fff;
}

.admin-form .k-textbox, .admin-form .k-dropdown-wrap {
    background-color: #ffffff !important;
    border: 1px solid #7092be !important;
    border-radius: 4px;
    font-size: 13px !important;
    color: #777 !important;
    height: 35px;
}

.admin-form .k-dropdown {
    background: transparent;
    border: 0 !important;
    font-size: 13px !important;
    color: #777 !important;
}

.admin-form .k-alt label, .admin-form .editor-label {
    font-weight: normal;
    font-size: 14px;
    color: #444;
    text-align: right !important;
    margin: 3px 0 0;
    width: auto;
}

.admin-form .k-alt {
    background: #fff;
    margin-bottom: 10px;
}

.admin-form .editor-field, .admin-form input, .admin-form select, .admin-form .editor-select-width {
    /*width:95%;*/
    max-width: unset;
}

    .admin-form input:focus, .admin-form textarea:focus, .admin-form input[type=file]:focus {
        box-shadow: 0 1px 4px #2c82c9;
        border: 0;
        background-color: white !important;
    }

    .admin-form input:focus, .admin-form textarea:focus, .admin-form input[type=file]:hover {
        box-shadow: 0 1px 2px #2c82c9;
        border: 0;
        background-color: white !important;
    }

.admin-form textarea {
    width: 100%;
    max-width: unset;
}

.required-filed {
    color: red
}

.admin-form .editor-checkbox label, .admin-form .editor-checkbox span {
    float: right;
    width: auto;
    margin: 5px;
}

.admin-form .editor-checkbox {
    padding-top: 40px;
}

.upload-box .upload-input {
    height: 35px;
    width: 245px !important;
    color: #777;
    position: relative;
    float: right;
    background-color: #eee;
    border: 1px solid #ddd;
}

.upload-box {
    padding-bottom: 20px;
    padding-right: 15px;
}

.upload-input:after {
    width: 93px;
    height: 35px;
    content: "";
    top: 0px;
    right: 0px;
    position: absolute;
    background: url("./../images/dashboard/upload.jpg") no-repeat;
}

.upload-box .k-checkbox {
    float: right;
    position: relative;
    top: 3px;
}

.upload-box .editor-label {
    float: right;
    margin: 0;
    margin-left: 12px;
    min-width: 150px;
    font-size: 13px;
    padding-right: 5px;
}

.admin-form .send-button {
    display: inline-block;
    background: #33c945 !important;
    width: 180px;
    height: 45px;
    position: relative;
    border-radius: 3px;
    margin: 0 5px;
}

.admin-form .button-icon-save {
    background: #33c945 !important;
    border: 0;
    line-height: 45px;
    width: 100%;
    height: 45px;
    font-size: 17px;
    padding: 0;
    transition: all 0.3s ease;
    padding-right: 10px;
    color: #fff !important;
}

.admin-form .button-icon-print {
    background: #ab372b !important;
    border: 0;
    line-height: 45px;
    width: 100%;
    height: 45px;
    font-size: 17px;
    padding: 0;
    transition: all 0.3s ease;
    padding-right: 10px;
    color: #fff !important;
}

.admin-form .send-button:before {
    width: 17px;
    height: 17px;
    background: url(../images/dashboard/icons.png) -165px -127px;
    position: absolute;
    right: 20px;
    top: 15px;
    content: "";
}

.admin-form .back-button {
    display: inline-block;
    margin: 0 5px;
    float: none;
}

.admin-form .sens-button:hover, .admin-form .button-icon-save:hover {
    background: #057312 !important;
    box-shadow: 0 0 8px 0 #367c39;
}

.command-bar {
    text-align: center;
    display: inline-block;
    width: 100%;
    margin: auto;
}

.admin-form .form-title label {
    margin: 20px 0 !important;
    font-weight: 500 !important;
    font-size: 20px !important;
}
/*Modal*/
.reportPreviewFrame {
    background: #fff;
    position: relative;
}

    .reportPreviewFrame div.k-window {
        background: #fff;
        border: 0;
        box-shadow: none !important;
        margin: 0;
    }

        .reportPreviewFrame div.k-window .k-alt {
            background: #fff;
            border: 0;
        }

        .reportPreviewFrame div.k-window .editor-label, .reportPreviewFrame div.k-window .editor-label label {
            font-weight: normal;
            font-size: 13px;
            color: #444;
            text-align: right !important;
            margin: 0;
            width: 100%;
        }

        .reportPreviewFrame div.k-window .k-alt select, .reportPreviewFrame div.k-window .k-alt .select2-selection.select2-selection--single, .reportPreviewFrame .k-textbox {
            background-color: #ffffff !important;
            border: 1px solid #adadad;
            border-radius: 6px !important;
            font-size: 14px !important;
            color: #000 !important;
        }

            .reportPreviewFrame div.k-window .k-alt input:focus, .reportPreviewFrame div.k-window .k-alt select:focus, .reportPreviewFrame .k-textbox:focus {
                /*box-shadow: 0 1px 4px #777;
    border: 0;*/
            }

        .reportPreviewFrame div.k-window .k-dropdown-wrap.editor-select-width {
            border: 0;
            background: transparent;
            margin: 0;
            padding: 0;
        }

    .reportPreviewFrame .select2-container--default .select2-selection--single .select2-selection__rendered {
        line-height: 25px;
        background: #eeeeee;
        box-shadow: none !important;
    }
    /*.CMRItemEdit.pane.scroll-y-form.active{
    background:#fff;
    overflow-x:hidden;
}*/
    .reportPreviewFrame .button-icon-save {
        background: #33c945 !important;
        background-image: none;
        border: 0;
        line-height: 45px;
        width: 110px;
        height: 40px;
        font-size: 17px;
        padding: 0;
        transition: all 0.3s ease;
        color: #fff !important;
    }

    .reportPreviewFrame:before {
        position: absolute;
        top: -50px;
        left: 0;
        height: 50px;
        width: 100%;
        background: #00bcd4;
        content: "";
    }

.modal-popUp {
    position: fixed;
    left: 45%;
    right: auto;
    top: 15%;
    margin-left: -30%;
}

    .modal-popUp .edit-form {
        margin-top: 0;
    }

    .modal-popUp .close-popup {
        background-color: transparent;
        background-image: url(../images/dashboard/icons.png);
        background-position: -13px -166px;
        width: 25px;
        height: 25px;
        padding: 0;
        border: 0;
        float: left;
        margin-top: -38px;
        margin-left: 20px;
    }

        .modal-popUp .close-popup span {
            font-size: 0;
        }

    .modal-popUp .popUp-title {
        float: right;
        font-size: 18px;
        color: #fff;
        margin-top: -38px;
        z-index: 2;
        position: relative;
        margin-right: 20px;
        font-weight: 500;
    }
/*Accordion Form*/
.accordion-form {
    padding-bottom: 2em;
}

    .accordion-form .k-alt.first-row td {
        padding-bottom: 30px;
    }

    .accordion-form .k-alt.first-row label {
        margin-left: 20px;
        margin-top: 0;
    }

    .accordion-form .k-alt.first-row .k-textbox, .accordion-form .k-alt.first-row .k-dropdown-wrap {
        width: 200px;
    }

    .accordion-form .panel-default > .panel-heading {
        color: #444444;
        background-color: #eeeeee;
        font-size: 15px;
        line-height: 50px;
        border-radius: 0 !important;
        padding: 0 20px;
        border-bottom: 2px solid #ccc;
    }

        .accordion-form .panel-default > .panel-heading .hint-message {
            color: #f44336;
            font-size: 13px;
            float: left;
        }

        .accordion-form .panel-default > .panel-heading:hover {
            background-color: #00bcd4;
            color: #fff;
        }

            .accordion-form .panel-default > .panel-heading:hover a, .accordion-form .panel-default > .panel-heading:hover .hint-message {
                color: #fff;
            }

        .accordion-form .panel-default > .panel-heading a {
            color: #444444;
            text-decoration: none;
        }

        .accordion-form .panel-default > .panel-heading i {
            margin-left: 10px;
            font-size: 24px;
            top: 5px;
            position: relative;
        }

    .accordion-form .panel-group .panel {
        margin-bottom: 2px;
        border-radius: 0;
        box-shadow: none;
    }

.panel-body-column {
    width: 33%;
    float: right;
}
/*tree view*/
.nav-tabs {
    border-bottom: 2px solid #ccc;
    margin-bottom: 10px;
}

    .nav-tabs > li {
        margin-bottom: 0;
    }

        .nav-tabs > li a {
            color: #999;
            font-size: 16px;
            padding: 0 45px;
            line-height: 55px;
            border: 0;
            box-shadow: none;
            font-weight: normal;
        }

        .nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
            color: #222;
            background-color: transparent;
            border: 0;
            border-bottom-color: transparent;
            cursor: default;
            position: relative;
            padding: 0 35px;
            line-height: 55px;
        }

            .nav-tabs > li.active > a:before {
                bottom: -1px;
                right: 0;
                width: 100%;
                content: "";
                position: absolute;
                height: 3px;
                background-color: #00bcd4;
            }

            .nav-tabs > li.active > a:after {
                bottom: -16px;
                left: 50%;
                content: "";
                position: absolute;
                border-left: 10px solid transparent;
                border-right: 10px solid transparent;
                border-top: 10px solid #00bcd4;
                transform: translate(-50%,-50%);
            }

.tree-view {
    text-align: right;
    list-style: none;
    padding: 30px;
    box-sizing: border-box;
}

    .tree-view ul {
        text-align: right;
        list-style: none;
        color: #444;
    }

    .tree-view > ul > li {
        font-size: 18px;
        line-height: 40px;
    }

        .tree-view > ul > li ul li {
            font-size: 14px;
            line-height: 27px;
            width: 100%;
            position: relative;
        }

        .tree-view > ul > li ul {
            padding: 15px 50px;
        }

            .tree-view > ul > li ul li input {
                float: right;
                width: 15px;
                height: 15px;
                margin-left: 15px;
            }

        .tree-view > ul > li > ul > li:before {
            background: url("../images/dashboard/icons.png") -56px -162px !important;
            width: 19px;
            height: 26px;
            content: "";
            top: 0px;
            right: -30px;
            position: absolute;
        }

    .tree-view ul li i {
        margin-left: 10px;
    }
/* ==========================================================================
   userLogin — Content/templates/user/userLogin.html
   ========================================================================== */

.logon.pane {
    --login-primary: #1a56db;
    --login-primary-dark: #1442b0;
    --login-accent: #0ea5e9;
    --login-surface: #ffffff;
    --login-text: #1e293b;
    --login-muted: #64748b;
    --login-border: #e2e8f0;
    --login-input-bg: #f8fafc;
    --login-radius: 1rem;
    --login-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.18);
    --login-bg-blur: 2px;
    position: relative;
    overflow: hidden;
    background: transparent !important;
    background-color: transparent !important;
    padding: 0 !important;
}

.logon.pane::before {
    content: "";
    position: absolute;
    inset: -24px;
    z-index: 0;
    background-image: url(../images/login-background.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    filter: blur(var(--login-bg-blur));
    transform: scale(1.06);
    pointer-events: none;
}

.logon.pane::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.72) 0%, rgba(26, 86, 219, 0.45) 50%, rgba(14, 165, 233, 0.35) 100%);
    pointer-events: none;
}

.logon.pane > div {
    position: relative;
    z-index: 2;
}

.logon.pane .body-background {
    min-height: 100vh;
    margin: 0;
    font-family: web_yekan, "Segoe UI", Tahoma, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: var(--login-text);
    background: transparent;
    position: relative;
}

.logon.pane .login-page {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.logon.pane .login-card {
    width: 100%;
    max-width: 420px;
    background: var(--login-surface);
    border-radius: var(--login-radius);
    box-shadow: var(--login-shadow);
    border: 1px solid rgba(255, 255, 255, 0.6);
    overflow: hidden;
    animation: userLoginFadeIn 0.45s ease-out;
}

@keyframes userLoginFadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logon.pane .login-card-accent {
    height: 4px;
    background: linear-gradient(90deg, var(--login-primary), var(--login-accent));
}

.logon.pane .login-card-body {
    padding: 2rem 2rem 1.75rem;
}

.logon.pane .login-brand {
    text-align: center;
    margin-bottom: 1rem;
}

.logon.pane .login-logo-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin-bottom: 1rem;
    border-radius: 50%;
    background: linear-gradient(145deg, #eff6ff, #f0f9ff);
    border: 2px solid #dbeafe;
    box-shadow: 0 4px 14px rgba(26, 86, 219, 0.12);
}

.logon.pane #login-logo,
.logon.pane .login-logo {
    max-width: 48px;
    max-height: 48px;
    object-fit: contain;
}

.logon.pane .login-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--login-primary);
    line-height: 1.7;
    margin: 0;
    font-family: web_yekan, inherit;
}

.logon.pane .login-title-divider {
    display: flex;
    align-items: center;
    margin: 0.75rem auto 0;
    width: 75%;
}

.logon.pane .login-title-divider-line {
    flex: 1;
    height: 1px;
    background: #e2e8f0;
}

.logon.pane .login-title-divider-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--login-primary);
    flex-shrink: 0;
    margin: 0 3px;
}

.logon.pane .login-field {
    margin-bottom: 1.15rem;
}

.logon.pane .login-field label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--login-text);
    margin-bottom: 0.4rem;
}

.logon.pane .login-input-wrap {
    position: relative;
}

.logon.pane .login-input-wrap .form-control {
    padding-right: 2.75rem;
    padding-left: 0.875rem;
    height: 40px;
    font-size: 0.9rem;
    direction: ltr;
    text-align: left;
    background: var(--login-input-bg);
    border: 1.5px solid var(--login-border);
    border-radius: 0.625rem;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.logon.pane .login-input-wrap .form-control:focus {
    background: #fff;
    border-color: var(--login-primary);
    box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.12);
}

.logon.pane .login-input-icon {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 1.05rem;
    line-height: 1;
    pointer-events: none;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logon.pane .login-input-icon svg {
    width: 1.05rem;
    height: 1.05rem;
    display: block;
}

.logon.pane .login-password-group {
    display: flex;
    border: 1.5px solid var(--login-border);
    border-radius: 0.625rem;
    background: var(--login-input-bg);
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.logon.pane .login-password-group:focus-within {
    background: #fff;
    border-color: var(--login-primary);
    box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.12);
}

.logon.pane .login-password-group .form-control {
    border: 0;
    background: transparent;
    height: 40px;
    font-size: 0.9rem;
    padding-right: 2.75rem;
    padding-left: 0.875rem;
    direction: ltr;
    text-align: left;
    box-shadow: none !important;
}

.logon.pane .login-password-group .form-control:focus {
    box-shadow: none !important;
}

.logon.pane .login-password-icon {
    position: absolute;
    right: 0.875rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--login-muted);
    pointer-events: none;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logon.pane .login-password-icon svg {
    width: 1.05rem;
    height: 1.05rem;
    display: block;
}

.logon.pane .login-password-wrap {
    position: relative;
    flex: 1;
}

.logon.pane .login-password-toggle {
    border: 0;
    border-right: 1.5px solid var(--login-border);
    background: transparent;
    color: var(--login-muted);
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s, background 0.2s;
}

.logon.pane .login-password-toggle:hover {
    color: var(--login-primary);
    background: rgba(26, 86, 219, 0.06);
}

.logon.pane .login-captcha-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logon.pane .login-captcha-input {
    width: 6.5rem;
    flex-shrink: 0;
    height: 40px;
    direction: ltr;
    text-align: left;
    font-size: 0.9rem;
    border: 1.5px solid var(--login-border);
    border-radius: 0.625rem;
    background: var(--login-input-bg);
    padding: 0 0.75rem;
}

.logon.pane .login-captcha-input:focus {
    border-color: var(--login-primary);
    box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.12);
    outline: 0;
}

.logon.pane .login-captcha-img-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    min-width: 0;
    padding: 0 0.5rem;
    border: 1.5px solid var(--login-border);
    border-radius: 0.625rem;
    background: var(--login-input-bg);
    overflow: hidden;
}

.logon.pane .login-captcha-img-wrap img {
    display: block;
    height: 48px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.logon.pane .login-captcha-refresh {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border: 1.5px solid var(--login-border);
    border-radius: 0.5rem;
    background: #fff;
    color: var(--login-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    padding: 0;
}

.logon.pane .login-captcha-refresh svg {
    width: 1.15rem;
    height: 1.15rem;
    display: block;
}

.logon.pane .login-captcha-refresh:hover {
    border-color: var(--login-primary);
    background: rgba(26, 86, 219, 0.06);
}

.logon.pane .login-submit {
    margin-top: 1.5rem;
}

.logon.pane .btn-login {
    width: 100%;
    height: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    border: 0;
    border-radius: 0.625rem;
    color: #fff;
    background: linear-gradient(135deg, var(--login-primary) 0%, var(--login-primary-dark) 100%);
    box-shadow: 0 4px 14px rgba(26, 86, 219, 0.35);
    transition: transform 0.15s, box-shadow 0.2s;
}

.logon.pane .btn-login:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(26, 86, 219, 0.45);
}

.logon.pane .btn-login:active {
    transform: translateY(0);
}

.logon.pane .login-footer {
    text-align: center;
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--login-border);
}

.logon.pane .login-forgot-link {
    font-size: 0.85rem;
    color: var(--login-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.logon.pane .login-forgot-link:hover {
    color: var(--login-primary);
    text-decoration: underline;
}

.logon.pane .invalid-feedback {
    font-size: 0.8rem;
    margin-top: 0.35rem;
}

.logon.pane .countdown-timer {
    color: #dc3545;
    font-weight: bold;
    font-size: 14px;
}

.logon.pane .countdown-timer.disabled {
    opacity: 0.6;
}

.logon.pane .forgot-code-box {
    width: 3rem;
    max-width: 3.2rem;
    padding-right: 0.25rem;
    padding-left: 0.25rem;
    font-size: 1.5rem;
}

#forgotPasswordModal,
#forceChangePasswordModal {
    z-index: 1060 !important;
}

@media (max-width: 767px) {
    .logon.pane .login-page {
        align-items: flex-start;
        padding: 0.75rem;
        min-height: 100dvh;
    }

    .logon.pane .login-card-body {
        padding: 1.25rem 1rem 1rem;
    }

    .logon.pane .login-brand {
        margin-bottom: 0.65rem;
    }

    .logon.pane .login-logo-wrap {
        width: 56px;
        height: 56px;
        margin-bottom: 0.5rem;
    }

    .logon.pane #login-logo,
    .logon.pane .login-logo {
        max-width: 38px;
        max-height: 38px;
    }

    .logon.pane .login-title-divider {
        margin-top: 0.4rem;
    }

    .logon.pane .login-field {
        margin-bottom: 0.75rem;
    }

    .logon.pane .login-submit {
        margin-top: 0.85rem;
    }

    .logon.pane .login-captcha-row {
        display: grid;
        grid-template-columns: 1fr auto;
        grid-template-rows: auto auto;
        gap: 0.4rem;
        align-items: center;
    }

    .logon.pane .login-captcha-img-wrap {
        grid-column: 1;
        grid-row: 1;
        min-height: 44px;
        padding: 0.2rem 0.4rem;
    }

    .logon.pane .login-captcha-img-wrap img {
        height: 44px;
        width: auto;
        max-width: 100%;
    }

    .logon.pane .login-captcha-refresh {
        grid-column: 2;
        grid-row: 1;
        width: 40px;
        height: 40px;
        align-self: center;
    }

    .logon.pane .login-captcha-input {
        grid-column: 1 / -1;
        grid-row: 2;
        width: 100%;
        height: 40px;
    }

    .logon.pane #forgotCaptchaImg {
        height: 44px;
        max-height: 44px !important;
        width: auto;
        max-width: 100%;
        object-fit: contain;
    }
}

@media (max-width: 480px) {
    .logon.pane .login-card-body {
        padding: 1rem 0.85rem 0.85rem;
    }

    .logon.pane .login-title {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .logon.pane #forgotCodeBoxesContainer {
        gap: 0.25rem !important;
    }
}

/* ==========================================================================
   end userLogin
   ========================================================================== */
/*.login-panel {
    background-color: #fff;
    width: 65%;
    margin: auto;
    position: relative;
    top: 70px;
    min-height:450px;
    box-shadow: 0 2px 7px #777;
}*/
.login-panel {
    background-color: rgb(253 253 255 / 86%);
    width: 41%;
    margin: auto;
    position: relative;
    top: 70px;
    min-height: 550px;
    box-shadow: 0 2px 7px #777;
}

    .login-panel .login-title {
        background-color: #00bcd4;
        width: 45%;
        float: right;
        min-height: 450px;
        text-align: center;
        padding-top: 85px;
        box-sizing: border-box;
    }

        .login-panel .login-title img {
            margin-bottom: 15px;
        }

        .login-panel .login-title h1 {
            color: #fff;
            font-size: 18px;
            font-family: yekan !important;
        }
/*.login-fields{
    box-sizing:border-box;
    float:left;
    width:55%;
    text-align: center;
}*/
.login-fields {
    box-sizing: border-box;
    /* width:55%; */
    text-align: center;
}

    .login-fields h4 {
        /*padding-top:45px;*/
        text-align: center;
        font-size: 20px;
        color: #222;
        position: relative;
    }

        .login-fields h4:before {
            bottom: -20px;
            margin-left: -20px;
            left: 50%;
            width: 40px;
            content: "";
            position: absolute;
            height: 3px;
            background-color: #00bcd4;
        }

.login-form {
    box-sizing: border-box;
    padding: 40px 40px 0;
    text-align: center;
    display: inline-block;
    width: auto;
    margin: auto;
}

    .login-form label {
        font-size: 14px;
        color: #222;
        font-weight: normal;
        float: right;
        min-width: 80px;
    }
/*
    .login-form input {
        background-color: #eee !important;
        border: 1px solid #6baff7;
        line-height: 40px;
        border-radius: 0;
        font-size: 13px;
        color: #444;
        padding: 0 10px;
        min-height: 40px;
        width: 270px;
        box-shadow: none;
    }

        .login-form input:focus {
            border: 1px solid #2196F3;
            box-shadow: 0 1px 7px #03A9F4;
        }*/

    .login-form .form-fields {
        display: block;
        width: auto;
        margin: 0 auto 15px;
    }

    .login-form .field-validation-error {
        margin-top: 5px;
        display: block;
        text-align: center;
    }

    .login-form .login-button {
        background-color: #00bcd4;
        text-align: center;
        height: 50px;
        font-size: 18px;
        color: #fff;
        padding: 0;
        margin-top: 10px;
        border-radius: 0;
        width: 30%;
        transition: all 0.3s ease;
    }

        .login-form .login-button:hover {
            background-color: #0acbe4;
        }

.form-fields-checkbox {
    padding-right: 90px;
    box-sizing: border-box;
}

    .form-fields-checkbox input {
        width: 15px;
        height: 15px;
        float: right;
        box-shadow: none !important;
        line-height: 10px;
        padding: 0;
        margin-left: 15px;
        position: relative;
        top: -13px;
    }

        .form-fields-checkbox input:focus {
            box-shadow: none !important;
        }

#userLogin_ErrorMessage, #userLogin_ErrorMessage:focus {
    background-color: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

/*Company Panel*/
.company-header .company-dropdown {
    background-color: transparent;
    margin-left: 40px !important;
    margin-top: 0;
}

.company-header {
    background-color: #4a297c !important;
    min-height: 72px !important;
    height: 72px !important;
    padding: 0 18px;
    display: flex;
    align-items: center;
}

    .company-header .nav.navbar-top-links.navbar-left {
        margin-top: 0;
    }

.company-navbar {
    display: inline-block;
    width: 100%;
    background-color: #888888;
    border-bottom: 4px solid #d5026e;
}

.company-header .dashboard-title {
    padding: 0;
    margin-inline-start: 28px;
}

.company-header .dashboard-logo {
    padding: 0;
    width: auto;
}

.credit-list {
    padding-top: 16px;
}

    .credit-list a, .credit-list .fa-details {
        color: #fff;
    }

.company-sub {
    display: inline-block;
    width: 100%;
    margin-top: 0;
}

.company-subMenu {
    display: inline-block;
    width: 100%;
    position: relative;
    z-index: 2;
}

    .company-subMenu .navbar-default {
        background-color: #ddd;
        border: 0;
        box-shadow: 0 3px 5px #bbb;
        border-radius: 0;
        width: 100%;
        display: inline-block;
        box-sizing: border-box;
        padding: 0 35px;
        margin-bottom: 0;
    }

.company-navbar .nav-tabs > li > a:hover, .company-navbar .nav-tabs > li.active > a, .company-navbar .nav-tabs > li.active > a:hover, .company-navbar .nav-tabs > li.active > a:focus {
    color: #fff;
    background-color: #d5026e !important;
    position: relative;
    padding: 0 35px;
    line-height: 50px;
    margin: 0;
    border: 0;
    border-radius: 0;
}

    .company-navbar .nav-tabs > li.active > a:before, .company-navbar .nav-tabs > li.active > a:hover:before, .company-navbar .nav-tabs > li.active > a:focus:before {
        display: none;
    }

    .company-navbar .nav-tabs > li.active > a:after, .company-navbar .nav-tabs > li.active > a:hover:after, .company-navbar .nav-tabs > li.active > a:focus:after {
        bottom: -16px;
        border-top: 8px solid #d5026e;
        z-index: 3;
    }

.company-navbar .nav-tabs {
    border-bottom: 0;
    margin-bottom: 0;
}

    .company-navbar .nav-tabs > li a {
        color: #fff;
        font-size: 17px;
        line-height: 50px;
        padding: 0 25px;
    }

.company-subMenu li {
    line-height: 25px;
    position: relative;
}

    .company-subMenu li:before {
        content: "|";
        position: absolute;
        top: 13px;
        right: 0;
    }

    .company-subMenu li:first-child:before {
        display: none;
    }

    .company-subMenu li a {
        padding: 15px !important;
    }

.companyContent {
    margin-top: 0;
}

    .companyContent .navigation-pageTitle .navigation a {
        color: #d5026e;
    }

    .companyContent .default-block h3 {
        background-color: #d5026e;
    }
    /*.dropdown-user li{
    float: right;
    margin-left: 0;
    width:100%;
}*/
    .companyContent > .pane.scroll-y.active {
        margin-top: 230px;
        height: auto;
        overflow: scroll
    }

    .companyContent > .pane.scroll-y-form.active {
        margin-top: 230px
    }

label.error {
    color: red !IMPORTANT;
}

input[type="button"]:disabled,
button[disabled] {
    border: 1px solid #999999 !important;
    background-color: #cccccc !important;
    color: #666666 !important;
    background: #cccccc !important;
}

.admin-form input[type="button"]:focus {
    background: #33c945 !important;
}

.admin-form td {
    padding-bottom: 20px;
}

.admin-form form {
    margin-bottom: 130px !important
}

.table-striped > tbody > tr:nth-child(odd) > td,
.table-striped > tbody > tr:nth-child(odd) > th {
    background-color: rgba(0,0,0,.05) !important;
}
