@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
:root {
    --zk-light-bg: #ffffff;
    --zk-light-text: #363636;
    --zk-dark-text: #f3f3f3;
    --zk-desc-text: #787878;

    --zk-primary-color: #3481a0;
    --zk-secondary-color: #363636;
    --zk-primary-color-l: #c8dee6;
    --zk-secondary-color-l: #464646;


    --zk-danger-color: #D31510;
    --zk-success-color: #27BB36;
    --zk-notification-color: #0265DC;
    --zk-alert-color: #E8C600;

    --zk-font-family: "Poppins", sans-serif;
    --zk-font-weight: 400;
    --zk-font-size: 11px;

    --zk-border-radius: 6px;
    --zk-default-border: solid 1px rgba(0,0,0,0.2);
    --zk-default-shadow: 2px 0 12px rgba(0,0,0,0.15);

    --zk-pm1: 6px;
    --zk-pm2: 12px;
    --zk-pm3: 24px;
    --zk-pm4: 36px;
    --zk-pm5: 48px;
}

* {
    margin: 0;
    padding: 0;
    outline: none;
    border: none;
    -webkit-tap-highlight-color: transparent;
        
}

html, body {
    width: 100%;
    height: 100%;
}

body {
    overflow: hidden;
    font-family: var(--zk-font-family);
    font-weight: var(--zk-font-weight);
    font-size: var(--zk-font-size);
    color: var(--zk-light-text);
    background: #f3f3f3;
}

a.breadcrumb-link:visited {
    color: var(--zk-primary-color);
}

a.breadcrumb-link:hover {
    opacity: .9;
}

.lite-button {
    font-family: var(--zk-font-family);
    padding: 8px 0;
    background: var(--zk-primary-color);
    color: var(--zk-dark-text);
    font-size: 1em;
    border-radius: 4px;
    width: 100%;
}

.short-button {
    width: 200px;
}

.button-second {
    background-color: var(--zk-secondary-color);
}

.login_page {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgb(240, 240, 240);
    background: linear-gradient(135deg, rgb(240, 240, 240) 0%, rgb(219, 233, 242) 35%, rgba(240, 240, 240, 1) 100%);
}

.login_container {
    width: 1000px;
    height: auto;
    background: rgba(255,255,255,0.8);
    border-radius: var(--zk-border-radius);
    border: var(--zk-default-border);
    backdrop-filter: blur(2px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-shadow: var(--zk-default-shadow);
}

.login_left {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    border-radius: var(--zk-border-radius) 0 0 var(--zk-border-radius);
    position: relative;
}

.login_left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--zk-border-radius) 0 0 var(--zk-border-radius);
}

.login_banner_text {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: rgba(0,0,0,0.15);
    backdrop-filter: blur(2px);
}

.login_header {
    font-size: 2.1em;
    margin-bottom: var(--zk-pm2);
    font-weight: 500;
    color: var(--zk-dark-text);

}

.login_slogan {
    font-size: 1.2em;
    font-weight: 300;
    text-align: center;
    color: var(--zk-dark-text);
}

