﻿@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&display=swap');

body, html, div, span, a {
    font-family: 'Open Sans', sans-serif;
}

a {
    color: #00A157;
   /* text-decoration:underline;*/
}

    a:hover {
        color: #007B42 !important;
    }


html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    min-width:720px;
}

.main {
    flex: 1;
    min-height: 100%;
    height: 100%;
}

.content {
    min-height: calc(100% - 3.5rem);
    position: relative;
}

#app {
    display: flex;
    flex-direction: column;
}

.mainmenu {
    background-color: white;
    position: absolute;
    right: 0px;
    top: 0px;
    bottom: 0px;
    overflow: hidden;
    width: 0px;
    transition: width 700ms ease-in-out;
    border-radius: 10px 0 0 10px;
    z-index: 9999 !important;
}

.mainmenu-collapsed {
    width: 0px;
}

.mainmenu-expanded {
    width: 300px;
}

.mainmenu-toolbar {
    align-items: center;
    display: flex;
    height: 3.5rem;
    justify-content: flex-end;
    padding: 0 20px 0 0;
}

.hamburger {
    cursor: pointer;
    font-size: 22px;
    color: #ADB5BD !important;
}

.main-row {
    height: 3.5rem;
    column-gap: 14px;
    justify-content: space-between;
    display: flex;
    background-color: white;
    align-items: center;
    border-bottom: 1px #E7E8EC solid;
}


.box {
     box-shadow: 0 6px 18px rgba(14,21,47,.1), 0 -2px 6px rgba(14,21,47,.02);
 }

.nav-item i {
    font-size: 18px;
    text-align:center;
    width:40px;
}

.nav-item span {
    font-size: 14px;
    font-weight: 600;
    text-decoration:none;
}

.nav-item {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: center;
    color: #001A34 !important;
    cursor: pointer;
    vertical-align: middle;
    border-radius: 6px;
    background-color: #F7F5F4;
    padding: 5px 12px;
}

    .nav-item.active {
        background-color: rgba(255,255,255,0.25);
        color: white;
    }

    .nav-item:hover {
        background-color: #E4E2E1;
    }

.boards {
    overflow: auto;
    display: flex;
    flex-flow: row;
    flex-wrap: wrap;
    position: absolute;
    left: 10px;
    right: 10px;
    top: 45px;
    bottom: 20px;
    column-gap: 10px;
    padding:0px 0px 0px 0px;
    row-gap: 10px;
    align-content:flex-start;
    justify-content: start space-between;

}

.boards-window {

    overflow: auto;
    display: flex;
    flex-flow: row;
    flex-wrap: wrap;
    column-gap: 10px;
    row-gap: 10px;
    align-content: flex-start;
    justify-content: start space-between;
}

.board-box {
    cursor: pointer;
    width: 300px;
    padding: 10px;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
}
    .board-box:hover {
        box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
    }

.board {
    cursor: pointer;
    width: 300px;
    padding: 10px;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
    /*box-shadow: 0 6px 18px rgba(14,21,47,.1), 0 -2px 6px rgba(14,21,47,.02);*/
}
    .board:hover {
        box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
    }

.scrollbar {
    z-index: 999 !important;
    overflow-y: scroll;
 /*   scrollbar-width: thin;
    scrollbar-border: solid 3px transparent;
    scrollbar-color: #B5BFC6 transparent;*/
}

.scrollbar::-webkit-scrollbar-track {
    box-shadow: transparent;
    /*border: solid 3px transparent;*/
 }

.scrollbar::-webkit-scrollbar {
    height: 6px;
    width: 6px;
    background-color: transparent;
 }

.scrollbar::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: #C2C2C4;
 }

  

.avatar-large {
    vertical-align: middle;
    text-align:center;
    margin:auto;
    width: 150px;
    height: 150px;
    border-radius: 50%;
}






.account-layout {
    display: flex;
    height: 100%;
    width:100%;
}

