form {}

form .form-offset {
    background-color: #fff;
}

form .form-offset .form-content {}

form .form-offset .form-footer {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
}
.images-input {
    width: 100%;
}

.images-input .images-input-offset {
    width: 100%;
    overflow-x: auto;
}

.images-input .images-input-offset .images-input-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 4px;
    width: 100%;
}

.images-input .images-input-offset .images-input-content .images-input-button {
    flex-shrink: 0;
    padding: 4px;
    width: calc(100% / 4);
    aspect-ratio: 16 / 9;
    transition: 0.4s width;
}

.images-input[count="0"] .images-input-offset .images-input-content .images-input-button {
    width: 80px;
}

.images-input .images-input-offset .images-input-content .images-input-button .images-input-button-content {
    background-color: #44566c;
    color: #f8fafb;
    border-radius: var(--padding);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.images-input .images-input-offset .images-input-content .images-input-image {
    flex-shrink: 0;
    padding: 4px;
    width: calc(100% / 4);
    aspect-ratio: 16 / 9;
    transition: 0.4s width;
}

.images-input .images-input-offset .images-input-content .images-input-image .images-input-image-content {
    background-color: #44566c;
    color: #f8fafb;
    background-size: cover;
    background-position: center;
    border-radius: var(--padding);
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    position: relative;
    width: 100%;
    height: 100%;
}

.images-input .images-input-offset .images-input-content .images-input-image .images-input-image-content .images-input-image-button-remove {
    cursor: pointer;
    padding: 4px;
    transition: 0.4s opacity;
}

.images-input .images-input-offset .images-input-content .images-input-image .images-input-image-content .images-input-image-button-remove:hover {
    opacity: 0.5;
}

@media (max-width: 576px) {

    .images-input .images-input-offset .images-input-content .images-input-button {
        width: calc(100% / 2);
    }

    .images-input .images-input-offset .images-input-content .images-input-image {
        width: calc(100% / 2);
    }

}
[input="file"] {
    cursor: pointer;
    padding: 9px;
}

.image-input {
    display: block;
    border-radius: 10%;
    box-shadow: var(--box-shadow);
    object-fit: cover;
    object-position: center;
    aspect-ratio: 1 / 1;
    padding: 0px !important;
    width: 100%;
}
carousel-view {
    --tan: 1;
    --angle: 0deg;

    --itemWidth: calc(var(--width) * 0.5);
    --itemHeight: calc(var(--itemWidth) / 16 * 9);

    --translate: calc((var(--itemWidth) / 2) / var(--tan) * 1.1px);
    --index: 0;

    display: block;
    aspect-ratio: 2 / 1;
    width: 100%;
    transform-style: preserve-3d;
    perspective: calc(var(--height) * 1px);
    overflow: hidden;
}

carousel-view .carousel-view-content {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: calc(var(--itemWidth) * 1px);
    height: calc(var(--itemHeight) * 1px);
    transform: translateX(-50%) translateY(-50%) translateZ(calc(var(--translate) * -1)) rotateY(calc(var(--index) * var(--angle)));
    transform-style: preserve-3d;
    transition: 0.4s transform;
}

carousel-view .carousel-view-content .carousel-view-item {
    backface-visibility: hidden;
    box-shadow: var(--box-shadow);
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    transform: rotateY(var(--rotateY)) translateZ(var(--translate));
}

carousel-view .carousel-view-content .carousel-view-item .carousel-view-item-content {
    width: 100%;
    height: 100%;
}

carousel-view .carousel-view-content .carousel-view-item .carousel-view-item-content img {
    display: block;
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}

carousel-view .carousel-view-content .carousel-view-item:nth-child(1) {
    --rotateY: calc(var(--angle) * 0);
}

carousel-view .carousel-view-content .carousel-view-item:nth-child(2) {
    --rotateY: calc(var(--angle) * 1);
}

carousel-view .carousel-view-content .carousel-view-item:nth-child(3) {
    --rotateY: calc(var(--angle) * 2);
}

carousel-view .carousel-view-content .carousel-view-item:nth-child(4) {
    --rotateY: calc(var(--angle) * 3);
}

carousel-view .carousel-view-content .carousel-view-item:nth-child(5) {
    --rotateY: calc(var(--angle) * 4);
}

carousel-view .carousel-view-content .carousel-view-item:nth-child(6) {
    --rotateY: calc(var(--angle) * 5);
}

carousel-view .carousel-view-content .carousel-view-item:nth-child(7) {
    --rotateY: calc(var(--angle) * 6);
}

carousel-view .carousel-view-content .carousel-view-item:nth-child(8) {
    --rotateY: calc(var(--angle) * 7);
}

carousel-view .carousel-view-content .carousel-view-item:nth-child(9) {
    --rotateY: calc(var(--angle) * 8);
}

carousel-view .carousel-view-content .carousel-view-item:nth-child(10) {
    --rotateY: calc(var(--angle) * 9);
}

carousel-view .carousel-view-content .carousel-view-item:nth-child(11) {
    --rotateY: calc(var(--angle) * 10);
}

carousel-view .carousel-view-content .carousel-view-item:nth-child(12) {
    --rotateY: calc(var(--angle) * 11);
}

carousel-view .carousel-view-content .carousel-view-item:nth-child(13) {
    --rotateY: calc(var(--angle) * 12);
}

carousel-view .carousel-view-content .carousel-view-item:nth-child(14) {
    --rotateY: calc(var(--angle) * 13);
}

carousel-view .carousel-view-content .carousel-view-item:nth-child(15) {
    --rotateY: calc(var(--angle) * 14);
}

carousel-view .carousel-view-content .carousel-view-item:nth-child(16) {
    --rotateY: calc(var(--angle) * 15);
}
.column-view {
    display: flex;
    align-items: center;
    justify-content: center;
}

.column-view.column-1 .column-view-content {
    width: calc(100% / 1);
}

.column-view.column-2 .column-view-content {
    width: calc(100% / 2);
}

.column-view.column-3 .column-view-content {
    width: calc(100% / 3);
}

.column-view.column-4 .column-view-content {
    width: calc(100% / 4);
}
grid-view {
    --items: 1;
    --itemWidth: calc( 100% / var(--items) );
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    position: relative;
    width: 100%;
}

grid-view > * {
    width: var(--itemWidth);
}
scroll-view {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    overflow-y: auto;
}

scroll-view .scroll-view-content {
    width: 100%;
    overflow: hidden;
}

scroll-view [animation] {
    position: relative;
}

scroll-view [animation="FromLeft"]>* {
    transition: 0.8s opacity, 0.8s transform;
}

scroll-view [animation="FromLeft"]:not([animated="true"])>* {
    opacity: 0;
    transform: translateX(-100%);
}

scroll-view [animation="FromRight"]>* {
    transition: 0.8s opacity, 0.8s transform;
}

scroll-view [animation="FromRight"]:not([animated="true"])>* {
    opacity: 0;
    transform: translateX(100%);
}

scroll-view [animation="FromBottom"]>* {
    transition: 0.8s opacity, 0.8s transform;
}

scroll-view [animation="FromBottom"]:not([animated="true"])>* {
    opacity: 0;
    transform: translateY(100%);
}
.section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section .section-offset {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    max-width: 1080px;
}

.section .section-offset[align-items="top"] { align-items: flex-start; }
.section .section-offset[align-items="center"] { align-items: center; }
.section .section-offset[align-items="bottom"] { align-items: flex-end; }
.section .section-offset[align-items="stretch"] { align-items: stretch; }

.section .section-offset[justify-content="left"] { justify-content: flex-start; }
.section .section-offset[justify-content="center"] { justify-content: center; }
.section .section-offset[justify-content="right"] { justify-content: flex-end; }
/* section 1 */

.section.section-1 .section-offset .section-content {
    width: 100%;
}
/* section 2 */

.section.section-2-1 .section-offset .section-content {
    width: 50%;
}

@media (max-width: 1080px) {

    .section.section-2-1 .section-offset {
        flex-direction: column;
    }

    .section.section-2-1 .section-offset .section-content {
        width: 100%;
    }

}

@media (max-width: 576px) {}

@media (max-width: 360px) {}
/* section 3 */

.section.section-3-1 .section-offset .section-content {
    width: 33.33%;
}

.section.section-3-2 .section-offset .section-content {
    width: 50%;
}

@media (max-width: 1080px) {

    .section.section-3-1 .section-offset {
        flex-direction: column;
    }

    .section.section-3-1 .section-offset .section-content {
        width: 66.66%;
    }

    .section.section-3-2 .section-offset {
        flex-direction: column;
    }

    .section.section-3-2 .section-offset .section-content {
        width: 100%;
    }

}

@media (max-width: 576px) {

    .section.section-3-1 .section-offset .section-content {
        width: 100%;
    }

}

@media (max-width: 360px) {}
.slider-view {
    display: block;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    overflow: hidden;
}

.slider-view .slider-view-offset {
    flex-grow: 1;
    width: 0%;
    overflow: hidden;
}

.slider-view .slider-view-offset .slider-view-content {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    width: 100%;
    overflow: visible;
}

.slider-view .slider-view-offset .slider-view-content .slider-view-item {
    flex-shrink: 0;
    width: 100%;
    min-width: 100%;
}

.slider-view .slider-view-offset .slider-view-content .slider-view-item .slider-view-item-content {
    width: 100%;
}
.modal {
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: fixed;
    left: 0%;
    top: 0%;
    padding: var(--padding-2);
    width: 100%;
    height: 100%;
    z-index: 100;
    overflow-y: auto;
}

.modal .modal-content {
    background-color: #f8fafb;
    box-shadow: var(--box-shadow);
    border-radius: var(--padding);
    max-width: 100%;
    overflow: hidden;
}
.alert {
    width: 450px;
    max-width: 100%;
}

.alert .alert-header {
    padding: 9px;
}

.alert .alert-content {
    padding: 9px;
}

.alert .alert-footer {
    display: flex;
    flex-direction: row;
}

.alert .alert-footer .alert-button {
    cursor: pointer;
    text-align: center;
    font-size: var(--font-size);
    font-weight: var(--font-weight);
    line-height: var(--line-height);
    padding: 9px;
    flex-grow: 1;
    width: 0%;
    transition: 0.4s opacity;
}
.alert .alert-footer .alert-button:hover {
    opacity: 0.5;
}

.alert .alert-footer .alert-button.alert-button-cancel {
    background-color: #f8fafb;
    color: #44566c;
}

.alert .alert-footer .alert-button.alert-button-confirm {
    background-color: #44566c;
    color: #f8fafb;
}
.setting-list .setting-list-content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.setting-list .setting-list-content .setting-minimized {
    width: 33.33%;
}

@media (max-width: 1080px) {

    .setting-list .setting-list-content .setting-minimized {
        width: 50%;
    }

}

@media (max-width: 576px) {

    .setting-list .setting-list-content .setting-minimized {
        width: 100%;
    }

}

.setting-minimized .setting-name {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.setting-minimized .setting-content {
    background-color: #ffffff;
    color: #44566c;
    border-radius: var(--padding);
    position: relative;
    overflow: hidden;
}

.setting-minimized .setting-footer {
    background-color: #f8fafb;
    color: #44566c;
    border-top-left-radius: var(--padding);
    display: flex;
    position: absolute;
    right: 0px;
    bottom: 0px;
    transition: 0.4s opacity;
}

.setting-minimized:not(:hover) .setting-footer {
    opacity: 0;
}

.setting .setting-button {
    cursor: pointer;
    transition: 0.4s opacity;
}

.setting .setting-button:hover {
    opacity: 0.5;
}
.statistic-minimized {

}

.statistic-minimized .statistic-offset {
    background-color: white;
    border-radius: 16px;
    overflow: hidden;
}

.tabbed-view {
    width: 100%;
}

.tabbed-view .tabbed-view-offset {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.tabbed-view .tabbed-view-offset .tabbed-view-header {
    display: flex;
    width: 100%;
    overflow-x: auto;
}

.tabbed-view .tabbed-view-offset .tabbed-view-header .tabbed-view-button {
    cursor: pointer;
    position: relative;
    transition: 0.4s background-color;
}

.tabbed-view .tabbed-view-offset .tabbed-view-header .tabbed-view-button::after {
    display: block;
    border: 4px solid rgba(255, 255, 255, 0);
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0px;
    transform: translateX(-50%);
    width: 0%;
    height: 0px;
    transition: 0.4s width, 0.4s border;
}

.tabbed-view .tabbed-view-offset .tabbed-view-header .tabbed-view-button:hover::after {
    border-bottom: 4px solid royalblue;
}

.tabbed-view .tabbed-view-offset .tabbed-view-header .tabbed-view-button[active="true"]::after {
    border-bottom: 4px solid royalblue;
    width: calc(100% - 8px);
}

.tabbed-view .tabbed-view-offset .tabbed-view-header .tabbed-view-button .tabbed-view-button-content {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
}

.tabbed-view .tabbed-view-offset .tabbed-view-content {
    background-color: #ffffff;
    width: 100%;
}

.tabbed-view .tabbed-view-offset .tabbed-view-content .tabbed-view-tab {
    width: 100%;
}

.tabbed-view .tabbed-view-offset .tabbed-view-content .tabbed-view-tab:not([active="true"]) {
    display: none;
}

@media (max-width: 576px) {

    .tabbed-view .tabbed-view-offset .tabbed-view-header .tabbed-view-button .tabbed-view-button-content {
        padding: var(--padding);
    }

    .tabbed-view .tabbed-view-offset .tabbed-view-header .tabbed-view-button .tabbed-view-button-content .text {
        display: none;
    }

}
@media (min-width: 576px) {

    .tabbed-view[direction="horizontal"] .tabbed-view-offset {
        flex-direction: row;
    }

    .tabbed-view[direction="horizontal"] .tabbed-view-offset .tabbed-view-header {
        flex-direction: column;
        width: auto;
        height: 100%;
        overflow-y: auto;
    }

    .tabbed-view[direction="horizontal"] .tabbed-view-offset .tabbed-view-content {
        flex-grow: 1;
        width: 0%;
        height: 100%;
    }

}
.calendar-minimized {}

.calendar-minimized .calendar-offset {
    background-color: #ffffff;
    color: #44566c;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.calendar-minimized .calendar-footer {
    background-color: #f8fafb;
    color: #44566c;
    border-top-left-radius: 8px;
    display: flex;
    position: absolute;
    right: 0px;
    bottom: 0px;
    transition: 0.4s opacity;
}

.calendar-minimized:not(:hover) .calendar-footer {
    opacity: 0;
}

.calendar-minimized .calendar-description {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: pre-line;
}

.calendar-maximized .calendar-description {
    white-space: pre-line;
}

.calendar .calendar-button {
    cursor: pointer;
    transition: 0.4s opacity;
}

.calendar .calendar-button:hover {
    opacity: 0.5;
}
.calendar-dot {}

.calendar-dot .caption {
    background-color: var(--color);
    color: white;
    border-radius: 4px;
}
.calendar-event-minimized {}

.calendar-event-minimized .calendar-event-offset {
    background-color: #ffffff;
    color: #44566c;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.calendar-event-minimized .calendar-event-footer {
    background-color: #f8fafb;
    color: #44566c;
    border-top-left-radius: 8px;
    display: flex;
    position: absolute;
    right: 0px;
    bottom: 0px;
    transition: 0.4s opacity;
}

.calendar-event-minimized:not(:hover) .calendar-event-footer {
    opacity: 0;
}

.calendar-event-minimized .calendar-event-description {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: pre-line;
}

.calendar-event-maximized .calendar-event-description {
    white-space: pre-line;
}

.calendar-event .calendar-event-button {
    cursor: pointer;
    transition: 0.4s opacity;
}

.calendar-event .calendar-event-button:hover {
    opacity: 0.5;
}
/* Maximized */

.contact-maximized .contact-description {
    white-space: pre-line;
}

/* Attachment */

.contact-attachment {}

.contact-attachment .contact-offset {
    background-color: #ffffff;
    color: #44566c;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.contact-attachment .contact-footer {
    background-color: #f8fafb;
    color: #44566c;
    border-top-left-radius: 8px;
    display: flex;
    position: absolute;
    right: 0px;
    bottom: 0px;
    transition: 0.4s opacity;
}

.contact-attachment:not(:hover) .contact-footer {
    opacity: 0;
}

.contact-attachment .contact-description {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: pre-line;
}
/* Attachment */

.customer-attachment {}

.customer-attachment .customer-offset {
    background-color: #ffffff;
    color: #44566c;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.customer-attachment .customer-footer {
    background-color: #f8fafb;
    color: #44566c;
    border-top-left-radius: 8px;
    display: flex;
    position: absolute;
    right: 0px;
    bottom: 0px;
    transition: 0.4s opacity;
}

.customer-attachment:not(:hover) .customer-footer {
    opacity: 0;
}

.customer-attachment .customer-description {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: pre-line;
}
/* Maximized */

.customer-maximized {
    width: 100%;
    height: 100%;
}

.customer-maximized .customer-offset {
    width: 100%;
    height: 100%;
}
.offer-cost-minimized {}

.offer-cost-minimized .offer-cost-description {
    white-space: pre-line;
}

.offer-cost .offer-cost-button {
    color: teal;
    cursor: pointer;
    transition: 0.4s opacity;
}

.offer-cost .offer-cost-button:hover {
    opacity: 0.5;
}

.offer-cost-net-amount::after {
    content: ' zł';
}
.offer-feature-minimized {}

.offer-feature-minimized .offer-feature-description {
    white-space: pre-line;
}

.offer-feature .offer-feature-button {
    color: teal;
    cursor: pointer;
    transition: 0.4s opacity;
}

.offer-feature .offer-feature-button:hover {
    opacity: 0.5;
}
.board-column-maximized {}

.board-column-maximized .board-column-offset {
    background-color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 8px;
    width: 270px;
}

.board-column .board-column-button {
    cursor: pointer;
    transition: 0.4s opacity;
}

.board-column .board-column-button:hover {
    opacity: 0.5;
}

.board-maximized .board-column-maximized .board-task-list .board-task-list-content {
    transition: 0.4s outline, 0.4s padding;
}

.board-maximized[dragging="true"] .board-column-maximized .board-task-list .board-task-list-content {
    outline: 1px dashed crimson;
    padding-bottom: 32px;
}

.board-maximized[dragging="true"] .board-column-maximized .board-task-list .board-task-list-content[droppable="true"] {
    outline: 1px dashed royalblue;
}

/* Attachment */

.board-column-attachment {}

.board-column-attachment .board-column-offset {
    background-color: #ffffff;
    color: #44566c;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.board-column-attachment .board-column-footer {
    background-color: #f8fafb;
    color: #44566c;
    border-top-left-radius: 8px;
    display: flex;
    position: absolute;
    right: 0px;
    bottom: 0px;
    transition: 0.4s opacity;
}

.board-column-attachment:not(:hover) .board-column-footer {
    opacity: 0;
}

.board-column-attachment .board-column-description {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: pre-line;
}
.checklist-task-minimized {}

.checklist-task-minimized .checklist-task-offset {
    background-color: #f8fafb;
    color: #44566c;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.checklist-task-minimized .checklist-task-offset .checklist-task-icon {
    position: relative;
    align-self: stretch;
}

.checklist-task-minimized .checklist-task-offset .checklist-task-content {
    position: relative;
}

.checklist-task-minimized .checklist-task-offset .checklist-task-footer {
    background-color: #ffffff;
    color: #44566c;
    border-top-left-radius: 8px;
    display: flex;
    position: absolute;
    right: 0px;
    bottom: 0px;
    transition: 0.4s opacity;
}

.checklist-task-minimized:not(:hover) .checklist-task-offset .checklist-task-footer {
    opacity: 0;
}

.checklist-task-minimized .checklist-task-offset .checklist-task-description {
    white-space: pre-line;
}

.checklist-task .checklist-task-icon::before {
    content: 'radio_button_unchecked';
}

.checklist-task[is-done="true"] .checklist-task-icon::before {
    content: 'task_alt';
}

.checklist-task[is-done="true"] .checklist-task-icon {
    color: rgb(167, 50, 50);
}

.checklist-task[is-done="true"] .checklist-task-name {
    text-decoration: line-through;
}

.checklist-task[is-done="true"] .checklist-task-description {
    text-decoration: line-through;
}

.checklist-task .checklist-task-button {
    cursor: pointer;
    transition: 0.4s opacity;
}

.checklist-task .checklist-task-button:hover {
    opacity: 0.5;
}
.error-page {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.error-page .error-page-content {
    text-align: center;
}
.guest-view {
    display: block;
    width: 100%;
    height: 100%;
}

.guest-view .guest-view-content {
    display: block;
    width: 100%;
    height: 100%;
}