.login_right {
    width: calc(100% - 48px);
    padding: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.login_logo {
    width: 200px;
    margin-bottom: var(--zk-pm3);
}

.login_logo img {
    width: 100%;
    height: auto;
}

.login_right_header {
    font-weight: 500;
    font-size: 1.2em;
    margin-bottom: var(--zk-pm2);
}

.login_form {
    width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.login_form_group {
    box-sizing: border-box;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: var(--zk-pm1);
    margin-bottom: var(--zk-pm1);
    
}

.input_group {
    width: max-content;
    position: relative;
}

.input_group .input_icon {
    box-sizing: border-box;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 0 var(--zk-border-radius) var(--zk-border-radius) 0;
    border: solid 1px var(--zk-primary-color);
    background: var(--zk-primary-color);
    color: var(--zk-dark-text);
    height: 100%;
    width: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login_form_group label {
    font-weight: 400;
    font-size: 0.9em;
}

input[type="text"], input[type="email"], input[type="password"],
input[type="search"], input[type="date"], select, input[type="number"],
textarea {
    box-sizing: border-box;
    border: var(--zk-default-border);
    border-radius: var(--zk-border-radius);
    width: 100%;
    height: 34px;
    padding: 0 10px;
    font-family: var(--zk-font-family);
    font-weight: 300;
    color: rgba(0,0,0,0.75);
    background: transparent;
    resize: none;
}

select {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    position: relative;
    z-index: 2;
}

.select-dots {
    z-index: 1;
    position: absolute;
    right: 0;
    top: 0;
    background: var(--zk-primary-color);
    color: var(--zk-dark-text);
    width: 24px;
    height: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0 6px 6px 0;
    border: var(--zk-default-border);
    cursor: pointer;
    transition: all .2s ease-in-out;
}

.select-dots.big {
    width: 34px;
        height: 32px;
}

.select-triangle:hover {
    background: var(--zk-secondary-color)
}

input[type="search"] {
    width: 350px !important;
}

input[type=file]::file-selector-button {
    box-sizing: border-box;
    height: 34px;
    padding: 6px 12px;
    border-radius: var(--zk-border-radius);
    font-family: var(--zk-font-family);
    font-size: 1em;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 1px 0 12px rgba(0, 0, 0, 0.15);
    gap: 6px;
    background: var(--zk-primary-color);
    border: solid 1px var(--zk-primary-color);
    color: var(--zk-dark-text);
}

input[type=file]::file-selector-button:hover {
    opacity: .9;
}

.default-input {
    padding-inline: 10px 42px;
}

input.login_input {
    padding-inline: 10px 42px;
}

.login_form_submit {
    box-sizing: border-box;
    width: 100%;
    margin: var(--zk-pm1) 0;
}

.login_error_msg {
    font-size: 0.9em;
    margin-top: var(--zk-pm1);
    color: var(--zk-danger-color);
}

main.view {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 240px calc(100% - 240px);
    grid-template-rows: 100px calc(100% - 100px);
    overflow-y: scroll;
}

main.view > *:first-child {
    grid-row: 1 / 3;
}

.navbarleft {
    box-sizing: border-box;
    width: 100%;
    min-height: 100%;
    background-color: var(--zk-secondary-color);
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: var(--zk-pm4) var(--zk-pm2);
    position: relative;
    z-index: 2;
    
}

.logo_container {
    width: 170px;
    height: auto;
    margin-bottom: var(--zk-pm5);
}

.logo_container img {
    width: 100%;
    height: auto;
}

.settings_container {
    margin-top: auto;
    list-style: none !important;
}

.navbarleft_label {
    color: #f3f3f3;
    font-weight: 500;
    font-size: 1.05em;
    letter-spacing: 2px;
}

li.menu_item {
    margin: var(--zk-pm2) 0;
}

li.menu_item i {
    font-size: 1.25em;
    z-index: 5;
    min-width: 20px;
}

li.menu_item a.menu_link, .setting_link {
    box-sizing: border-box;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: var(--zk-pm1);
    color: var(--zk-dark-text);  
    border-radius: var(--zk-border-radius);
    padding: 10px 20px;
    font-weight: 500;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

li.menu_item a.menu_link span, li.menu_item a.menu_link i, .setting_link span, .setting_link i {
    position: relative;
    z-index: 5;
}

li.menu_item a.menu_link::before, .setting_link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 40px;
    background-color: var(--zk-primary-color);
    border-radius: var(--zk-border-radius);
    z-index: 3;
    transition: all 0.3s ease-in-out;
}

.setting_link:hover i {
    color: var(--zk-light-bg);
}

li.menu_item a.menu_link:hover::before, .setting_link:hover::before {
    width: 100%;
}


li.menu_item a.menu_link.active, .setting_link {
    background: var(--zk-secondary-color-l);
}

.navbartop {
    width: 100%;
    height: 100%;
    background: var(--zk-light-bg);
    box-shadow: 3px 2px 18px rgba(0,0,0,0.08);
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--zk-pm2) var(--zk-pm3);
    position: relative;
}

.navbartop::before {
    content: '';
    width: 50px;
    height: 50px;
    position: absolute;
    left: -0px;
    bottom: -50px;
    border-radius: 50%;
    background: transparent;
    box-shadow: -20px -20px 0 0 rgba(255, 255, 255, 1);
    z-index: 1;
}

.navbartop_left {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 200px 1fr 0px;
    gap: 0 12px
}

.navbartop_right {
    position: relative;
}

.navbartop_user {
    width: 100%;
    height: 76px;
    display: grid;
    grid-template-columns: 76px 1fr;
    align-items: center;
}

.navbartop_avatar_link {
    width: 63px;
    height: 63px;
    border: solid 3px #fff;
    box-shadow: 0 0 8px rgba(0, 0, 0, .2);
    border-radius: 50%;
    transition: all .2s ease-in-out;
    overflow: hidden;
    background: #78959f;
}

.navbartop_avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-fluid {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.navbartop_avatar_link:hover {
    border-color: var(--zk-primary-color);
}

.navbartop_user > *:nth-child(1) {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.navbartop_user > *:nth-child(2) {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    align-self: end;
}

.navbartop_user > *:nth-child(3) {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    align-self: start;
}

.navbartop_left > *:nth-child(2) {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
}

.welcome_header {
    font-size: 0.8em;
    color: var(--zk-secondary-color-l);
}

.welcome_subheader {
    font-size: 1.2em;
    font-weight: 500;
    color: var(--zk-light-text);

}

.navbar_mobile_menu {
    display: none;
    
}


.module_nav {
    display: flex;
    gap: 12px;
    align-items: center;
    width: auto;
    height: 100%;
}

.module_nav_item {
    color: var(--zk-light-text);
    height: calc(76px - 12px);
    width: 76px;
    padding: 6px;
    display: flex;
    gap: 6px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: var(--zk-border-radius);
    transition: all .2s ease-in-out;
    cursor: pointer;
    text-decoration: none;
}

.module_nav_item:hover {
    background: var(--zk-primary-color);
}

.module_nav_item:hover > * {
    color: var(--zk-light-bg);
}

.module_nav_item i {
    font-size: 2.8em;
    transition: all .2s ease-in-out;
}

.module_nav_item span {
    text-wrap: wrap;
    word-spacing: 50px;
    font-weight: 500;
    text-align: center;
    line-height: 13px;
    transition: all .2s ease-in-out;
}

.module_nav_vr {
    width: 1px;
    background: rgba(0,0,0,.2);
    height: 100%;
}

.navbartop_alerts {
    width: 38px;
    height: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--zk-light-bg);
    border: var(--zk-default-border);
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    transition: all .2s ease-in-out;
}

.navbartop_alerts:hover svg {
    -webkit-animation: ring 4s ease-in-out 1;
    -webkit-transform-origin: 50% 4px;
    -moz-animation: ring 4s ease-in-out 1;
    -moz-transform-origin: 50% 4px;
    animation: ring 4s ease-in-out 1;
    transform-origin: 50% 4px;
}


.navbartop_alerts_badge {
    font-size: 1.1em;
    font-weight: 600;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: -5px;
    top: -5px;
    background: var(--zk-notification-color);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    transition: all .2s ease-in-out;
    animation: badge-pulse 6s ease-in-out infinite;
}

.navbartop_alerts_container {
    position: absolute;
    top: 46px;
    right: 0;
    display: flex;
    flex-direction: column-reverse;
    gap: 6px;
}

.navbartop_alerts_item {
    background: rgba(255,255,255,1);
    border: var(--zk-default-border);
    padding: 12px;
    display: grid;
    width: 260px;
    grid-template-columns: 10px 1fr;
    gap: 5px 12px;
    border-radius: var(--zk-border-radius);
    position: relative;
    animation: show-alerts 1s ease-in-out 1;
    transform: translateX(310px);
    animation-fill-mode: forwards;
}

.navbartop_alerts_item:nth-child(0) {
    animation-delay: 0s;
}

.navbartop_alerts_item:nth-child(2) {
    animation-delay: .2s;
}

.navbartop_alerts_item:nth-child(1) {
    animation-delay: .4s;
}

.navbartop_alerts_item.dismiss {
    animation: hide-alerts 1s ease-in-out 1;
}

@keyframes hide-alerts {
    100% {
        transform: translateX(310px);
    }
}


.alert_dismiss {
    border: var(--zk-default-border);
    border-radius: var(--zk-border-radius);
    display: grid;
    place-items: center;
    width: 16px;
    height: 16px;
    font-size: .7em;
    position: absolute;
    right: 12px;
    top: 12px;
    cursor: pointer;
}

.alert_item_header {
    font-weight: 600;
    font-size: 1.1em;
    text-transform: uppercase;
}

.alert_item_date {
    font-size: 1em;
    color: var(--zk-desc-text);
}

.alert_item_h {
    width: 10px;
    height: 100%;
    grid-row: 1 / 3;
}

.alert_item_h.notification, .notif_item_hr.notification {
    background: var(--zk-notification-color);
}

.alert_item_h.success, .notif_item_hr.alert_item_h.success{
    background: var(--zk-success-color);
}

.alert_item_h.danger, .notif_item_hr.danger{
    background: var(--zk-danger-color);
}

.alert_item_h.alert, .notif_item_hr.alert {
    background: var(--zk-alert-color);
}

.alert_item_header.notification, .notif_item_header.notification {
    color: var(--zk-notification-color);
}

.alert_item_header.success, .notif_item_header.success {
    color: var(--zk-success-color);
}

.alert_item_header.danger, .notif_item_header.danger{
    color: var(--zk-danger-color);
}

.alert_item_header.alert, .notif_item_header.alert{
    color: var(--zk-alert-color);
}

section.content {
    box-sizing: border-box;
    margin: var(--zk-pm3);
    display: flex;
    flex-direction: column;
}

.content_modal {
    margin-top: auto;
}

.content_header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--zk-pm2);
}

.content_title {
    font-weight: 500;
    font-size: 2em;
    letter-spacing: 1px;
}

.content_buttons {
    width: auto;
    height: 32px;
    display: flex;
    gap: var(--zk-pm1);
    justify-content: flex-end;
    align-items: center;
}

.content_button span {
    font-weight: 700;
}

.content_body {
    box-sizing: border-box;
    width: 100%;
    padding: var(--zk-pm3);
    background: var(--zk-light-bg);
    border: var(--zk-default-border);
    border-radius: var(--zk-border-radius);
    box-shadow: var(--zk-default-shadow);
    overflow-y: auto;
}

.table_options {
    width: 100%;
    display: flex;
    gap: var(--zk-pm2);
    margin-bottom: var(--zk-pm3);
}

.filter_date {
    position: relative;
}

.filter_input {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 34px;
    height: 34px;
    background: var(--zk-primary-color);
    color: var(--zk-light-bg);
    border-radius: var(--zk-border-radius);
    cursor: pointer;
    transition: all .2s ease-in-out;
}

.filter_input:hover {
    opacity: .9
}

.filter_date_content {
    position: absolute;
    top: -2px;
    left: 45px;
    background: var(--zk-light-bg);
    border: var(--zk-default-border);
    border-radius: var(--zk-border-radius);
    padding: var(--zk-pm1);
    display: none;

}

.filter_date_content.show {
    display: block;
}

.input_groups {
    display: flex;
    justify-content: flex-start;
    gap: var(--zk-pm1);
}

.input-date-table {
    width: 134px !important;
    height: 24px !important;
}

.input_group_filter {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 24px;
    width: 34px;
    background: var(--zk-primary-color);
    color: var(--zk-light-bg);
    border-radius: var(--zk-border-radius);
    cursor: pointer;
}



.page-selection {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    height: 100%;
    gap: 24px;
    padding-top: 120px;
}

.no-access {
    font-size: 1.2em;
    text-align: center;
}

.selection-box {
    background: var(--zk-light-bg);
    border-radius: var(--zk-border-radius);
    box-shadow: var(--zk-default-shadow);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 12px;
    width: 200px;
    height: 200px;
    padding: 12px;
    text-decoration: none;
    color: var(--zk-secondary-color);
    transition: all .2s ease-in-out;
}

.selection-box:hover {
    background: var(--zk-primary-color);
    color: var(--zk-dark-text);
}

.select-box-initials {
    font-size: 42px;
    font-weight: 700;
}

.select-box-name {
    font-size: 18px;
    font-weight: 500;
    text-align: center;
}

.table {
    width: calc(100% - 2px);
    height: auto;
    margin-bottom: var(--zk-pm2);
    border: var(--zk-default-border);
    border-radius: var(--zk-border-radius);
    display: inline-block;
}

.table_head {
    width: 100%;
    background: var(--zk-dark-text);
    border-radius: var(--zk-border-radius) var(--zk-border-radius) 0 0;
    
}

.table_row {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: stretch;
    flex-wrap: wrap;
}

.table_row > * {
    /*flex-grow: 1;*/
    flex: 1 1 0px;
}

.table_row:not(:last-child) {
    border-bottom: var(--zk-default-border);
}

.table_head .table_row {
    border-bottom: var(--zk-default-border);
}

.table_row > *:first-child:not(.table_text_not_first) {
    text-align: start;
    flex-basis: 74px;
    flex-grow: 0;
    flex-shrink: 0;
}

.table_row .table_header, .table_row .table_text {
    padding: 6px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 4px;
}


.table_row .table_header:first-child, .table_row .table_text:first-child {

    text-align: start;
}

.table_row .table_text:first-child {
    font-weight: 600;
}

.table_row .table_header:not(:first-child), .table_row .table_text:not(:first-child) {
    border-left: var(--zk-default-border);
}

.table_row .table_header {
    font-weight: 600;
}

#table-zd .table_body .table_row > *:nth-child(2),
#table-zd .table_head .table_row>*:nth-child(2) {
    flex-basis: 120px;
    flex-grow: 0;
    flex-shrink: 0;
}