.account-col-1 {
    flex: 0 0 50%;
    height: 100%;
    flex: 50%;
    background-color: aqua;
    background: url(images/ponsse-ergo_ponsse-buffalo-7.jpg) no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.account-col-2 {
    padding: 40px;
    height: 100%;
    flex: 50%;
}

.full {
    width:100%;
}


.splashscreen {
    width: 400px;
    height: 200px;
    margin: auto;
}

/*.k-progressbar-horizontal {
    max-width: 220px !important;
    max-height: 6px !important;
}
*/

/*.board-status {
    background-color: #E7F4E6;
    color: #79BD73;
    border-radius:8px;
    padding:2px 10px;
}*/


.wait {
    position:absolute;
    top:calc(50% - 32px);
    left:calc(50% - 32px);
}


.board-flags {
    width:100%;
    column-gap: 14px;
    justify-content: space-between;
}

@media (max-width: 1024px) {
    .account-col-1 {
        display: none;
    }
    .account-col-2 {
        flex: 100%;
    }
}

.form tr td {
    padding:5px;
}


.validation-message {
    color: red;
}

.cards {
    overflow-x: auto;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 60px;
    bottom: 10px;
    display: flex;
    padding:0 0 20px 0;
    column-gap: 10px;
}

.card {
    cursor: pointer;
    width: 100%;
    position: relative;
    border: none;
    border-radius: 6px;
    background-color: white;
    padding: 10px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
}

    .card:hover {
        box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
    }


.col-box {
    min-width: 320px;
    max-width: 320px;
   
    padding: 0 10px 0 10px;
    border-radius: 6px;
    /*  box-shadow: 0 6px 18px rgba(14,21,47,.1), 0 -2px 6px rgba(14,21,47,.02);*/
}

.col {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    align-content: flex-start;
    justify-content: start space-between;
    max-height: calc(100% - 100px);
    padding:10px;
}

.col-header {
    padding: 5px 0 5px 0;
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    color: black;
    text-decoration: underline;
    /*background-color: #E4E7EB;*/
    border-radius: 4px;
}

.col-footer {
    color: #808388;
    padding:10px 0 5px 0;
  
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    vertical-align: middle;
}

.board-toolbar {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    display: flex;
    column-gap: 10px;
   
    align-items: center;
    justify-content:  flex-start;
    vertical-align: middle;
}

/*.board-toolbar {
    position: absolute;
    left: 20px;
    top: 8px;
    right: 20px;
}*/

.card-menu {
    position: absolute;
    top: 5px;
    right: 5px;
    z-index: 99999;
    color: #212529 !important;
    font-size: 16px;
    /* display: none;*/
    width: 30px;
    height: 30px;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    color: black;
}

    .card-menu:hover {
        /*display: block;*/
        background-color: #E4E7EB;
        color: black !important;
    }

.flex-row {
    display: flex;
    column-gap: 5px;
    align-items: center;
    justify-content: flex-start;
    vertical-align: middle;
}

.busy-button {
    padding:0px 12px;
    width: 48px;
    height:38px;
}

.busy-button-icon {
    font-size: 22px;
    color: white;
}

.busy-button-ring {
    width: 28px;
    height: 28px;
    color: white;
}

.card-popup {
    max-height: 100%;
    max-width: 100%;
}

.k-content .k-window-content .k-dialog-content {

}

.k-window-content::-webkit-scrollbar-track {
 /*  box-shadow: transparent;*/
}

.k-window-content::-webkit-scrollbar {
    height: 6px;
    width: 6px;
    background-color: transparent;
}

.k-window-content::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: #C2C2C4;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 10001;
    background-color: rgba(150,150,150,0.01);
}

.numerictextbox-hide-spinbuttons .k-select {
    display: none;
}

.numerictextbox-hide-spinbuttons input {
    text-align: right;
}