.table:not(#table-zd) .table_body .table_row:hover {
    background: var(--zk-primary-color-l);
    cursor: pointer;
}

.table_row .table_header.short_column,
.table_row .table_text.short_column {
    flex-basis: 180px;
    flex-grow: 0;
    flex-shrink: 0;
}

.table_no_result 
{
    display: block;
    width: 100%;
    text-align: center;
}

.table_row.table_no_result .table_text:first-child {
    text-align: center;
    max-width: 100%;
}

.text_flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--zk-pm1);
}

.custom_link {
    text-decoration: none;
}

.custom_link:hover {
    color: var(--zk-primary-color);
}

.action_list_item:hover {
    background-color: var(--zk-primary-color-l);
    color: var(--zk-light-text);
}

/* ///// KONFIGURATOR DOCIĘCIA ///// */
.cutting-container {
    width: 100%;
    display: grid;
    grid-template-columns: 2fr 5fr;
    column-gap: 24px;
    box-sizing: border-box;
}

.cutting-menu {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 24px;
}

.cutting-menu-item {
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
}

.cutting-menu-label {
    font-size: 1.1em;
    font-weight: 600;
    margin-bottom: 6px;
}

.cutting-menu-group {
    position: relative;
}

.cutting-results {
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 24px;
}

.cutting-results-cards {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 24px;
    box-sizing: border-box;
}

.cutting-results-item {
    width: 100%;
    max-width: 400px;
    padding: 12px;
    background: var(--zk-dark-text);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: var(--zk-border-radius);
    border: var(--zk-default-border);
    box-shadow: var(--zk-default-shadow);
}

.cutting-result-odpad {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.cutting-result-odpad label {
    font-size: 1.15em;
    font-weight: 600;
}

.cutting-result-odpad .result-odpad-value {
    font-size: 1.1em;
    color: #666666;
}

.cutting-results-item label {
    font-size: 1.15em;
    font-weight: 600;
    margin-bottom: 4px;
}

.results-item-value {
    font-size: 1.1em;
    color: #666666;
}

.results-item-value:not(:last-child) {
    margin-bottom: 12px;
}

.radio-margin {
    margin-left: 24px;
}

.cutting-result-other {
    display: flex;
    justify-content: center;
    gap: 48px;
}

::marker {
    display: none !important;
}

/* PLANOWANIE */
/* PROFILE */
.grid-two-columns {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 24px;
}

.grid-two-columns.onetwo {
    grid-template-columns: 1fr 2fr;
}

.grid-column {
    width: calc(100% - 20px);
    padding: 10px;
}

.user-profile-basic {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.profile-basic-group {
    width: max-content;
    display: flex;
    gap: 5px;
}

.profile-basic-group.row {
    flex-direction: row;
}

.profile-basic-group.column {
    flex-direction: column;
}

.profile-basic-group label {
    font-size: 1.15em;
    font-weight: 600;
}

.profile-basic-value {
    font-size: 1.1em;
    color: var(--zk-desc-text);
}

.page-separator {
    width: 100%;
    border-bottom: var(--zk-default-border);
    margin: 24px 0;
}

.profile-basic-avatar {
    width: 100%;
    max-width: 150px;
    height: 150px;
    border-radius: var(--zk-border-radius);
    border: var(--zk-default-border);

}

/*//////////////////////////*/
/*/////  Powiadomienia ////*/

.content_notifications {
    width: 100%;
    height: calc(100% - 58px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start
}

.notif_container {
    width: 600px;
    height: 100%;
}

.notif_bell {
    background: var(--zk-light-bg);
    box-shadow: var(--zk-default-shadow);
    width: 55px;
    height: 55px;
    display: grid;
    justify-content: center;
    align-items: center;
    margin-inline: auto;
    border-radius: 50%;
    position: relative;
    margin-bottom: 24px;
}

.notif_bell i {
    font-size: 1.85em;
    color: var(--zk-desc-text);
}

.notif_bell_badge {
    position: absolute;
    right: -5px;
    top: -5px;
    background: var(--zk-notification-color);
    color: var(--zk-dark-text);
    border-radius: 50%;
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    font-weight: 600;
    font-size: 1.25em;
}

.notif_box {
    width: 100%;
    height: calc(100% - 79px);
    background: var(--zk-light-bg);
    box-shadow: var(--zk-default-shadow);
    display: flex;
    flex-direction: column;
    border-radius: var(--zk-border-radius);
}

.notif_head {
    width: calc(100% - 48px);
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.notif_head_title {
    font-size: 1.25em;
    font-weight: 700;
}

.notif_head_dismiss {
    display: flex;
    gap: 5px;
    align-items: center;
    color: var(--zk-notification-color);
    cursor: pointer;
    transition: all .2s ease-in-out;
}

.notif_head_dismiss:hover {
    color: var(--zk-primary-color);
}

.notif_body {
    width: 100%;
    height: 100%;
    border-top: 1px solid rgba(0,0,0,.1);
    overflow-y:scroll;
}

.notif_item {
    width: calc(100% - 24px);
    padding: 12px;
    display: grid;
    grid-template-columns: 10px 1fr 50px;
    gap: 2px 12px;
    border-bottom: 1px solid rgba(0,0,0,.1);
}

.notif_item.selected {
    background: var(--zk-dark-text);
}

.notif_item_hr {
    height: 100%;
    width: 10px;
    background: var(--zk-success-color);
    grid-column: 1 / 2;
    grid-row: 1 / 4;
}

.notif_item_header {
    width: 100%;
    font-size: 1.1em;
    text-transform: uppercase;
    font-weight: 700;
    grid-row: 1 / 2;
    grid-column: 2 / 3;
}

.notif_item_date {
    height: 10px;
    color: var(--zk-desc-text);
    font-size: .95em;
    grid-row: 2 / 3;
    grid-column: 2 / 3;
}

.notif_item_text {
    grid-row: 3 / 4;
    grid-column: 2 / 3;
    margin-top: 12px;
}

.notif_item_status {
    width: 12px;
    height: 12px;
    background: var(--zk-primary-color-l);
    border-radius: 50%;
    display: flex;
    justify-self: end;
}

.notif_item_status.active {
    background: var(--zk-primary-color);
}

.notif_list {
    height: 100%;
}


/* AKTUALIZACJE */
.updates_title {
    font-weight: 600;
    font-size: 1.35em;
    margin-bottom: 24px;
}

.update_group {
    display: flex;
    flex-direction: column;
}

.update_group:not(:last-child) {
    margin-bottom: 24px;
}

.update_group_title {
    font-weight: 500;
    font-size: 1.25em;
    margin-bottom: 12px;
}

.update_group_list li {
    margin-left: 20px;
}

.fix {
    margin: 5px 0;
    font-weight: 500;
    font-size: 1.15em;
}

/* DAILY QUESTS */
.daily-flex {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.daily_flex_title {
    font-weight: 600;
    font-size: 1.35em;
    margin-bottom: var(--zk-pm2);
}

.daily_flex_title:not(:first-child) {
    margin-top: var(--zk-pm3);
}

.daily_flex_form {
    display: flex;
    flex-direction: column;
    gap: var(--zk-pm2);
}

.daily_flex_group {
    font-size: 1.05em;
}

.daily_flex_group label {
    display: flex;
    gap: 6px;
}

/* WAREHOUSE DASHBOARD" */
.dashboard_content {
    width: 100%;
    height: calc(100% - 58px);
    display: flex;
    flex-direction: column;
    overflow: auto;
    padding-top: var(--zk-pm2);
        
}

.dashboard_dzial_users {
    width: 100%;
    height: 42px;
    display: flex;
    gap: var(--zk-pm1);
    align-items: center;
    justify-content: flex-start;
    margin-bottom: var(--zk-pm4);
}

.dashboard_dzial_user {
    width: max-content;
    height: calc(100% - 12px);
    padding: var(--zk-pm1) 8px;
    display: flex;
    gap: var(--zk-pm1);
    align-items: center;
    background: var(--zk-light-bg);
    box-shadow: var(--zk-default-shadow);
    border-radius: 20px;
}

.dzial_user_img {
    width: 30px;
    height: 30px;
}

.dzial_user_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
}

.dashboard_section_title {
    font-weight: 600;
    font-size: 2.25em;
    margin-bottom: var(--zk-pm3);
    display: flex;
    align-items: center;
    gap: var(--zk-pm2);
    cursor: pointer;
}

.dashboard_section_title i {
    transition: all .2s ease-in-out;
}

.dashboard_section_title i.reverse {
    transform: rotate(180deg);
}

.dashboard_section_container {
    width: 100%;
    min-height: 490px;
    max-height:490px;
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    grid-template-rows: 2fr;
    gap: var(--zk-pm3);
    margin-bottom: var(--zk-pm5);
    transition: all .5s ease-in-out;
    overflow: hidden;
    padding: 10px 0;
}

.dashboard_section_container.closed {
    min-height: 0;
    max-height: 0;
    grid-template-rows: 0fr;
    padding: 0;
}

.dashboard_section_container.reverse {
    grid-template-columns: 2fr 1fr 1fr;
}

.dashboard_section_container > *:last-child {
    grid-column: 3 / 4;
    grid-row: 1 / 3;

}

.dashboard_section_container.reverse > *:last-child {
    grid-column: 1 / 2;
}

.dashboard_box {
    width: calc(100% - 32px);
    min-height: 200px;
    padding: 16px;
    background: var(--zk-light-bg);
    box-shadow: var(--zk-default-shadow);
    border-radius: var(--zk-border-radius);
    display: flex;
    flex-direction: column;
    position: relative;
}

.dashboard_box.chart {
    justify-content: center;
    align-items: center;
}

.dashboard_box_title {
    font-size: 1.85em;
    font-weight: 600;
}

.dashboard_box_subtitle {
    font-size: 1.55em;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--zk-desc-text);
}

.dashboard_box_icon {
    position: absolute;
    right: var(--zk-pm3);
    bottom: var(--zk-pm3);
    opacity: .55;
}

.dashboard_box_icon i {
    font-size: 5em;
    color: var(--zk-primary-color);

}

i.blue {
    color: #82CDFF;
}

i.orange {
    color: #F2A357;
}

i.green {
    color: #6BBFC0;
}

i.purple {
    color: #906CF5;
}

.dashboard_box_icon i.reverse {
    transform: rotateY(180deg);
}

.dashboard_box_value {
    font-size: 5.5em;
    font-weight: 500;
    margin-top: auto;
}

.dashboard_box_desc {
    font-size: 1.4em;
}

.high_row {
    min-height: 67px;
}

.order_ended {
    background: #d7d7d7;
}

.order_added {
    background: rgba(169, 214, 184, .5);
}

.order_canceled {
    background: rgba(223, 223, 223, .5);
}

.table-schedule {
    width: auto;
}

#schedule-table {
    width: 100%;
    border-collapse: collapse;

}

#schedule-table th {
    height: 32px;
    background: var(--zk-primary-color);
    color: var(--zk-dark-text);
    font-size: 1.15em;
    font-weight: 600;
    border: solid 1px rgba(0, 0, 0, .15)
}

#schedule-table th.next-week {
    background: var(--zk-primary-color-l);
    color: var(--zk-light-text);
}