.card-reserve {
    background-image: linear-gradient(to right top, #91e4fb, #9deeef, #b5f6e2, #d3fbd8, #f2ffd5);
}

.card-pay {
    background-image: linear-gradient(to right top, #fb91df, #ffa3b5, #ffc4a2, #ffe4af, #f2ffd5);
}



.k-animation-container {
    z-index: 987654;
}

.card-form {
    width:100%;
}

.card-form tr td {
    padding: 5px;
}

    .card-form tr td:first-child {
        width: 1px;
        text-align: center;
        font-size: 22px;
      
        vertical-align:top;
    }

        .card-form tr td:first-child i {
            font-size: 22px !important;
            color: #B8BBBE !important;
        }

.k-upload-status {
    display:none;
}

.members-user {
    width: 44px;
    height: 44px;
    display: inline-block;
    margin-left: -5px;
    border: 1px solid #CED4DA;
    border-radius: 50%;
    background-color: white;
    position: relative;
    text-align: center;
}



.members div:first-child {
    margin-left: 0px;
}

.members {
    display:flex;
    column-gap: 0px;
    align-content: flex-start;
    justify-content: start space-between;
    align-items: center;
   
}

.members-user-role {
    font-weight: bold;
    position: absolute;
    right: 2px;
    bottom: -2px;
   
    line-height:14px;
        text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;
}

.avatar-small {
    vertical-align: middle;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
 
}

.card-file-image {
    max-width:150px;
    border-radius:5px;
}

.card-file-icon {
    width:48px;
    height:48px;
}

.card-file-actions {
    display: flex;
    column-gap: 5px;
    align-content: flex-start;
    justify-content: start space-between;
    align-items: center;
    font-size: 13px;
}

.card-file-name {
    color:#58707E;
    font-size:14px;
    font-weight:bold;
    word-wrap:break-word;
    word-break:break-all;
}

.card-file-passed {
    color:#58707E;
    font-size:12px;
}

.card-file-item {
    width:100%;
    margin-bottom:5px;
    margin-top:5px;
    border-bottom:1px solid #DEE2E6;
}

.card-file-action {
    color: #00A157;
    border-radius:10px;
   /* font-size:14px !important;*/
}


.card-file-action-alert {
    color: #FF4D3C;
    border-radius: 10px;
  
}

    

.members-user-avatar {
    font-size: 24px;
    line-height: 42px;
}

.card-chat-send {
    width:100%;
}



.card-chat-send-text {
    width: 100%;
    background-color: #F0F2F5;
    border:none !important;
    border-radius:16px;
}

.card-chat-item-message-deleted {
    text-decoration: line-through;
    color: #F91155;
}

.card-chat-send-tint {
    font-size: 12px;
    margin-left: 12px;
}

.card-chat-item {
    width: 100%;
}

.card-chat-item-bubble {
    max-width: 100%;
    display: inline-block;
    background-color: #F0F2F5;
    border: none !important;
    border-radius: 16px;
    padding: 5px 12px;
    font-size: 13px;
}

.card-chat-item-name {
    color:black;
    font-weight:600;
}

.card-chat-item-text {
    color: #212529;
}

.card-chat-item-passed {
    color: gray;
    
}

.card-chat-item-actions {
    display: flex;
    column-gap: 5px;
    align-content: center;
    justify-content: start space-between;
    align-items: center;
    font-size: 13px;
    padding-left:12px;
}

.card-chat-item-action {
    color: #00A157;
  
}

.k-listview-content {
    
}

.k-listview-content::-webkit-scrollbar-track {
    box-shadow: transparent;
}

.k-listview-content::-webkit-scrollbar {
    height: 6px;
    width: 6px;
    background-color: transparent;
}

.k-listview-content::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: #C2C2C4;
}

.k-listview {
    border: none !important;
}

.board-left-panel {
    position: fixed;
    left: 0px;
    top: 0px;
    height: calc(100% - 0px);
    /*  box-shadow: 0 8px 60px 0 rgb(103 151 255 / 32%), 0 12px 90px 0 rgb(103 151 255 / 11%);*/
    box-shadow: 0 6px 18px rgba(14,21,47,.1), 0 -2px 6px rgba(14,21,47,.02);
    border-radius:0 12px 12px 0;
    background-color: white;
    z-index: 99999;
}

.board-left-panel-chevron {
    cursor: pointer;
    position: absolute;
    z-index: 99998;
    bottom: 20px;
    color: white;
    background-color: #00A157;
    padding: 10px 5px 5px 0px;
    border-radius: 0 50% 50% 0;
   /* box-shadow: 0 0px 9px rgba(14,21,47,.2), 0 -2px 6px rgba(14,21,47,.02);*/
    box-shadow: 0 6px 18px rgba(14,21,47,.1), 0 -2px 6px rgba(14,21,47,.02);
}

    .board-left-panel-chevron span {
        writing-mode: vertical-lr;
        transform: rotate(-180deg);

    }

    .board-left-panel-collapsed {
        width: 0px;
        overflow: scroll;
    }

.board-left-panel-chevron-expanded {
    left: 335px;
}

.board-left-panel-chevron-collapsed {
    left: 0px;
}


.board-left-panel-expanded {
    width: 335px;
    padding: 10px 5px 10px 5px;
}

.table-form {
    width:100%;
}

.table-form  tr td {
    padding:5px;
}

.k-window {
    border:none !important;
    box-shadow: 0 8px 60px 0 rgb(103 151 255 / 32%), 0 12px 90px 0 rgb(103 151 255 / 11%);
}

.label-form {
    font-size:14px;
}

.custom-button {
    height:34px;
    cursor:pointer;
    width:34px;
    border-radius:50%;
    text-align:center;
    line-height:34px;
    font-size:20px;
}

    .custom-button:active {
        background-color: #E5E5E5;
    }

    .round-item {
        color: black;
        font-size: 14px;
        margin: 0 4px;
    }


.icon-box-round {
    cursor: pointer;
    color: #0CA168 !important;
    font-size: 36px;
    margin-left: -5px;
    z-index:9999999;
}

.members-user-delete {
    cursor:pointer;
    color: #F91155 !important;
    position: absolute;
    right: -0px;
    top: -10px;
    font-size: 16px !important;
}

.actions {
    display: flex;
    column-gap: 5px;
    align-content: center;
    justify-content: start space-between;
    align-items: center;
    font-size: 13px;
    
}

.board-status {
    display: inline-block;
    color: white;
    border-radius: 10px;
    padding: 0px 6px;
    font-size: 12px;
   
}

.icon-box {
    display: inline-block;
    color: #212529;
    font-size: 18px;
}

.board-notify {
    display: inline-block;
    color: #F91155;
    font-size: 16px;
}

.icon-star {
    display: inline-block;
    color: #FFCD42;
    font-size: 18px;
}

.icon-box:active {
    background-color: #E5E5E5;
}

.card-dealer-name {
    font-size: 10px;
}

.lk-card-header {
    font-weight:700;

    font-size:14px;

}

.icon-large {
    cursor:pointer;
    position:relative;
    display: inline-block;
    color: #212529;
    font-size: 22px;
    line-height:40px;
    width:40px;
    height:40px;
    text-align:center;
    border-radius:50%;
}

    .icon-large:active {
        background-color: #E5E5E5;
    }

.icon-badge {
    position: absolute;
    color: white;
    border-radius:8px;
    font-size:12px;
    line-height:16px;
    top:-1px;
    right:-2px;
    padding:0 6px;
    background-color: #F91155;
}

.main-row-left {
    margin-left: 0px;
    display: flex;
    font-weight: bold;
    color: #212529 !important;
}

.main-row-right {
    align-items: center;
    height: 3.5rem;
    column-gap: 8px;
    justify-content: space-between;
    display: flex;
    margin-right: 0px;
}

.hatching-red {
    background-image: linear-gradient(45deg, #fa0011 8.33%, #fafafa 8.33%, #fafafa 50%, #fa0011 50%, #fa0011 58.33%, #fafafa 58.33%, #fafafa 100%);
    background-size: 8.49px 8.49px;
    color:transparent;
}


.hatching-green {
    background-image: linear-gradient(45deg, #00fa21 8.33%, #fafafa 8.33%, #fafafa 50%, #00fa21 50%, #00fa21 58.33%, #fafafa 58.33%, #fafafa 100%);
    background-size: 8.49px 8.49px;
}

.lk-content {
    position:absolute;
    top:20px;
    left:20px;
    right:20px;
    bottom:20px;
    
}

    .lk-content td, th, th.k-header {
        padding: 4px 8px !important;
     
    }
    .lk-content th.k-header  {
        text-align: center;
        vertical-align: middle;
    
    }

.k-grid {
    font-size: 14px !important;
}

.k-link {
    display: block !important;
}

.cell-numeric-bold {
    font-weight: bold !important;
    text-align: right !important;
}

.cell-numeric {
    text-align: right !important;
}

.cell-date {
    text-align: center !important;
}

.cell-hidden {
   color:transparent;
}

.cell-underline {
    font-weight: bold !important;
    text-decoration:underline !important;
}

.cell-colored {
    font-weight: bold !important;
    color: #00A157 !important;
}



.zakaz-header-days {
    min-width: 30px !important;
    text-align: center;
    font-size: 12px;
    background-color: #F5F2DD;
    font-weight: 600;
}

.zakaz-header-2 {
    font-size: 12px;
    text-align: center;
    font-weight: 600;
    background-color: #F5F2DD;
}

.zakaz-header-1 {
    text-align: center;
    font-weight: 600;
    background-color: #C6E0B4;
    font-size:14px;
    vertical-align:middle;
}

.zakaz {
    border: solid 1px black;
    border-collapse:collapse;
}

    .zakaz td {
        border: solid 1px black;
    }

.zakaz-status {
    min-width:60px;
}

.zakaz-menu {
    min-width: 40px;
}

.zakaz-num {
    min-width: 120px;
}

.zakaz-dealer {
    min-width: 120px;
}

.zakaz-vol {
    min-width: 80px;
}

.zakaz-proj {
    min-width: 200px;
}

.zakaz-memo {
    min-width: 120px;
}

.zakaz-sum {
    min-width: 100px;
}

.zakaz-date {
    min-width: 125px;
}

.zakaz-price {
    min-width: 80px;
}

.zakaz-size {
    min-width: 80px;
}

.zakaz-pr1 {
    min-width: 80px;
}

.zakaz-pr2 {
    min-width: 80px;
}

.zakaz-day-cell {
    width: 30px;
    height: 30px;
}

.zakaz-header-days-day-off {
    color:red !important;

}

.zakaz-command-add {
    font-size: 22px;
    color: #53B827 !important;
    cursor: pointer;
}

.zakaz-command-del {
    font-size: 22px;
    color: #EB4C42 !important;
    cursor: pointer;
}

.zakaz-vol-total {
    font-size: 14px;
    font-weight: 600;
    text-align: right;
    padding:0 6px 0 0 ;
}

.cell-red {
    background-color:red;
    border: 1px solid red;
}

.zakaz-totals {
    background-color: #F4E7AD;
}

.flex-col {
 
    display: flex;
    flex-direction: column;
    align-items: stretch;
    row-gap: 5px;
    justify-content: start space-between;
    flex-wrap: wrap;
}

.last-item {
    margin-top: auto;
}

.user-menu-name {
    width:100%;
    overflow:clip;
    margin:0 auto;
    white-space:nowrap;
    text-overflow:ellipsis;

    text-align:center;
    padding:10px 0;
}

.zakaz-period-header {
    background-color: #52B526;
    padding-left: 50px;
    color: white;
    font-weight: 600;
    font-size: 14px;
}

.zakaz-command-menu {
    cursor: pointer;

}
.error-text {
    font-size:14px;
    color:red;
}



.lesopil {
    border: 0px;
    border-collapse:  separate;
    position: relative;
    border-spacing: 0;
 
}

    .lesopil td {
        border: solid 1px #5A4B43;
    }

.lesopil-header {
    background-color: #DDDDDD;
    text-align:center;
}

.lesopil-delimiter {
 
}

.lesopil-col-1 {
    font-weight:bold;
}

.lesopil-col-2 {
}

.lesopil-col-3 {
}

.lesopil-col-4 {
}

.lesopil-col-5 {
}

.lesopil-col-6 {
    font-weight:bold;
}

.lesopil-col-sizes {
    text-align: center;
    min-width: 80px;
    font-size:14px;
}

.lesopil-cell-item {
    background-color:transparent;
    width:80px;
    height:32px;
    text-align:center;
    cursor:pointer;
    line-height:32px;
}

.lesopil-cell {
    padding: 0px;
}

.lesopil-row-done {
    background-color: #00FF66;
}

.lesopil-row-past {
    background-color: #FE6600;
}


.lesopil-row-current {
    background-color: #9999FF;
}

.lesopil-row-week {
    background-color: #66FFFF !important;
}




.lesopil-row {
}

.grid {
    border: solid 1px black;
    border-collapse: collapse;
    width:100%;
}

    .grid td {
        border: solid 1px black;
}

.grid-header {
    font-size: 14px;
    text-align: center;
    font-weight: 600;
    background-color: #F5F2DD;
    vertical-align:middle;
}


.k-menu-link {
    font-size:16px !important;
    font-weight:600 !important;
}

.form-rpt {
    border: solid 1px black;
    border-collapse: collapse;
}

    .form-rpt td {
        border: solid 1px black;
        font-size: 14px;
        padding: 5px;
    }

.form-rpt-header {
    padding:5px;
    text-align:center;
    font-size:14px;
    font-weight:bold;
}

.form-rpt-header-day {
    padding: 5px;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    width:60px;
}

.form-rpt-cell-right {
    padding: 5px;
    text-align: right;
    font-size: 14px;
}

.form-rpt-cell-center {
    padding: 5px;
    text-align: center;
    font-size: 14px;
}

.form-rpt-cell-center-bold {
    padding: 5px;
    text-align: center;
    font-size: 14px;
    font-weight:bold;
}


.form-rpt-cell {
    padding: 5px;
    font-size: 14px;
}

.form-rpt-header-hot {
    padding: 5px;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    background-color: #FF0000;
}

.form-rpt-header-cur {
    padding: 5px;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    background-color: #FFC000;
}

.form-rpt-cell-center-hot {
    padding: 5px;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    background-color: #FF0000;
}

.form-rpt-cell-center-cur {
    padding: 5px;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    background-color: #FFC000;
}

.form-rpt-header-week {
    padding: 5px;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    min-width:80px;
}

.form-rpt-header-total {
    padding: 5px;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    background-color: #92D050;
}

.form-rpt-cell-week {
    padding: 5px;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
}

.form-rpt-cell-total {
    padding: 5px;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    background-color: #92D050;
}

.form-rpt-total {
    padding: 5px;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
}


:root {
    --les-col-1: 40px;
    --les-col-12: 40px;
    --les-col-2: 60px;
    --les-col-3: 60px;
    --les-col-4: 100px;
    --les-col-5: 100px;
    --les-col-6: 110px;
    --les-col-7: 110px;
    --les-col-1-left: 0px;
    --les-col-12-left: calc(var(--les-col-1-left) + var(--les-col-1));
    --les-col-2-left: calc(var(--les-col-12-left) + var(--les-col-12));
    --les-col-3-left: calc(var(--les-col-2-left) + var(--les-col-2));
    --les-col-4-left: calc(var(--les-col-3-left) + var(--les-col-3));
    --les-col-5-left: calc(var(--les-col-4-left) + var(--les-col-4));
    --les-col-6-left: calc(var(--les-col-5-left) + var(--les-col-5));
    --les-col-7-left: calc(var(--les-col-6-left) + var(--les-col-6));
    --les-col-8-left: calc(var(--les-col-7-left) + var(--les-col-7));
}


.les-col1 {
    width: var(--les-col-1);
    min-width: var(--les-col-1);
    max-width: var(--les-col-1);
    position: sticky;
    left: var(--les-col-1-left);
    top: auto;
    background-color: white;
    z-index: 10000;
}

.les-col12 {
    width: var(--les-col-12);
    min-width: var(--les-col-12);
    max-width: var(--les-col-12);
    position: sticky;
    left: var(--les-col-12-left);
    top: auto;
    background-color: white;
    z-index: 10000;
    text-align:center;
}


.les-col2 {
    width: var(--les-col-2);
    min-width: var(--les-col-2);
    max-width: var(--les-col-2);
    position: sticky;
    left: var(--les-col-2-left);
    top: auto;
    background-color: white;
    z-index: 10000;
}

.les-col3 {
    width: var(--les-col-3);
    min-width: var(--les-col-3);
    max-width: var(--les-col-3);
    position: sticky;
    left: var(--les-col-3-left);
    top: auto;
    background-color: white;
    z-index: 10000;
}

.les-col4 {
    width: var(--les-col-4);
    min-width: var(--les-col-4);
    max-width: var(--les-col-4);
    position: sticky;
    left: var(--les-col-4-left);
    top: auto;
    background-color: white;
    z-index: 10000;
}

.les-col5 {
    width: var(--les-col-5);
    min-width: var(--les-col-5);
    max-width: var(--les-col-5);
    position: sticky;
    left: var(--les-col-5-left);
    top: auto;
    background-color: white;
    z-index: 10000;
}

.les-col6 {
    width: var(--les-col-6);
    min-width: var(--les-col-6);
    max-width: var(--les-col-6);
    position: sticky;
    left: var(--les-col-6-left);
    top: auto;
    background-color: white;
    z-index: 10000;
}

.les-col7 {
    width: var(--les-col-7);
    min-width: var(--les-col-7);
    max-width: var(--les-col-7);
    position: sticky;
    left: var(--les-col-7-left);
    top: auto;
    background-color: white;
    z-index: 10000;
}

.les-colspan6 {
    position: sticky;
    left: 40px;
    top: auto;
    background-color: white;
    z-index: 10000;
}

.les-colspan7 {
    position: sticky;
    left: 0px;
    top: auto;
    padding:0 0 0 10px;
    font-weight:bold;
    background-color:white;
    z-index: 10000;
}

.les-coldel1 {
    background-color: #B2B2B2;
    min-width: 10px;
    width: 10px;
    max-width: 10px;
    border: none;
    position: sticky;
    left: var(--les-col-8-left);
    z-index: 10001;
}

.les-coldel2 {
    background-color: #B2B2B2;
    min-width: 5px;
    width: 5px;
    max-width: 5px;
    border: none;
    left:auto;
    z-index: 10001;
}

.lesopil-row-totals {
    font-weight: bold;
    text-align: center;
}


.lesopil-row-cur-week {
    background-color: #00FF66;
}

.lesopil-row-past-week {
    background-color: #FF6464;
}

.lesopil-row-past-complete-week {
    background-color: #17A05D;
}

.lesopil-row-new-week {
    background-color: #9FF1FE;
}


.lespoil-row-fut-week {
    background-color: white;
}



.les-row1 {
    position: sticky;
    height: 30px;
    top: 0;
    left: 0;
    z-index: 9999;
}

.les-row2 {
    position: sticky;
    top: 30px;
    left: 0;
    z-index: 9999;
    height:30px;
    background-color: white;
}

.les-row3 {
    position: sticky;
    top: 60px;
    left: 0;
    z-index: 9999;
    background-color: white;
}


.les-left-row1 {
    position: sticky;
    top: 0;
    z-index: 10001;
}




.les-left-row2 {
    position: sticky;
    top: 60px;
    z-index: 10001;
}

.days-div {
    max-height: 200px;
    min-height: 200px;
    overflow: auto;
}

.k-treeview {
    width:100% !important;
    padding:0px !important;
    height:250px !important;

}

.k-treeview-lines {
    width: 100% !important;
    padding: 0px !important;
}

.les-flag-import {
    font-size: 18px;
    color: #19A15F !important;
}

.les-flag-import-warn {
    font-size: 18px;
    color: #DD5044 !important;
}

.les-all-totals {
    font-weight: bold;
    text-align: center;
    background-color: #F4EED2;
}

.legenda-box {
    padding: 2px 12px;
    display: inline-block;
    border: 1px solid #E7E8EC;
}

.accent-color {
    color: #53B827;
    cursor:pointer;
}

@media print {
    .no-print, .no-print * {
        display: none !important;
    }
}

.rpt-time {
    font-size:9px;
}

table.k-grid-table span.telerik-blazor,
table.k-grid-table .k-textbox {
    width: 100%;
}

.cont {
    overflow: auto;
    position: absolute;
    left: 10px;
    right: 10px;
    top: 45px;
    bottom: 20px;
    padding: 0px 0px 0px 0px;
}

.les-move-array {
    cursor: pointer;
    font-size: 22px;
    color: #52B526 !important;
}

.search-box {
    margin-left: auto;
}


.table-view {
    width: 100%;
}

    .table-view tr td {
        padding: 5px;
        border: 1px solid black;
}

.search-c1 {
    width: 110px;
    min-width: 110px;
    max-width: 110px;
    text-wrap: normal;
    overflow-wrap: break-word;
}
.search-c2 {
    width: 80px;
    min-width: 80px;
    max-width: 80px;
    text-wrap: normal;
    overflow-wrap: break-word;
}
.search-c3 {
    width: 100px;
    min-width: 100px;
    max-width: 100px;
    text-wrap: normal;
    overflow-wrap: break-word;
}
.search-c4 {
    width: 100px;
    min-width: 100px;
    max-width: 100px;
    text-wrap: normal;
    overflow-wrap: break-word;
}

.search-c5 {
    width: 250px;
    min-width: 250px;
    max-width: 250px;
    text-wrap: normal;
    overflow-wrap: break-word;
}

.search-c6 {
    width: 250px;
    min-width: 250px;
    max-width: 250px;
    text-wrap: normal;
    overflow-wrap: break-word;
}