.schedule-names {
    font-weight: 500;
    text-align: center;
    font-size: 1.1em;
    border: solid 1px rgba(0,0,0,.15);
    background: rgba(0,0,0,.05);
}

#schedule-table td {
    border: solid 1px rgba(0,0,0,.15);
}

.schedule-select {
    border-radius: 0;
    border: none;
    text-align: center;
}

.select-wolne {
    color: var(--zk-success-color);
    background: rgba(39, 187, 54,.15);
}

.select-urlop {
    color: var(--zk-alert-color);
    background: rgba(232, 198, 0,.15);
}

.select-swieto {
    color: var(--zk-notification-color);
    background: rgba(2, 101, 220, .15);
}

@media only screen and (max-width: 1280px) {

    main.view {
        grid-template-columns: 80px calc(100% - 80px);
        grid-template-rows: 80px calc(100% - 80px);
        
    }

    .logo_container {
        width: 56px;
    }

    .logo_container img {
        content: url("../img/Favicon.png");
        width: 100%;
        height: auto;
    }

    .navbarleft_label {
        display: none;
    }

    .menu_link span, .setting_link span {
        display: none;
    }

    ul.menu li.menu_item a.menu_link, .setting_link {
        padding: 20px;
    }

    ul.menu li.menu_item a.menu_link::before, .setting_link::before {
        height: 56px;
    }

    .navbartop_user {
        height: 56px;
    }

    .navbartop_avatar_link {
        height: 50px;
        width: 50px;
    }

    .module_nav_item {
        height: calc(56px - 12px);
        gap: 4px;
    }

    .module_nav_item i {
        font-size: 1.5em;
    }
}

@media only screen and (max-width: 1024px) {

    .dashboard_section_container {
        grid-template-columns: 1fr 1fr;
        min-height: 740px;
        max-height: 740px;
    }

    .dashboard_section_container > :last-child, .dashboard_section_container.reverse> :last-child {
        grid-row: 3 / 4;
        grid-column: 1 / 3;
    }

    .dashboard_section_container.reverse {
        grid-template-columns: 1fr 1fr;
    }

    
}

@media only screen and (max-width: 768px) {
    section.content {
        margin: var(--zk-pm2);
    }

    .content_body {
        padding: var(--zk-pm2);
    }

    .login_container {
        grid-template-columns: 1fr;
        margin-inline: 10px;
    }

    .login_left {
        aspect-ratio: 2 / 1;
    }

    .login_form_submit .btn {
        width: 100%;
    }

    .navbartop_avatar_link {
        display: none;
    }

    .navbartop_left {
        grid-template-columns: max-content 1fr 40px;
    }

    .navbartop_user {
        grid-template-columns: max-content;
        height: 56px;
        width: max-content;
    }
    
    .navbartop_user > :nth-child(2), .navbartop_user> :nth-child(3) {
        grid-column: 1 / 2;
    }
    
    .navbar_mobile_menu {
        display: block;
        width: 45px;
        background: transparent;
    }

    .navbar_mobile_menu i {
        font-size: 1.75em;
    }

    .module_nav.show {
        height: 270px;
        padding: 10px 0;
    }

    .module_nav {
        display: flex;
        flex-direction: column;
        position: absolute;
        z-index: 5;
        left: 115px;
        top: 70px;
        background: var(--zk-light-bg);
        height: 0;
        border-radius: var(--zk-border-radius);
        box-shadow: var(--zk-default-shadow);
        padding: 0;
        overflow: hidden;
        transition: all .5s ease-in-out;
    }

    .module_nav_vr {
        display: none;
    }

    .module_nav_item {
        height: calc(64px - 12px);
    }

    .content_title {
        font-size: 1.4em;
    }

    input[type="search"] {
        width: calc(284px - 48px) !important;
    }

    .table-container {
        width: 100%;
    }

    .table_head {
        display: none;
    }

    .table_row {
        flex-direction: column;
        
    }

    .table_header:not(:last-child) {
        border-left: none;
        border-bottom: var(--zk-default-border);
    }
    .table_row .table_header:not(:first-child), .table_row .table_text:not(:first-child) {
        border-left: none;
    }
    .table_row > :first-child:not(.table_text_not_first) {
        flex-basis: auto;
    }

    .table_text {
        display: flex;
        align-items: center;
        border-bottom: 1px solid #ddd;
        text-align: right !important;
        height: 24px;

    }

    .table_body .table_row {
        background: rgb(243, 243, 243);
            background: linear-gradient(90deg, rgba(243, 243, 243, 1) 0%, rgba(243, 243, 243, 1) 50%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 1) 100%);
    }

    .table_text::before {
        width: 50%;
        content: attr(data-label);
        font-weight: bold;
        margin-right: 10px;
        text-align: left;
    }

    .table_text span{
        width: 50%;
    }

    .page-selection {
        padding-top: 20px;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        overflow-y: scroll;
    }

    .cutting-container {
        grid-template-columns: 1fr;
        row-gap: 48px;
    }

    .cutting-results-cards {
        flex-direction: column;
        row-gap: 12px;
    }

    .notif_container {
        width: 100%;
    }

    .selection-box {
        min-height: 200px;
    }

    .grid-two-columns {
        grid-template-columns: 1fr;
    }
}

@media only screen and (max-width: 524px) {
    .dashboard_section_container, .dashboard_section_container.reverse {
        grid-template-columns: 1fr;
        min-height: 1250px;
        max-height: 1250px;
    }

    .dashboard_section_container> :last-child,
    .dashboard_section_container.reverse> :last-child {
        grid-row: 5 / 6;
        grid-column: 1 / 2;
    }
    
    .dashboard_section_container.closed {
        min-height: 0;
        max-height: 0;
    }
}

@-webkit-keyframes ring {
    0% {
        -webkit-transform: rotateZ(0);
    }

    1% {
        -webkit-transform: rotateZ(30deg);
    }

    3% {
        -webkit-transform: rotateZ(-28deg);
    }

    5% {
        -webkit-transform: rotateZ(34deg);
    }

    7% {
        -webkit-transform: rotateZ(-32deg);
    }

    9% {
        -webkit-transform: rotateZ(30deg);
    }

    11% {
        -webkit-transform: rotateZ(-28deg);
    }

    13% {
        -webkit-transform: rotateZ(26deg);
    }

    15% {
        -webkit-transform: rotateZ(-24deg);
    }

    17% {
        -webkit-transform: rotateZ(22deg);
    }

    19% {
        -webkit-transform: rotateZ(-20deg);
    }

    21% {
        -webkit-transform: rotateZ(18deg);
    }

    23% {
        -webkit-transform: rotateZ(-16deg);
    }

    25% {
        -webkit-transform: rotateZ(14deg);
    }

    27% {
        -webkit-transform: rotateZ(-12deg);
    }

    29% {
        -webkit-transform: rotateZ(10deg);
    }

    31% {
        -webkit-transform: rotateZ(-8deg);
    }

    33% {
        -webkit-transform: rotateZ(6deg);
    }

    35% {
        -webkit-transform: rotateZ(-4deg);
    }

    37% {
        -webkit-transform: rotateZ(2deg);
    }

    39% {
        -webkit-transform: rotateZ(-1deg);
    }

    41% {
        -webkit-transform: rotateZ(1deg);
    }

    43% {
        -webkit-transform: rotateZ(0);
    }

    100% {
        -webkit-transform: rotateZ(0);
    }
}

@-moz-keyframes ring {
    0% {
        -moz-transform: rotate(0);
    }

    1% {
        -moz-transform: rotate(30deg);
    }

    3% {
        -moz-transform: rotate(-28deg);
    }

    5% {
        -moz-transform: rotate(34deg);
    }

    7% {
        -moz-transform: rotate(-32deg);
    }

    9% {
        -moz-transform: rotate(30deg);
    }

    11% {
        -moz-transform: rotate(-28deg);
    }

    13% {
        -moz-transform: rotate(26deg);
    }

    15% {
        -moz-transform: rotate(-24deg);
    }

    17% {
        -moz-transform: rotate(22deg);
    }

    19% {
        -moz-transform: rotate(-20deg);
    }

    21% {
        -moz-transform: rotate(18deg);
    }

    23% {
        -moz-transform: rotate(-16deg);
    }

    25% {
        -moz-transform: rotate(14deg);
    }

    27% {
        -moz-transform: rotate(-12deg);
    }

    29% {
        -moz-transform: rotate(10deg);
    }

    31% {
        -moz-transform: rotate(-8deg);
    }

    33% {
        -moz-transform: rotate(6deg);
    }

    35% {
        -moz-transform: rotate(-4deg);
    }

    37% {
        -moz-transform: rotate(2deg);
    }

    39% {
        -moz-transform: rotate(-1deg);
    }

    41% {
        -moz-transform: rotate(1deg);
    }

    43% {
        -moz-transform: rotate(0);
    }

    100% {
        -moz-transform: rotate(0);
    }
}

@keyframes ring {
    0% {
        transform: rotate(0);
    }

    1% {
        transform: rotate(30deg);
    }

    3% {
        transform: rotate(-28deg);
    }

    5% {
        transform: rotate(34deg);
    }

    7% {
        transform: rotate(-32deg);
    }

    9% {
        transform: rotate(30deg);
    }

    11% {
        transform: rotate(-28deg);
    }

    13% {
        transform: rotate(26deg);
    }

    15% {
        transform: rotate(-24deg);
    }

    17% {
        transform: rotate(22deg);
    }

    19% {
        transform: rotate(-20deg);
    }

    21% {
        transform: rotate(18deg);
    }

    23% {
        transform: rotate(-16deg);
    }

    25% {
        transform: rotate(14deg);
    }

    27% {
        transform: rotate(-12deg);
    }

    29% {
        transform: rotate(10deg);
    }

    31% {
        transform: rotate(-8deg);
    }

    33% {
        transform: rotate(6deg);
    }

    35% {
        transform: rotate(-4deg);
    }

    37% {
        transform: rotate(2deg);
    }

    39% {
        transform: rotate(-1deg);
    }

    41% {
        transform: rotate(1deg);
    }

    43% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(0);
    }
}

@keyframes badge-pulse {
    0% {
        transform: translateY(0);
    }
    55% {
        transform: translateY(0);
    }
    60% {
        transform: translateY(-6px);
    }
    70% {
        transform: translateY(0);
    }
    75% {
        transform: translateY(-4px);
    }
    80% {
        transform: translateY(0);
    }

}

@keyframes show-alerts {
    100% {
        transform: translateX(0);
    }
}