:root {
    --primary-color-lcs: #6F5BC2;
    --primary-background-lcs: #3A278C;
    --primary-color-darker-lcs: #3A278C;
    --primary-color-light-lcs: #F5F8FF;
    --primary2-color-lcs: #AF52DE;
    --primary2-background-lcs: #8A2FC0;
    --primary2-color-darker-lcs: #8A2FC0;
    --primary2-color-light-lcs: #F5F8FF;
    --neutral-grey: #464555;
    --neutral-grey: #464555;
    --neutral-light-grey-lcs: #89939E;
    --danger-color-lcs: #F0857D;
    --light-blue-grey-lcs: #ABB8D1;
    --primary-sky-lcs: #E1E9FF;
    --azure-lcs: #8481F6;
    --black-lcs: #100F22;
    --sky-lcs: #E1E9FF;
    --light-grey-lcs: #F5F7FA;
}

.btn {
    border-radius: 7px;
    font-size: 15px;
    padding-top: 10px;
    padding-bottom: 8px;
}

.btn-primary {
    color: #fff;
    background: var(--primary-color-lcs);
    border-color: var(--primary-color-lcs);
    /*font-weight: 600;*/
    font-size: 15px;
}

.btn-primary:hover {
    background: var(--primary-color-darker-lcs);
    border-color: var(--primary-color-darker-lcs);
    color: #fff;
}

.btn-primary:focus,
.btn-primary.focus {
    color: #fff;
    background: var(--primary-color-darker-lcs);
    border-color: var(--primary-color-darker-lcs);
    box-shadow: 0 0 0 0.2rem rgba(217, 45, 123, 0.2);
}

.btn-primary.disabled,
.btn-primary:disabled {
    color: #fff;
    background-color: var(--primary-color-lcs);
    border-color: var(--primary-color-lcs);
    opacity: 0.5;
}

.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active {
    color: #fff;
    background-color: var(--primary-color-lcs);
    border-color: var(--primary-color-lcs);
    box-shadow: 0 0 0 0.2rem rgba(217, 45, 123, 0.2);
}

.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn-primary:not(:disabled):not(.disabled).active:focus {
    box-shadow: 0 0 0 0.2rem rgba(217, 45, 123, 0.2);
    border-color: var(--primary-color-lcs);
    background-color: var(--primary-color-lcs);
}

.btn-primary2 {
    color: #fff;
    background: var(--primary2-color-lcs);
    border-color: var(--primary2-color-lcs);
    /*font-weight: 600;*/
    font-size: 15px;
}

.btn-primary2:hover {
    background: var(--primary2-color-darker-lcs);
    border-color: var(--primary2-color-darker-lcs);
    color: #fff;
}

.btn-primary2:focus,
.btn-primary2.focus {
    color: #fff;
    background: var(--primary2-color-darker-lcs);
    border-color: var(--primary2-color-darker-lcs);
    box-shadow: 0 0 0 0.2rem rgba(217, 45, 123, 0.2);
}

.btn-primary2.disabled,
.btn-primary2:disabled {
    color: #fff;
    background-color: var(--primary2-color-lcs);
    border-color: var(--primary2-color-lcs);
    opacity: 0.5;
}

.btn-primary2:not(:disabled):not(.disabled):active,
.btn-primary2:not(:disabled):not(.disabled).active {
    color: #fff;
    background-color: var(--primary2-color-lcs);
    border-color: var(--primary2-color-lcs);
    box-shadow: 0 0 0 0.2rem rgba(217, 45, 123, 0.2);
}

.btn-primary2:not(:disabled):not(.disabled):active:focus,
.btn-primary2:not(:disabled):not(.disabled).active:focus {
    box-shadow: 0 0 0 0.2rem rgba(217, 45, 123, 0.2);
    border-color: var(--primary2-color-lcs);
    background-color: var(--primary2-color-lcs);
}

/*btn default */
.btn-default {
    color: #fff;
    background: var(--primary-color-lcs);
    border-color: var(--primary-color-lcs);
    font-size: 15px;
}

.btn-default:hover {
    background: var(--primary-color-darker-lcs);
    border-color: var(--primary-color-darker-lcs);
    color: #fff;
}

.btn-default:focus,
.btn-default.focus {
    color: #fff;
    background: var(--primary-color-darker-lcs);
    border-color: var(--primary-color-darker-lcs);
    box-shadow: 0 0 0 0.2rem rgba(217, 45, 123, 0.2);
}

.btn-default.disabled,
.btn-default:disabled {
    color: #fff;
    background-color: var(--primary-color-lcs);
    border-color: var(--primary-color-lcs);
    opacity: 0.5;
}

.btn-default:not(:disabled):not(.disabled):active,
.btn-default:not(:disabled):not(.disabled).active {
    color: #fff;
    background-color: var(--primary-color-lcs);
    border-color: var(--primary-color-lcs);
    box-shadow: 0 0 0 0.2rem rgba(217, 45, 123, 0.2);
}

.btn-default:not(:disabled):not(.disabled):active:focus,
.btn-default:not(:disabled):not(.disabled).active:focus {
    box-shadow: 0 0 0 0.2rem rgba(217, 45, 123, 0.2);
    border-color: var(--primary-color-lcs);
    background-color: var(--primary-color-lcs);
}

/*end btn default*/
.btn-primary i {
    /*background: #b41c60;
          padding: 5px;
          border-radius: 50%;*/
}

.btn-outline-primary, .btn-secondary {
    color: var(--primary-color-lcs) !important;
    border-color: var(--primary-color-lcs) !important;
    font-weight: 400 !important;
    background: white !important;
}

.btn-outline-primary:hover, .btn-secondary:hover {
    background: var(--primary-color-light-lcs);
    border-color: var(--primary-color-lcs);
    color: var(--primary-color-lcs);
}

.btn-outline-primary:focus,
.btn-outline-primary.focus,
.btn-secondary:focus
{
    background: var(--primary-color-light-lcs);
    border-color: var(--sky-lcs);
    color: var(--primary-color-lcs);
    box-shadow: 0 0 0 0.2rem rgba(217, 45, 123, 0.2);
}

.btn-outline-primary.disabled,
.btn-outline-primary:disabled,
btn-secondary:disabled

{
    color: #fff;
    background-color: var(--primary-color-lcs);
    border-color: var(--primary-color-lcs);
    opacity: 0.5;
}

.btn-outline-primary:not(:disabled):not(.disabled):active,
.btn-outline-primary:not(:disabled):not(.disabled).active {
    color: #fff;
    background-color: var(--primary-color-lcs);
    border-color: var(--primary-color-lcs);
    box-shadow: 0 0 0 0.2rem rgba(217, 45, 123, 0.2);
}

.btn-outline-primary:not(:disabled):not(.disabled):active:focus,
.btn-outline-primary:not(:disabled):not(.disabled).active:focus {
    box-shadow: 0 0 0 0.2rem rgba(217, 45, 123, 0.2);
    border-color: var(--primary-color-lcs);
    background-color: var(--primary-color-lcs);
}

.btn-outline-primary2, .btn-secondary2 {
    color: var(--primary2-color-lcs) !important;
    border-color: var(--primary2-color-lcs) !important;
    font-weight: 400 !important;
    background: white !important;
}

.btn-outline-primary2:hover, .btn-secondary2:hover {
    background: var(--primary-color-light-lcs);
    border-color: var(--primary-color-lcs);
    color: var(--primary-color-lcs);
}

.btn-outline-primary2:focus,
.btn-outline-primary2.focus,
.btn-secondary2:focus
{
    background: var(--primary2-color-light-lcs);
    border-color: var(--sky-lcs);
    color: var(--primary2-color-lcs);
    box-shadow: 0 0 0 0.2rem rgba(217, 45, 123, 0.2);
}

.btn-outline-primary2.disabled,
.btn-outline-primary2:disabled,
btn-secondary2:disabled

{
    color: #fff;
    background-color: var(--primary2-color-lcs);
    border-color: var(--primary2-color-lcs);
    opacity: 0.5;
}

.btn-outline-primary2:not(:disabled):not(.disabled):active,
.btn-outline-primary2:not(:disabled):not(.disabled).active {
    color: #fff;
    background-color: var(--primary2-color-lcs);
    border-color: var(--primary2-color-lcs);
    box-shadow: 0 0 0 0.2rem rgba(217, 45, 123, 0.2);
}

.btn-outline-primary2:not(:disabled):not(.disabled):active:focus,
.btn-outline-primary2:not(:disabled):not(.disabled).active:focus {
    box-shadow: 0 0 0 0.2rem rgba(217, 45, 123, 0.2);
    border-color: var(--primary2-color-lcs);
    background-color: var(--primary2-color-lcs);
}

.show > .btn-primary.dropdown-toggle {
    color: #fff;
    background-color: var(--primary-color-lcs);
    box-shadow: 0 0 0 0.2rem rgba(217, 45, 123, 0.2);
}

.show > .btn-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(217, 45, 123, 0.2);
}

.btn-secondary {
    color: #fff;
    background: #32324e;
    border-color: #32324e;
    font-weight: 600;
}

.btn-secondary:hover {
    background: #242438;
    border-color: #242438;
    color: #fff;
}

.btn-secondary:focus,
.btn-secondary.focus {
    color: #fff;
    background: #242438;
    border-color: #242438;
    box-shadow: 0 0 0 0.2rem rgba(50, 50, 78, 0.2);
}

.btn-secondary.disabled,
.btn-secondary:disabled {
    color: #fff;
    background-color: #32324e;
    border-color: #32324e;
    opacity: 0.5;
}

.btn-secondary:not(:disabled):not(.disabled):active,
.btn-secondary:not(:disabled):not(.disabled).active {
    color: #fff;
    background-color: #32324e;
    border-color: #32324e;
    box-shadow: 0 0 0 0.2rem rgba(50, 50, 78, 0.2);
}

.btn-secondary:not(:disabled):not(.disabled):active:focus,
.btn-secondary:not(:disabled):not(.disabled).active:focus {
    box-shadow: 0 0 0 0.2rem rgba(50, 50, 78, 0.2);
    border-color: #32324e;
    background-color: #32324e;
}

.show > .btn-secondary.dropdown-toggle {
    color: #fff;
    background-color: #32324e;
    box-shadow: 0 0 0 0.2rem rgba(50, 50, 78, 0.2);
}

.show > .btn-secondary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(50, 50, 78, 0.2);
}

.badge {
    display: inline-block;
    border-radius: 10px;
    padding: 3px 10px;
}

.badge-info {
    background-color: #6c7ead;
}

.tab-content {
    box-shadow: 0 10px 20px rgba(20, 37, 80, 0.1);
    z-index: 34;
    position: relative;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border-radius: 10px;
    background: #fff;
}

.tab-pane {
    padding: 20px;
}

.nav-tabs {
    border: 0;
}

.nav-tabs .nav-item:first-child {
    margin-left: 5px;
}

.nav-tabs .nav-item .nav-link {
    border: 0;
    color: var(--primary-background-lcs);
    margin-left: 8px;
    color: var(--primary-color-lcs);
}

.nav-tabs .nav-item .nav-link.active {
    box-shadow: 0 0px 20px rgba(20, 37, 80, 0.1);
    background: var(--primary-color-lcs);
    color: #fff;
    font-weight: 600;
}

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

body {
    display: grid !important;
    background: #fefefe;
    padding-top: 100px;
    font-size: 14px;
    color: #464555;
    width: 100%;
    height: 100%;
    font-family: 'Inter', sans-serif;
}
*{
    font-family: 'Inter', sans-serif ;
}
body.body-auth {
    padding-top: 0;
}

a {
    color: inherit;
    text-decoration: inherit;
}

a:hover {
    color: inherit;
    text-decoration: inherit;
}

.btn-xs {
    padding: 0.175rem 0.35rem;
    font-size: 0.7rem;
}

.btn-sm {
    padding: 0.175rem 0.35rem;
    font-size: 0.8rem;
}

header {
    background: var(--primary-background-lcs);
    color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    z-index: 100;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
}

header .logo {
    flex-basis: 200px;
    max-height: 50px;
    max-width: 300px;
    display: flex;
    align-content: center;
    justify-content: center;
    padding: 0 26px;
}

header .logo img {
    width: 200px;
    display: block;
}

header .investment {
    flex: 1;
    padding-left: 50px;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

header .investment .investment-edit {
    margin-left: 20px;
}

header .investment .investment-label {
    padding-left: 10px;
}

header .investment .investment-label .investment-name {
    font-weight: 600;
    font-size: 1.3em;
    line-height: 1.1em;
}

header .investment .investment-label .investment-city {
    color: #c8d3e5;
}

header .header-navigation {
    flex: 1;
    text-align: right;
    padding-right: 26px;
}

footer {
    background: var(--primary-background-lcs);
    color: #c8d3e5;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7em;
    z-index: 5000;
}

.modal .close {
    color: #fff;
}

.modal-header {
    background: var(--primary-background-lcs);
    color: #fff;
}

.modal-footer {
    background: #e7eefb;
}

.modal-content {
    border: 0;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
    border-radius: 10px;
}

.modal-backdrop.show {
    opacity: 0.6;
}

section.auth {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    padding-bottom: 50px;
}

section.auth .container {
    max-width: 500px;
}

section.auth .logocms {
    margin-bottom: 20px;
    text-align: center;
}

section.auth .logocms img {
    max-height: 300px;
    max-width: 300px;
    display: inline-block;
}

.panel-main {
    display: flex;
    min-height: calc(100% - 30px);
    margin-bottom: 30px;
    width: calc(100vw - 30px);
}

.panel-main .panel-navigation {
    width: 240px;
    background: #fafafa;
    box-shadow: 0 0 20px #ddd;
    flex-shrink: 0;
    display: none;
}

@media (max-width: 768px) {
    .panel-main .panel-navigation {
        display: nonex;
        position: absolute;
        top: 50px;
        left: 0;
        width: 100%;
        z-index: 99;
        border-bottom: 10px solid #666;
    }
}

.panel-main .panel-navigation nav {
    color: #333;
}

.panel-main .panel-navigation nav .nav-title {
    padding: calc(10px / 2);
    font-size: 0.8em;
    text-align: center;
    font-weight: 600;
    background: #666;
    color: #fff;
}

.panel-main .panel-navigation nav > ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.panel-main .panel-navigation nav > ul i.fa {
    width: 20px;
    margin-right: 5px;
    text-align: center;
}

.panel-main .panel-navigation nav > ul > li {
    border-top: 1px solid #ddd;
    margin: 0;
    padding: 10px;
    cursor: pointer;
    font-weight: 600;
}

.panel-main .panel-navigation nav > ul > li:hover,
.panel-main .panel-navigation nav > ul > li.active {
    background: #007bff;
    color: #fff;
}

.panel-main .panel-navigation nav > ul > li > a {
    display: block;
    padding: 10px;
    margin: -10px;
    color: inherit;
}

.panel-main .panel-navigation nav > ul > li > a:hover {
    text-decoration: none;
}

.panel-main .panel-navigation nav > ul > li > ul {
    margin: 10px -10px -10px -10px;
    padding: 0;
    background: #fafafa;
    display: none;
}

.panel-main .panel-navigation nav > ul > li > ul > li {
    margin: 0;
    padding: 10px 20px 10px 40px;
    border-top: 1px solid #eee;
    font-weight: 400;
    color: #444;
}

.panel-main .panel-navigation nav > ul > li > ul > li:hover,
.panel-main .panel-navigation nav > ul > li > ul > li.active {
    background: rgba(0, 123, 255, 0.2);
}

.panel-main .panel-navigation nav > ul > li > ul > li > a {
    display: block;
    padding: 10px;
    margin: -10px;
    color: inherit;
}

.panel-main .panel-navigation nav > ul > li > ul > li > a:hover {
    text-decoration: none;
}

.panel-main .panel-navigation nav > ul > li.active > ul {
    display: block;
}

.panel-main .panel-content {
    flex: 1;
    padding: 20px;
    max-width: 100%;
}

.panel-title {
    font-size: 2em;
    font-weight: 600;
    margin-bottom: 20px;
}

.panel {
    background: #fff;
    background: #fbfcfe;
    border-radius: 20px;
    box-shadow: 0 0 40px rgba(20, 37, 80, 0.2);
    margin-bottom: 20px;
}

.panel .panel-body {
    padding: 20px;
}

.panel .panel-body.table {
    padding: 20px 0;
}

.panel .panel-header {
    background: var(--primary-background-lcs);
    color: #fff;
    padding: 10px 16px;
    font-weight: 600;
    font-size: 18px !important;
    border-radius: 12px;
}
.panel .panel-header .row,
.panel .panel-header > div{
    align-items: center;
}
.panel-header.bg-white {
    background: white !important;
    color: var(--black-lcs) !important;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.panel .panel-header i {
    margin-right: 10px;
}

.panel .panel-header small {
    /*color: var(--primary-color-lcs);*/
    font-size: 0.9em;
}

.panel .panel-header2 {
    background: var(--azure-lcs);
    color: white;
    padding: 10px 16px;
    font-weight: 600;
    font-size: 1.3em;
    border-radius: 12px;
}

.panel .panel-header2 i {
    margin-right: 10px;
}

.panel .panel-header2 small {
    color: white;
    font-size: 0.9em;
}

.panel .panel-footer {
    border-top: 2px solid #c8d3e5;
    padding: 20px;
}

.panel-buttons {
    margin-bottom: 20px;
}

.no-padding {
    padding: 0 !important;
}

table.table {
    background: #ffffff;
    border-radius: 10px;
    color: inherit;
}

table.table thead th,
table.table thead td {
    padding: 10px;
}

table.table tbody th,
table.table tbody td {
    padding: 10px;
}

table.table tbody th.no,
table.table tbody td.no {
    width: 10px;
}

table.table tbody th.thumb,
table.table tbody td.thumb {
    width: 100px;
    background: url(../admin/image/transparent.png);
}

table.table tbody th.thumb img,
table.table tbody td.thumb img {
    max-height: 50px;
    max-width: 100px;
}

table.table tbody th.filetype,
table.table tbody td.filetype {
    width: 50px;
    font-size: 20px;
    opacity: 0.5;
}

table.table tbody th.actions,
table.table tbody td.actions {
    white-space: nowrap;
    min-width: 200px;
    text-align: right;
}

table.table tbody th.actions .btn,
table.table tbody td.actions .btn {
    margin: 0 5px 5px 0;
}

table.table tbody th.color,
table.table tbody td.color {
    width: 55px;
}

table.table tbody th.color div,
table.table tbody td.color div {
    width: 16px;
    height: 16px;
}

.dataTable thead tr th, .table thead th {
    border: 0;
    background-color: #e7eefb;
    color: var(--primary-background-lcs);
    font-weight: 400;
}
.dataTable tbody tr td {
    border: 0;
}

.dataTable tbody tr:nth-child(even) td {
    background-color: #fbfcfe;
}

.dataTable tbody tr:nth-child(odd) td {
    background-color: #fff;
}

.table-full {
    width: 100%;
}

.table-sortable tr td {
    cursor: move;
}

.admin-image-preview {
    background: linear-gradient(45deg, #fff, #eee, #fff);
    display: flex;
    width: 100%;
    height: 100%;
    border: 1px solid #eee;
    align-items: center;
    justify-content: center;
}

.admin-image-preview img {
    max-width: 90%;
    max-height: 90%;
}

.form-control {
    font-size: 1em;
    height: 40px;
}

.select2-container--default .select2-selection.select2-selection--single {
    height: 40px !important;
}

.select2-container--default .select2-selection.select2-selection--multiple {
    height: 40px !important;
    border: 1px solid #e9ecef !important;
    border-radius: 0.25rem !important;
    padding: 8px !important;
}
.select2-selection.select2-selection--multiple .select2-selection__rendered {
    padding-left: 0px;
}
.select2-selection__choice {
    margin: 0 6px 0 0 !important;
}

.language-menu .select2-container--default .select2-selection--single .select2-selection__arrow b {
    margin-top: -2px;
}

.form-group.form-group-error .form-control {
    border-color: #dc3545;
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23dc3545' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E");
    background-repeat: no-repeat;
    background-position: center right calc(0.375em + 0.1875rem);
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.form-group.form-group-error .formelement-error {
    color: #dc3545;
}

.filter-panel {
    border: 1px solid var(--primary-color-lcs);
    background: #fcfcfc;
    margin-bottom: 20px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.filter-panel .filter-panel-switch {
    padding: 10px;
    background: var(--primary-color-lcs);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.filter-panel .filter-panel-body {
    display: flex;
    flex-wrap: wrap;
    display: none;
    padding: 10px;
    background: rgba(217, 45, 123, 0.2);
}

.filter-panel .fa-arrow-alt-circle-down {
    display: inline-block;
}

.filter-panel .fa-arrow-alt-circle-up {
    display: none;
}

.filter-panel.active .filter-panel-body {
    display: flex;
}

.filter-panel.active .fa-arrow-alt-circle-down {
    display: none;
}

.filter-panel.active .fa-arrow-alt-circle-up {
    display: inline-block;
}

.filter-panel .filter-panel-item {
    flex-basis: 20%;
    margin: 10px;
}

.filter-panel .filter-panel-item .label {
    padding: 3px;
}

.filter-panel .filter-panel-item input,
.filter-panel .filter-panel-item select {
    width: 100%;
    box-sizing: border-box;
    padding: 5px;
    border: 1px solid #aaa;
    border-radius: 5px;
}

.filter-panel .filter-panel-submit {
    flex-basis: 100%;
    padding: 10px;
}

.investment-modal-index {
    max-height: 50vh;
    overflow: hidden;
    overflow-y: auto;
}

.investment-modal-index .item,
.investment-first-login .item {
    cursor: pointer;
    margin: 15px 10px;
    padding: 10px;
    text-align: center;
    border: 1px solid #e7eefb;
    background: #fff;
    border-radius: 10px;
}

.investment-modal-index .item:hover,
.investment-first-login .item:hover {
    border-color: var(--primary-background-lcs);
    box-shadow: 0 0 10px rgba(20, 37, 80, 0.2);
}

.investment-modal-index .item .logo,
.investment-first-login .item .logo {
    height: 50px;
    margin-bottom: 10px;
}

.investment-modal-index .item .logo img,
.investment-first-login .item .logo img {
    display: inline-block;
    max-width: 80%;
    max-height: 100%;
}

.investment-modal-index .item .title,
.investment-first-login .item .title {
    font-weight: 600;
    font-size: 1.3em;
    margin-bottom: 5px;
}

.investment-plan .floor-index {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #c8d3e5;
}

.shop-summary {
    background: linear-gradient(0deg, #22335d, var(--primary-background-lcs));
}

.shop-summary div[class^="col-"]:first-child .item {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.shop-summary div[class^="col-"]:last-child .item {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.shop-summary .item {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding: 10px;
    text-align: center;
}

.shop-summary .item .label {
    margin-bottom: 5px;
}

.shop-summary .item .row {
    margin-top: 10px;
}

.shop-summary .item .row .label {
    margin-bottom: 0;
}

.shop-summary .item .row:first-child {
    margin-top: 0;
}

.shop-summary .label {
    color: #c8d3e5;
    font-size: 0.9em;
}

.shop-summary .value {
    font-weight: 400;
    font-size: 1.3em;
    color: #7eff00;
}

.shop-summary .subvalue {
    font-weight: 400;
    font-size: 1em;
    color: #7eff00;
    opacity: 0.5;
}

.shop-index .logotype {
    max-width: 100px;
    max-height: 50px;
    display: inline-block;
    margin-bottom: 3px;
}

.profile .profile-avatar img {
    margin: 0 auto;
    padding: 3px;
    border-radius: 50%;
}

.profile .profile-user-name {
    font-weight: 500;
    line-height: 1.1;
    color: inherit;
    margin: 5px 0 10px;
    font-size: 21px;
}

.profile .profile-investor-name {
    margin: 0 0 10px;
    color: #777;
}

.select2-container--default .select2-selection.select2-selection--single {
    height: calc(1.5em + 0.75rem + 2px);
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    overflow: hidden;
}

.select2-container--default .select2-selection.select2-selection--single .select2-selection__rendered {
    color: #495057;
    font-size: 1em;
    font-weight: 400;
    line-height: 1.5;
    margin-top: 0;
}

.select2-container--default .select2-selection.select2-selection--single .select2-selection__placeholder {
    color: #6c757d;
}

.select2-container--default .select2-selection.select2-selection--single .select2-selection__arrow {
    height: 100%;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection.select2-selection--single {
    /*&:hover {
                          .select2-selection__rendered {
                              background: @primary;
                              color: #fff;
                          }
                          .select2-selection__arrow{
                              b{
                                  border-color: transparent transparent #fff transparent;
                              }
                          }
                      }*/
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.select2-container--default.select2-container--open.select2-container--above .select2-selection.select2-selection--single {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.select2-container--default.select2-container--open .select2-dropdown {
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    overflow: hidden;
}

.select2-container--default.select2-container--open .select2-dropdown.select2-dropdown--below {
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.select2-container--default.select2-container--open .select2-dropdown.select2-dropdown--above {
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.select2-container--default.select2-container--open .select2-dropdown .select2-search .select2-search__field {
    display: block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1em;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.select2-container--default.select2-container--open .select2-dropdown .select2-results > .select2-results__options .select2-results__option[role="group"] strong {
    padding: 0.375rem 20px 0.375rem 0.75rem;
    font-size: 1em;
    line-height: 1.5;
    color: #495057;
}

.select2-container--default.select2-container--open .select2-dropdown .select2-results > .select2-results__options .select2-results__option[role="group"]:hover strong {
    color: var(--primary-color-lcs);
}

.select2-container--default.select2-container--open .select2-dropdown .select2-results > .select2-results__options .select2-results__option[role="group"]:hover strong:hover {
    color: #495057;
}

.select2-container--default.select2-container--open .select2-dropdown .select2-results > .select2-results__options .select2-results__option[role="option"] {
    padding: 0.375rem 20px 0.375rem 0.75rem;
    font-size: 1em;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
}

.select2-container--default.select2-container--open .select2-dropdown .select2-results > .select2-results__options .select2-results__option[role="option"].select2-results__option--highlighted {
    background: inherit;
}

.select2-container--default.select2-container--open .select2-dropdown .select2-results > .select2-results__options .select2-results__option[role="option"][aria-selected="true"] {
    background: rgba(217, 45, 123, 0.75);
    color: #fff;
}

.select2-container--default.select2-container--open .select2-dropdown .select2-results > .select2-results__options .select2-results__option[role="option"]:hover {
    background: var(--primary-color-lcs);
    color: #fff;
}

.input-group > .select2-container:not(:last-child) .select2-selection--single {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.input-group > .select2-container:not(:nth-child(2)) .select2-selection--single {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.input-group > label {
    display: block;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    font-size: 1em;
    position: relative;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 1%;
    margin-bottom: 0;
}

.input-group > label:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.input-group > label:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.investment-plan .tab-pane[id^="floor-"] svg,
.floor-preview svg {
    width: 100%;
    height: auto;
}

.mapplic-clickable:hover {
    stroke: var(--black-lcs);
    opacity: 0.75;
    cursor: pointer;
}

.mapplic-clickable.shop-stand-forbidden {
    stroke: var(--black-lcs);
    stroke-width: 2px;
    stroke-dasharray: 5;
}

.tooltip-investment-plan.show {
    opacity: 1;
}

.tooltip-investment-plan .tooltip-inner {
    max-width: 350px;
    width: 350px;
    color: #000000;
    background-color: #ffffff;
    border: 1px solid #000000;
}

.tooltip-investment-plan.bs-tooltip-top .arrow:before {
    border-top-color: #000000;
}

.tooltip-investment-plan.bs-tooltip-right .arrow:before {
    border-right-color: #000000;
}

.tooltip-investment-plan.bs-tooltip-bottom .arrow:before {
    border-bottom-color: #000000;
}

.tooltip-investment-plan.bs-tooltip-left .arrow:before {
    border-left-color: #000000;
}

.tooltip-investment-plan img {
    max-width: 100px;
    max-height: 50px;
}

.tooltip-investment-plan .tooltip-body {
    padding: 20px 0;
}

.tooltip-investment-plan .tooltip-body .logo {
    margin-bottom: 10px;
}

.tooltip-investment-plan .tooltip-body .shop-name {
    font-size: 20px;
    font-weight: 600;
}

.tooltip-investment-plan .tooltip-body .brand-category {
    font-style: normal;
    font-size: 12px;
    color: #aaa;
    margin-bottom: 20px;
}

.tooltip-investment-plan .tooltip-body .shop-number span {
    font-weight: 600;
    padding: 5px 10px;
    display: inline-block;
    border: 1px solid #c8d3e5;
    background: #c8d3e5;
    border-radius: 5px;
}

.tooltip-investment-plan .tooltip-body .shop-area span {
    font-weight: 600;
    padding: 5px 10px;
    display: inline-block;
    border: 1px solid #c8d3e5;
    border-radius: 5px;
}

.floor-preview .mapplic-clickable.available {
    fill: #326420;
}

.floor-preview .mapplic-clickable.available.shop-temporary {
    fill: rgba(50, 100, 32, 0.25);
}

.floor-preview .mapplic-clickable.available.chosen {
    fill: rgba(50, 100, 32, 0.5);
}

.floor-preview .mapplic-clickable.unavailable {
    fill: #7a242a;
}

.floor-preview .mapplic-clickable.unavailable.shop-temporary {
    fill: rgba(122, 36, 42, 0.25);
}

.floor-preview .mapplic-clickable.unavailable.chosen {
    fill: rgba(122, 36, 42, 0.5);
}

.floor-preview .mapplic-clickable.edit {
    fill: #ddff00;
}

.floor-preview .mapplic-clickable.edit.shop-temporary {
    fill: rgba(221, 255, 0, 0.25);
}

.floor-preview .mapplic-clickable.edit.chosen {
    fill: rgba(221, 255, 0, 0.5);
}

.floor-preview .mapplic-clickable.chosen {
    stroke: var(--black-lcs);
}

.floor-preview-legend {
    list-style: none;
    padding: 0;
    display: flex;
    margin: 0 -15px -15px;
    flex-wrap: wrap;
}

.floor-preview-legend li {
    display: flex;
    padding: 0 15px 15px;
    align-items: center;
}

.floor-preview-legend li i {
    display: inline-block;
    width: 15px;
    height: 15px;
    margin-right: 5px;
    border-radius: 3px;
    border: 1px solid #333;
}

.floor-preview-legend li i.available {
    background: #326420;
}

.floor-preview-legend li i.unavailable {
    background: #7a242a;
}

.floor-preview-legend li i.edit {
    background: #ddff00;
}

.floor-preview-legend li i.chosen {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.5) 0%, rgba(255, 0, 0, 0.5) 33.3333%, rgba(0, 128, 0, 0.5) 33.3333%, rgba(0, 128, 0, 0.5) 66.6666%, rgba(0, 0, 255, 0.5) 66.6666%, rgba(0, 0, 255, 0.5) 100%);
    border: 1px solid var(--black-lcs);
}

.floor-preview-legend li.shop-stand-forbidden i {
    border: 2px dashed var(--black-lcs);
}

.btn-danger {
    background: var(--danger-color-lcs);
    border: var(--danger-color-lcs);
}
.btn:disabled, .btn.disabled {
    background: var(--primary-color-light-lcs);
    border: 1px solid var(--primary-color-light-lcs) !important;
    color: var(--light-blue-grey-lcs) !important;
    opacity: 1 !important;
}
.timeline {
    position: relative;
    list-style: none;
    margin: 15px 0 0 0;
    padding: 0 15px 15px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #c8d3e5;
    left: 31px;
    margin: 0;
}

.timeline > li {
    position: relative;
    margin-right: 10px;
    margin-bottom: 15px;
}

.timeline > li::before {
    content: " ";
    display: block;
    position: absolute;
    top: 10px;
    left: 10px;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    background: #fff;
    border: 1px solid #c8d3e5;
}

.timeline > li.time-label {
    font-weight: 600;
    padding: 5px;
    display: inline-block;
    background-color: #c8d3e5;
    color: var(--primary-background-lcs);
    border-radius: 4px;
}

.timeline > li.time-label::before {
    display: none;
}

.timeline > li .timeline-item {
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    margin-top: 0;
    background: #fff;
    color: #444;
    margin-left: 60px;
    margin-right: 15px;
    padding: 0;
    position: relative;
}

.timeline > li .timeline-item > .time {
    color: #999;
    float: right;
    padding: 10px;
    font-size: 12px;
}

.timeline > li .timeline-item > .timeline-header {
    margin: 0;
    color: #555;
    border-bottom: 2px solid #f4f4f4;
    padding: 10px;
    font-size: 16px;
    line-height: 1.1;
    color: var(--primary-background-lcs);
    font-weight: 600;
}

.timeline > li .timeline-item > .timeline-body,
.timeline > li .timeline-item > .timeline-footer {
    padding: 10px;
}

.timeline > li .timeline-item > .timeline-body .logotype,
.timeline > li .timeline-item > .timeline-footer .logotype {
    margin: 10px 0;
}

.timeline > li .timeline-item > .timeline-body .logotype img,
.timeline > li .timeline-item > .timeline-footer .logotype img {
    max-width: 100px;
    max-height: 50px;
}

.timeline > li:hover::before {
    background: #c8d3e5;
}

.shop-show label {
    opacity: 0.7;
}

.shop-show .shop-show-value {
    font-weight: 600;
    font-size: 1.2em;

}

.shop-show .shop-show-logo img {
    max-width: 150px;
    max-height: 100px;
}

.shop-show .nav-tabs {
    border: 0;
    text-align: center;
    justify-content: center;
}

.shop-show .nav-tabs .nav-item {
    display: inline-block;
    min-width: 23%;
}

.shop-show .nav-tabs .nav-item .nav-link {
    border: 0;
    background: #e7eefb;
    font-size: 1.2em;
    display: block;
    text-align: center;
    margin-left: 8px;
    color: var(--primary-background-lcs);
}

.shop-show .nav-tabs .nav-item .nav-link.active {
    box-shadow: 0 0px 20px rgba(20, 37, 80, 0.1);
    background: var(--primary-background-lcs);
    color: #fff;
    font-weight: 600;
}

.form-group.report-error {
    border: 1px solid red;
    padding: 5px;
    margin: -5px -5px calc(1rem - 5px);
}

svg.floor-svg {
    width: 100%;
    height: auto;
}

.contract-error-item {
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
}

.contract-error-item.danger {
    background: rgba(255, 56, 95, 0.2);
}

.contract-error-item.warning {
    background: rgba(255, 119, 56, 0.2);
}

.contract-error-item.info {
    background: rgba(255, 219, 35, 0.2);
}

.contract-error-item .contract-error-or {
    margin: 5px 0;
}

.contract-error-item .contract-error-and {
    border: 1px solid rgba(0, 0, 0, 0.3);
    padding: 3px 10px;
    display: inline-block;
    border-radius: 5px;
}

.condition-editor .contition-editor-header {
    font-weight: 600;
    margin-bottom: 10px;
}

.condition-editor #blockEditor {
    border: 1px solid #c8d3e5;
    padding: 10px;
    margin-bottom: 5px;
    border-radius: 5px;
}

.condition-editor #conditionEditor {
    margin-bottom: 5px;
    border-radius: 5px;
    border: 2px solid var(--primary-color-lcs);
    padding: 10px 10px 50px 10px;
    max-height: 30vh;
    overflow-y: auto;
}

.condition-editor #conditionEditor #saveCondition {
    position: sticky;
    top: 0;
}

.condition-editor #conditionEditor .condition-editor-row {
    margin: 4px 0 0 4px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.condition-editor #conditionEditor .condition-editor-row .badge {
    margin: 0 4px 4px 0;
}

.condition-editor #conditionEditor .condition-block {
    cursor: pointer;
    position: relative;
}

.condition-editor #conditionEditor .condition-block::before {
    margin-right: 5px;
    content: "\f00d";
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}

.condition-editor #conditions {
    border: 1px solid #eee;
    margin-bottom: 30px;
    max-height: 267px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.condition-editor #conditions .condition-row {
    padding: 5px;
    display: flex;
    align-items: flex-start;
    width: 100%;
    border-top: 1px dashed #eee;
    border-bottom: 1px dashed #eee;
}

.condition-editor #conditions .condition-row button.remove-condition {
    padding: 2px 5px;
    position: relative;
    top: 2px;
    margin-right: 10px;
}

.condition-editor #conditions .condition-row .badge {
    font-size: 1em;
    vertical-align: middle;
    display: inline-block;
}

.condition-editor #conditions .condition-row .btn-danger {
    position: sticky;
    top: 5px;
}

.condition-editor #conditions .condition-row:first-child {
    border-top: none;
}

.condition-editor #conditions .condition-row:last-child {
    border-bottom: none;
}

.condition-editor #conditions .condition-editor-row {
    margin: 5px 0 0 5px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.condition-editor #conditions .condition-editor-row .badge {
    margin: 0 5px 5px 0;
}

.condition-editor #conditions > span.badge {
    margin: 5px 5px 5px 33px;
}

.condition-editor .block-condition::before,
.shop-card-conditions .block-condition::before {
    content: ":";
    display: inline;
    margin: 0 5px;
}

.condition-editor .block-condition .block-condition-operator,
.shop-card-conditions .block-condition .block-condition-operator {
    margin: 0 2px;
}

.report-index .item {
    margin: 30px 0;
    text-align: center;
}

.report-index .item a {
    text-align: center;
    display: block;
    display: inline-block;
}

.report-index .item a i {
    font-size: 30px;
}

.report-index .item a span {
    display: block;
}

#shop-list_wrapper .row:first-child,
#shop-sales-list_wrapper .row:first-child {
    display: none;
    padding: 15px 20px;
}

#shop-list_wrapper .row:first-child label,
#shop-sales-list_wrapper .row:first-child label {
    margin: 0;
}

#shop-list_wrapper .row:first-child.active,
#shop-sales-list_wrapper .row:first-child.active {
    display: flex;
}

#shop-list_wrapper .row:last-child,
#shop-sales-list_wrapper .row:last-child {
    padding: 15px 20px;
}

table.dataTable {
    margin: 0 !important;
}

.fc-day-grid-event .fc-content {
    white-space: normal;
    border-radius: 10px;
    padding: 3px 10px;
    color: #fff;
    text-shadow: 0 0 2px #000;
}

.fc-scroller {
    height: auto !important;
}

.panel-calendar {
    position: relative;
}

.panel-calendar .panel-calendar-body {
    height: 500px;
    overflow-y: scroll;
}

#inne_terminy .inny-termin.hidden {
    display: none;
}

#inne_terminy .inny-termin .inny-termin-inputs {
    display: flex;
    flex-direction: column;
    position: relative;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 1%;
    margin-bottom: 0;
    border-collapse: collapse;
}

#inne_terminy .inny-termin .inny-termin-inputs .form-control {
    border-radius: 0;
    border-bottom: none;
}

#inne_terminy .inny-termin .inny-termin-inputs .form-control:last-child {
    border-bottom: 1px solid #ced4da;
}

#inne_terminy_od_planowanego_otwarcia_centrum .inny-termin.hidden {
    display: none;
}

#inne_terminy_od_planowanego_otwarcia_centrum .inny-termin .inny-termin-inputs {
    display: flex;
    flex-direction: column;
    position: relative;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 1%;
    margin-bottom: 0;
    border-collapse: collapse;
}

#inne_terminy_od_planowanego_otwarcia_centrum .inny-termin .inny-termin-inputs .form-control {
    border-radius: 0;
    border-bottom: none;
}

#inne_terminy_od_planowanego_otwarcia_centrum .inny-termin .inny-termin-inputs .form-control:last-child {
    border-bottom: 1px solid #ced4da;
}

#imageCropper #pagesList #pagesContainer {
    overflow-x: scroll;
    height: 260px;
    padding: 10px;
    white-space: nowrap;
}

#imageCropper #pagesList #pagesContainer img {
    display: inline;
    vertical-align: top;
    float: none;
    cursor: pointer;
}

#imageCropper #croppedImage {
    max-width: 100%;
}

#pagesContainer .page-item {
    display: inline-block;
    border: 1px solid #aaa;
    margin: 0 2px;
    text-align: center;
}

#pagesContainer .page-item img {
    display: block;
    margin: 0 0 5px 0;
}

#pagesContainer .page-item span {
    display: block;
    text-align: center;
    background: #aaa;
    color: #fff;
    font-size: 9px;
    font-weight: 600;
}

#pagesContainer .page-item:hover,
#pagesContainer .page-item.active {
    border-color: var(--primary-color-lcs);
}

#pagesContainer .page-item:hover span,
#pagesContainer .page-item.active span {
    background: var(--primary-color-lcs);
}

button.btn-shop-note-show {
    margin-left: 5px;
    border-radius: 10px;
    display: inline;
    border: 0;
    background: var(--primary-color-lcs);
    color: #fff;
    font-size: 15px;
    padding: 5px 7px;
}
.btn-shop-note-show svg, .btn-shop-segment svg{
    height: 19px;
    width: 19px;
}
button.btn-shop-note-show i {
    font-size: 0.8em;
}

#segmentsList td.segment-td {
    text-align: center;
}

#segmentsList img.segment-img {
    max-width: 200px;
    max-height: 100px;
}

button.shop-segment-count {
    margin-left: 5px;
    border-radius: 10px;
    display: inline;
    border: 0;
    background: var(--primary-color-lcs);
    color: #fff;
    font-size: 15px;
    padding: 5px 7px;
}

button.shop-segment-count i {
    font-size: 0.8em;
}

#SegmentModal .progress-loading {
    text-align: center;
}

.segment-show-index .item {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.tab-content-shop {
    background: transparent;
    box-shadow: none;
    border-top: 3px solid var(--primary-background-lcs);
    border-radius: 0;
}

.tab-content-shop .tab-pane {
    padding-left: 0;
    padding-right: 0;
}

.head1 {
    font-size: 1.5em;
    font-weight: 600;
    color: var(--primary-background-lcs);
    margin-bottom: 20px;
}

/*.switch{
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    *{
        &:extend(.switch);
    }
    [type="checkbox"]:not(:checked), [type="checkbox"]:checked {
        position: absolute;
        opacity: 0;
        pointer-events: none;
    }
    label{
        cursor: pointer;
        label{
            display: none;
        }
        input[type="checkbox"] {
            opacity: 0;
            width: 0;
            height: 0;
        }
        .form-check{
            display: inline;
        }
    }
    .lever {
        content: "";
        display: inline-block;
        position: relative;
        width: 36px;
        height: 14px;
        background-color: rgba(0,0,0,0.38);
        border-radius: 15px;
        margin-right: 10px;
        -webkit-transition: background 0.3s ease;
        transition: background 0.3s ease;
        vertical-align: middle;
        margin: 0 16px;
        &::before{
            content: "";
            position: absolute;
            display: inline-block;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            left: 0;
            top: -3px;
            -webkit-transition: left 0.3s ease, background .3s ease, -webkit-box-shadow 0.1s ease, -webkit-transform .1s ease;
            transition: left 0.3s ease, background .3s ease, -webkit-box-shadow 0.1s ease, -webkit-transform .1s ease;
            transition: left 0.3s ease, background .3s ease, box-shadow 0.1s ease, transform .1s ease;
            transition: left 0.3s ease, background .3s ease, box-shadow 0.1s ease, transform .1s ease, -webkit-box-shadow 0.1s ease, -webkit-transform .1s ease;
        }
        &::after{
            &:extend(.switch .lever::before);
        }
        &::before {
            background-color: rgba(38,166,154,0.15);
        }
    }
}
.switch label .lever::after {
    background-color: #F1F1F1;
    -webkit-box-shadow: 0px 3px 1px -2px rgba(0,0,0,0.2),0px 2px 2px 0px rgba(0,0,0,0.14),0px 1px 5px 0px rgba(0,0,0,0.12);
    box-shadow: 0px 3px 1px -2px rgba(0,0,0,0.2),0px 2px 2px 0px rgba(0,0,0,0.14),0px 1px 5px 0px rgba(0,0,0,0.12);
}
.switch label input[type="checkbox"]:checked + .lever::before, .switch label input[type="checkbox"]:checked + .lever::after {
    left: 18px;
}
.switch label input[type="checkbox"]:checked + .lever::after {
    background-color: #26a69a;
}
*/
.switch,
.switch * {
    -webkit-user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.switch label {
    cursor: pointer;
}

.switch label label {
    display: none;
}

.switch label label {
    display: none;
}

.switch input[type="radio"],
.switch input[type="checkbox"] {
    margin: 4px 0 0;
    margin-top: 1px \9;
    line-height: normal;
}

.switch [type="checkbox"]:not(:checked),
.switch [type="checkbox"]:checked {
    position: absolute;
    left: -9999px;
    opacity: 0;
}

.switch label input[type="checkbox"] {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch label .lever {
    content: "";
    display: inline-block;
    position: relative;
    width: 36px;
    height: 14px;
    background-color: #84c7c1;
    border-radius: 15px;
    margin-right: 10px;
    -webkit-transition: background 0.3s ease;
    transition: background 0.3s ease;
    vertical-align: middle;
    margin: 0 16px;
}

.switch label input[type="checkbox"]:checked + .lever {
    background-color: rgba(0, 0, 0, 0.38);
}

.switch label .lever::before,
.switch label .lever::after {
    content: "";
    position: absolute;
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    top: -3px;
    left: 18px;
    -webkit-transition: left 0.3s ease, background 0.3s ease, -webkit-box-shadow 0.1s ease, -webkit-transform 0.1s ease;
    transition: left 0.3s ease, background 0.3s ease, -webkit-box-shadow 0.1s ease, -webkit-transform 0.1s ease;
    transition: left 0.3s ease, background 0.3s ease, box-shadow 0.1s ease, transform 0.1s ease;
    transition: left 0.3s ease, background 0.3s ease, box-shadow 0.1s ease, transform 0.1s ease, -webkit-box-shadow 0.1s ease, -webkit-transform 0.1s ease;
}

.switch label .lever::before {
    background-color: rgba(38, 166, 154, 0.15);
}

.switch label .lever::after {
    background-color: #26a69a;
    -webkit-box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
    box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
}

.switch label input[type="checkbox"]:checked + .lever::before,
.switch label input[type="checkbox"]:checked + .lever::after {
    left: 0;
}

.switch label input[type="checkbox"]:checked + .lever::after {
    background-color: #F1F1F1;
}

label {
    font-size: 16px;
}

.chart-timeline .chart-timeline-body {
    padding: 10px 0;
    margin: 0 50px;
    position: relative;
}

.chart-timeline .chart-timeline-body .chart-timeline-label {
    text-align: right;
    border-radius: 2px;
    box-shadow: 0 0 5px rgba(20, 37, 80, 0.2);
    background: #ffffff;
    width: 250px;
    position: relative;
    z-index: 2;
    border-right: 3px solid var(--primary-background-lcs);
    right: -2px;
    position: absolute;
    top: 20px;
    padding: 10px;
}

.chart-timeline .chart-timeline-gridcontainer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-top: 3px solid #aaaaaa;
    border-bottom: 3px solid #aaaaaa;
}

.chart-timeline .chart-timeline-grid {
    border-left: 1px dashed rgba(170, 170, 170, 0.3);
    position: absolute;
    top: 0;
    height: 100%;
}

.chart-timeline .chart-timeline-grid.chart-timeline-grid-day-6 {
    background: rgba(20, 37, 80, 0.05);
}

.chart-timeline .chart-timeline-grid.chart-timeline-grid-day-0 {
    background: rgba(20, 37, 80, 0.1);
}

.chart-timeline .chart-timeline-grid:hover {
    border-color: var(--primary-background-lcs);
}

.chart-timeline .chart-timeline-grid .chart-timeline-grid-label {
    color: #fff;
    position: absolute;
    top: -25px;
    left: -50px;
    width: 100px;
    text-align: center;
    display: none;
    padding: 2px 10px;
    white-space: nowrap;
}

.chart-timeline .chart-timeline-grid .chart-timeline-grid-label-b {
    top: auto;
    bottom: -15px;
}

.chart-timeline .chart-timeline-grid:hover .chart-timeline-grid-label {
    display: block;
    background: #aaaaaa;
}

.chart-timeline .chart-timeline-grid .chart-timeline-grid-date-label {
    font-size: 8px;
    width: 100%;
    text-align: center;
}

.chart-timeline .chart-timeline-deadline {
    border: 3px solid var(--primary-color-lcs);
    position: absolute;
    top: 0;
    height: 100%;
}

.chart-timeline .chart-timeline-deadline .chart-timeline-deadline-label {
    background: var(--primary-color-lcs);
    color: #fff;
    display: block;
    position: absolute;
    width: 200px;
    top: -15px;
    left: -100px;
    padding: 3px;
    text-align: center;
}

.chart-timeline .chart-timeline-item {
    position: relative;
    margin: 5px 0;
    z-index: 1;
}

.chart-timeline .chart-timeline-item.chart-timeline-item2 {
    margin-top: -32px;
}

.chart-timeline .chart-timeline-item .chart-timeline-item-body {
    border-radius: 2px;
    box-shadow: 0 0 5px rgba(20, 37, 80, 0.2);
    background: #ffffff;
    width: 250px;
    position: relative;
    border-left: 3px solid var(--primary-background-lcs);
    left: -1px;
}

.chart-timeline .chart-timeline-item .chart-timeline-item-body .chart-timeline-item-date {
    background: rgba(20, 37, 80, 0.3);
    color: var(--primary-background-lcs);
    padding: 3px 7px;
    font-weight: 600;
    font-size: 0.9em;
}

.chart-timeline .chart-timeline-item .chart-timeline-item-body .chart-timeline-item-title {
    padding: 3px 10px;
    font-weight: 600;
}

.chart-timeline .chart-timeline-item .chart-timeline-item-body .chart-timeline-item-title span {
    background: rgba(20, 37, 80, 0.1);
    display: inline-block;
    font-size: 0.8em;
    padding: 2px 5px;
    border-radius: 5px;
}

.chart-timeline .chart-timeline-item .chart-timeline-item-body .extra-content {
    display: none;
    position: absolute;
    bottom: 30px;
    left: -3px;
    padding: 10px;
    background: #fff;
    border: 1px solid var(--primary-background-lcs);
    border-left: 3px solid var(--primary-background-lcs);
    box-shadow: 0 0 5px rgba(20, 37, 80, 0.2);
    z-index: 3;
    min-width: 300px;
}

.chart-timeline .chart-timeline-item .chart-timeline-item-body .extra-content hr {
    margin: 0;
}

.chart-timeline .chart-timeline-item .chart-timeline-item-body .extra-content span {
    background: rgba(20, 37, 80, 0.1);
    display: inline-block;
    padding: 2px 5px;
    border-radius: 5px;
}

.chart-timeline .chart-timeline-item .chart-timeline-item-body:hover .extra-content {
    display: block;
}

.input-group > .form-control {
    border: 1px solid #E5EDFF !important;
    border-radius: 4px;
}

.form-group > .form-control {
    border: 1px solid #E5EDFF !important;
    border-radius: 4px;
}

.input-group > .super-date-picker > .form-control {
    border: 1px solid #E5EDFF !important;
    border-radius: 4px;
}

.input-group > .form-control + .custom-select2 {
    margin-left: -1px;
}

.input-group > .custom-select2 + .form-control {
    margin-left: -1px;
}

.mt-2 > .form-control {
    border: 1px solid #E5EDFF !important;
    border-radius: 4px;
}

.mt-2 > .select2-container .select2-selection--single {
    border: 1px solid #E5EDFF !important;
    border-radius: 4px;
}

.input-group > .custom-select2:not(:last-child) > .select2-container .select2-selection--single {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.input-group > .custom-select2:not(:first-child) > .select2-container .select2-selection--single {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.termin-cykliczny {
    padding: 20px;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
}

.daterangepicker.show-calendar .select2-container--default {
    text-align: left;
}

.daterangepicker.show-calendar .select2-container--default:not(:last-child) {
    margin-right: 5px;
}

.daterangepicker th.month {
    width: 170px;
}

.select2-dropdown {
    z-index: 4000;
}

.no-sort {
    pointer-events: none !important;
    cursor: default !important;
}

.no-sort::before {
    display: none !important;
}

.no-sort::after {
    display: none !important;
}

#chartScroll {
    display: flex;
    overflow: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.filterForm {
    display: none;
}

.filterForm.active {
    display: block;
}

.card-edit {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 57px;
    z-index: 50;
    padding: 0.5rem 1.25rem 0;
}

.card-edit h1 {
    font-size: 1.8rem;
    margin: 0 0 0.5rem;
}

.card-buttons .card-buttons {
    display: flex;
    flex-wrap: wrap;
    padding-left: 0.75rem;
}

.card-buttons .card-buttons .btn {
    margin: 0 0 0.5rem 0.5rem;
}

.card-table {
    padding: 1.25rem 0;
}

.card-table-header,
.card-table-footer {
    padding: 0 1.25rem;
}

.dt-buttons .btn {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
    border-radius: 0.2rem;
}

.th-actions {
    width: 90px;
    max-width: 90px;
}

.dataTable_actions {
    display: flex;
    flex-wrap: nowrap;
    max-width: 180px;
    width: auto;
}

@media (max-width: 767px) {
    .dataTable_actions {
        flex-wrap: wrap;
        max-width: 90px;
    }
}

.dataTable_actions > * {
    margin: 0 0.25rem 0.25rem 0;
}

.dataTable_actions > *:last-child {
    margin: 0 0 0.25rem;
}

.input-group > .select2-container {
    width: auto !important;
    flex: 1 1 auto !important;
}

.input-group > .select2-container .select2-selection--single {
    /*height: 100% !important;*/
    line-height: inherit !important;
    border: 1px solid #E5EDFF !important;
    border-radius: 4px;
    height: 40px;
    padding: 8px !important;
}
.wrapper .content-wrapper {
    min-height: calc(100vh - calc(3.5rem + 1px) - calc(3.5rem + 1px)) !important;
}

.cluster {
    background-image: url(../image/cluster.png);
    width: 40px;
    height: 40px;
    line-height: 39px;
    text-align: center;
    border-radius: 50%;
    font-size: 16px;
    color: #fff;
}

.panel-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.form-shop-checkbox-label {
    background-color: #fff !important;
}

.shop-show-label {
    opacity: 0.7;
}

.shop-show-value {
    font-weight: 600;
    font-size: 1.2em;
    display: flex;
    align-items: center;
    /*justify-content: space-between;*/
    width: 100%;
}
.shop-show-value .btn-wrapper{
    display: flex;
    margin-left: auto;

}
.shop-show .nav-tabs {
    border: 0;
    text-align: center;
    justify-content: center;
}

.shop-show .nav-tabs .nav-item {
    display: inline-block;
    min-width: 15%;
}

.shop-show .nav-tabs .nav-item .nav-link {
    border: 0;
    background: #e7eefb;
    font-size: 1.2em;
    display: block;
    text-align: center;
    margin-left: 8px;
    color: var(--primary-background-lcs);
}

.shop-show .nav-tabs .nav-item .nav-link.active {
    box-shadow: 0 0px 20px rgba(20, 37, 80, 0.1);
    background: var(--primary-background-lcs);
    color: #fff;
    font-weight: 600;
}

.panel-header-light {
    background: var(--azure-lcs);
    color: white;
    padding: 15px 20px;
    font-weight: 600;
    font-size: 1.3em;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.panel-header-light i {
    margin-right: 10px;
}

.panel-header-light small {
    color: white;
    font-size: 0.9em;
}

label {
    font-weight: normal !important;
}

.select-client-modal .item {
    cursor: pointer;
    margin: 15px 10px;
    padding: 10px;
    text-align: center;
    border: 1px solid #e7eefb;
    background: #fff;
    border-radius: 10px;
}

.select-client-modal .item:hover {
    border-color: var(--primary-background-lcs);
    box-shadow: 0 0 10px rgba(20, 37, 80, 0.2);
}

.select-client-modal .item .logo {
    height: 50px;
    margin-bottom: 10px;
}

.select-client-modal .item .logo img {
    display: inline-block;
    max-width: 80%;
    max-height: 100%;
}

.select-client-modal .item .title {
    font-weight: 600;
    font-size: 1em;
    margin-bottom: 5px;
}

.ocr-item {
    max-height: 150px;
    max-width: 100%;
    transition: all 0.3s;
}

.ocr-item:hover {
    max-height: 100%;
}

.ocr-item img {
    max-height: 100%;
    max-width: 100%;
}

.ocr-value {
    height: 100% !important;
}

.table-fixed {
    table-layout: fixed;
    word-break: break-word;
}
.preview-shop label {
    font-size: 15px;
    color: var(--neutral-light-grey-lcs);
}
.shop-gallery {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.shop-gallery ul.slick-dots {
    text-align: center;
}

.shop-gallery ul.slick-dots li {
    list-style-image: none;
    display: inline-block;
    margin: 5px;
    background: var(--primary-background-lcs);
    opacity: 0.2;
    border-radius: 50%;
    width: 20px;
    height: 20px;
}

.shop-gallery ul.slick-dots li button {
    opacity: 0;
    width: 100%;
    height: 100%;
}

.shop-gallery ul.slick-dots li.slick-active {
    background: var(--primary-background-lcs);
    opacity: 1;
}

.panel-shop-header {
    /*color: var(--primary-color-lcs);*/
    font-size: 18px;
    font-weight: bold;
}

.modal-xxl {
    max-width: 90vw;
}

.report-show table {
    font-size: 1.1em;
}

.report-show table thead tr th {
    font-weight: 800;
    text-align: center;
}

.report-show table tbody tr td {
    text-align: center;
}

.autocomplete-suggestions {
    border: 1px solid #999;
    background: #FFF;
    overflow: auto;
}

.autocomplete-suggestion {
    padding: 2px 5px;
    white-space: nowrap;
    overflow: hidden;
}

.autocomplete-selected {
    background: #F0F0F0;
}

.autocomplete-suggestions strong {
    font-weight: normal;
    color: #3399FF;
}

.autocomplete-group {
    padding: 2px 5px;
}

.autocomplete-group strong {
    display: block;
    border-bottom: 1px solid #000;
}

.input-group .btn {
    padding: 6px 9px;
    border-radius: 10px !important;
    margin: 4px;
}

.btn-navbar-select {
    background: white;
    padding: 8px 20px;
    color: var(--black-lcs) !important;
    text-align: left;
    display: flex;
}

.btn-navbar-select .investment-city {
    color: var(--primary-color-lcs) !important;
}

.btn-navbar-select:hover, .btn-navbar-select:focus {
    background: #f8f6ff !important;
}

.btn-navbar-select:hover .investment-city, .btn-navbar-select:focus .investment-city {
    color: var(--primary-color-lcs) !important;
}

.btn-navbar-select .investment-icon {
    padding: 7px;
    padding-left: 50px;
}

.btn-navbar-select .investment-arrow {
    font-size: 18px;
}

.form-control, .select2-selection {
    border: none !important;
    background: var(--primary-color-light-lcs) !important;
    border-radius: 5px !important;
    padding: 8px !important;
    color: var(--neutral-grey);
}
.form-control:focus, .select2-selection:focus {
    z-index: 3;
    background: white !important;
    border: 1px solid var(--primary-color-lcs) !important;
}
.input-group-text {
    font-size: 1em;
    border: none !important;
    background: none;
    padding: 0.375rem;
}

.select2-selection {
    padding: 8px !important;
}

.form-label {
    color: var(--neutral-light-grey-lcs) !important;
    font-size: 14px;
}

.panel {
    background: #FFFFFF;
    box-shadow: 0px 2px 4px rgba(171, 190, 209, 0.6);
    border-radius: 16px;
}
.time-label{
    position: relative !important;
    left: 35px !important;
    background: none !important;
    font-weight: normal !important;
    color: var(--light-blue-grey-lcs) !important;
}
.timeline::before{
    background: var(--primary-sky-lcs);
    width: 2px;
}
.timeline > li::before{
    height: 10px;
    width: 10px;
    background: var(--light-blue-grey-lcs);
    top: 13px;
    left: 12px;
}
.timeline > li .timeline-item{
    border: 2px solid var(--primary-color-lcs);
    border-radius: 10px;
    padding: 8px 6px;
    margin-left: 35px;
    margin-right: 15px;
    width: 100%;
}
.timeline > li{
    margin-bottom: 8px;
    padding-bottom: 0px !important;
}
.timeline-wrapper {
    display: flex;
}
.timeline-wrapper .time {
    max-width: 100px;
    color: var(--light-blue-grey-lcs);
}
.timeline > li .timeline-item > .timeline-header {
    padding-top: 0;
    border: none;
    padding-bottom: 0;
}
.timeline > li .timeline-item > .timeline-body, .timeline > li .timeline-item > .timeline-footer{
    padding-bottom: 0;
}
.timeline-body{
    color:var(--azure-lcs);
}
.timeline-header a {
    color: var(--black-lcs) !important;
}
.select2-selection__arrow b{
    border: none !important;
}
select.form-control {
    -moz-appearance:none; /* Firefox */
    -webkit-appearance:none; /* Safari and Chrome */
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right 0.5rem top 13px !important;
    background-size: 1.2em !important;
    padding-right: 2rem !important;
}
.select2-selection__arrow b:before{
    content: "\f078";
    font-family: "Font Awesome 5 Free";
    position: relative;
    top: -9px;
    right: 8px;
}
.select2-container--default.select2-container--open .select2-dropdown .select2-results > .select2-results__options .select2-results__option[role="option"][aria-selected="true"] {
    background: var(--light-grey-lcs);
    color: var(--black-lcs);
}
.dropdown-item.active, .dropdown-item:active{
    background-color: var(--light-grey-lcs);
    color: var(--black-lcs);

}
.dt-button-collection {
    border: 1px solid #F5F7FA;
    box-shadow: 0px 6px 12px rgba(171, 190, 209, 0.3);
    border-radius: 4px;
}
.dt-button-collection .dropdown-item{
    padding: 12px 16px;
}
.dataTable tbody tr:nth-child(even) td{
    background: var(--light-grey-lcs);
}
.select2-container--default.select2-container--open .select2-dropdown .select2-results > .select2-results__options .select2-results__option[role="option"]{
    padding: 12px 16px;
}
.select2-container--default.select2-container--open .select2-dropdown.select2-dropdown--below{
    width: 433px;
    border: 1px solid #F5F7FA;
    box-shadow: 0px 6px 12px rgba(171, 190, 209, 0.3);
    border-radius: 4px;
}
.dataTables_length label{
    vertical-align: middle;
    align-content: end;
    display: flex;
    align-items: baseline;
    gap: 10px;
}
.dataTables_length label select {
    box-shadow: none;
    padding-left: 10px !important;
    padding-right: 1.5rem !important;
}
.dataTable_actions {
    display: block;
}
.dataTable_actions .btn{
    display: inline-block !important;
}
.btn-sm {
    padding: 6px 12px;


}
.btn-sm .fa {
    font-size: 1.25em;
    margin-right: 8px;
}
.dataTable thead tr th {
    background-color: var(--primary-color-light-lcs);
}
#shop-table_next a:before {
    content: "ᐳ" !important;
    font-size: 12px;
}

#shop-table_next a {
    font-size: 0;
    border: none;
}
#shop-table_previous a:before {
    content: "ᐸ" !important;
    font-size: 12px;
}

#shop-table_previous a {
    font-size: 0;
    border: none;
}
.page-link {
    border: none !important;
    padding: 8px 13px !important;
    font-size: 14px;
    color: var(--black-lcs);
}
.page-item.active .page-link {
    border-radius: 4px;

}
.paginate_button {
    display: flex;
    align-content: center;
    align-items: center;
}
.page-item.active .page-link {
    background: var(--primary-color-lcs);
}
.dataTable_actions {
    text-align: end;
}
.dataTable_actions > *{
    margin: 0 0.25rem 0.25rem 0 !important;
}
div.dataTables_wrapper div.dataTables_filter input {
    width: calc(100% - 60px) !important;
}
.report-item a{
    border: 2px solid var(--primary-color-lcs);
    color: var(--primary-color-lcs);
    text-align: center;
    padding: 16px;
    font-size: 18px;
    border-radius: 10px;
    margin: 10px;
    display: block;
}
.report-item .fa{
    padding-right: 8px;
    font-size: 20px;
}
.collapsable > .panel-header:after, .collapsable > .panel-header2:after, .collapsable > .panel-header-light:after {
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    position: absolute;
    right: 15px;
    top: calc(50% - 20px);
    padding: 10px;
    font-size: 15px;
    transition: 0.3s ease-in-out;
    rotate: 90deg;

}
.collapsable > .panel-header,
.collapsable> .panel-header2,
.collapsable >.panel-header-light{
    cursor: pointer;
    transition: 0.3s ease-in-out;

}
.collapsable> .panel-header,
.collapsable >.panel-header2,
.collapsable> .panel-header-light
{
    position: relative;
}
.collapsable.collapsable-hidden> .panel-body{
    /*display: none;*/
    height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.collapsable.collapsable-hidden >.panel-header,
.collapsable.collapsable-hidden> .panel-header2,
.collapsable.collapsable-hidden> .panel-header-light
{
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.collapsable.collapsable-hidden> .panel-header:after,
.collapsable.collapsable-hidden >.panel-header2:after,
.collapsable.collapsable-hidden >.panel-header-light:after
{
    rotate: 0deg;
}
.container-window-scroll {
    max-height: 100vh;
    overflow-x: hidden;
    box-shadow: 0px 2px 4px rgba(171, 190, 209, 0.6);
    overflow-y: scroll;
}
.input-group-append {
    margin-left: 8px;
    gap: 2px;
}
.input-group-append .btn {
    max-height: 40px;
    border-radius: 8px;
}
.input-group > .input-group-append {
    max-height: 40px;
}
.input-group > .input-group-prepend {
    max-height: 40px;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background: var(--primary2-color-lcs);
    border: none;
}
@media(min-width: 1200px){

    .sticky-doc {
        position: -webkit-sticky;
        position: sticky;
        top: 110px;
    }
    .sticky-doc-scroller{
        overflow-x: hidden;
        overflow-y: scroll;
        max-height: calc( 100vh - 90px );
    }
}
.super-date-picker {
    display: flex;
    max-height: 40px;
}
.super-date-picker .appgo-daterangepicker{
    max-width: 130px;
}
.super-date-picker .time{
    max-width: 60px;
    padding-right: 10px !important;
    padding-left: 10px !important;
    background-image: none !important;
}
.input-group {
    display: flex;
    justify-content: space-between;

}
/* PREPEND */
.input-group > .input-group-prepend {
    border: 1px solid #E5EDFF !important;
    max-height: 40px;
    border-right: 0 !important; /* sklej z inputem */
    border-radius: 4px 0 0 4px !important;
    display: flex;
    align-items: center;
}

.input-group > .super-date-picker > .input-group-prepend {
    border: 1px solid #E5EDFF !important;
    max-height: 40px;
    border-right: 0 !important; /* sklej z inputem */
    border-radius: 4px 0 0 4px !important;
    display: flex;
    align-items: center;
}

.input-group > .super-date-picker > .input-group-append {
    border: 1px solid #E5EDFF !important;
    max-height: 40px;
    border-left: 0 !important; /* sklej z inputem */
    border-radius: 0 4px 4px 0 !important;
    display: flex;
    align-items: center;
    margin-left: 0;
}

.input-group > .input-group-prepend + .form-control,
.input-group > .input-group-prepend + .select2-container .select2-selection--single {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}

.input-group > .super-date-picker > .input-group-prepend + .form-control {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}
.input-group > .super-date-picker > .form-control:has(+ .input-group-append) {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}
.input-group-append .btn {
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
}
.border-azure {
    border: 1px solid var(--azure-lcs);
    border-radius: 10px;
    padding: 15px 10px;
}
.panel-header .select2-selection{
    font-size: 14px;
}
.preview-button-wrapper {
    position: absolute;
    bottom: 30px;
    z-index: 1;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0px 6px 12px rgba(171, 190, 209, 0.3);
    border-radius: 10px;
    left: calc(50% - 50px);
}
#cropper_buttons {
    z-index: 1;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0px 6px 12px rgba(171, 190, 209, 0.3);
    border-radius: 10px;
    width: 140px;
    margin: auto;
    margin-bottom: -59px;
    padding-right: 2px;
    height: 59px !important;
}
.preview-pages-container {
    position: relative;
    padding-top: 40px;
    padding-bottom: 40px;
}
.daterangepicker .calendar-table th, .daterangepicker .calendar-table td {
    font-weight: normal;
}
.daterangepicker th.month {
    color: var(--primary-color-lcs);
}
.daterangepicker td.active, .daterangepicker td.active:hover{
    background-color: var(--primary-color-lcs);
}
.daterangepicker {
    border: 1px solid #F5F7FA;
    box-shadow: 0px 6px 12px rgba(171, 190, 209, 0.3);
    border-radius: 4px;
}
.daterangepicker .drp-buttons {
    border-top: none;
}

@media(max-width: 1000px){
    .full-width {
        width:calc(100vw - 20px) !important;
    }
}
.full-width {
    width:calc(100vw - 80px);
}
.modal-header {
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}
.modal-content {
    background: transparent;
    box-shadow: none;
}
.modal-body {
    min-height: 350px;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    background: white;
}
.modal-footer {
    border: none !important;
    background: transparent;
    padding-right: 0;
}
.modal-footer .btn {
    font-size: 18px;
    padding: 11px 35px;
}
.col-6 .form-group{
    /*border-right: 1px solid lightgray;*/
}
/*.col-6:last-child .form-group {*/
/*    border: none;*/
/*}*/

.intervalInput {
    display: inline-block;
    width: 100%;
    margin-bottom: 15px;
}
/* monthpicker.css */

.monthpicker {
    display: inline-block;
    position: relative;
    font-size: 0.9em;
    vertical-align: middle;
    padding: 8px 15px;
    background-color: #fff;
    border: 1px solid #aaa;
    border-radius: 4px;
    width: 49.4%;
    color: black;
    height: 40px;
    border: none !important;
    background: var(--primary-color-light-lcs) !important;
    border-radius: 5px !important;
    padding: 10px 16px 10px 16px !important;
    color: var(--neutral-grey);
}
.monthpicker_input .placeholder {
    color: var(--neutral-grey);
}
.monthpicker_selector *::selection {
    background: transparent;
}

.monthpicker_input {
    display: inline-block;
    width: 100%;
    height: 100%;
    background-color: #fff;
    padding: 0 5px;
    border: none;
    outline: none;
    cursor: pointer;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    line-height: 1em;
    border: none !important;
}

.monthpicker_input .placeholder {
    color: #444;
}

.monthpicker_input.active {
    background-color: #d4d4d4;
    color: #000;
}

.monthpicker_selector {
    position: absolute;
    top: 100%;
    background-color: #fff;
    min-width: 250px;
    z-index: 100;
    color: #444;
    border: 1px solid #F5F7FA;
    box-shadow: 0px 6px 12px rgba(171, 190, 209, 0.3);
    border-radius: 4px;
    padding: 10px;
}

.monthpicker_selector > table {
    color: #444;
    width: 100%;
    text-align: center;
    border-spacing: 0;
    border-collapse: collapse;
    font-size: 0.9em;
    border-radius: 5px;
}

.monthpicker_selector > table tr:first-child td,
.monthpicker_selector > table tr td {
    padding-top: 8px;
    padding-bottom: 8px;
}

.monthpicker_selector > table tr:first-child > td:nth-child(1) {
    text-align: left;
}

.monthpicker_selector > table tr:first-child > td:nth-child(2) {
    position: relative;
}

.monthpicker_selector > table tr:first-child > td:nth-child(3) {
    text-align: right;
}

.monthpicker_selector > table tr:nth-child(2) td {
    width: 33%;
}

.yearSwitch {
    padding: 7px 10px;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    font-size: 1.2rem;
}

.yearSwitch.off {
    visibility: hidden;
}

.yearValue {
    width: 100%;
    height: 100%;
    text-align: center;
    background: none;
    border: none;
    color: var(--primary-color-lcs);
    outline: none;
    font-size: 1.8em;
}

/* months */
.monthpicker_selector .month {
    /* border: 1px solid #007bff; */
    background-color: #fff;
    font-size: 0.9rem;
    cursor: pointer;
    color: #212121;
}
.monthpicker_selector .month:hover {
    background-color: #007bff;
    opacity: 0.7;
    color: #fff;
}
.month.selected {
    background: #007bff;
    color: #fff;
    font-weight: bold;
    font-size: 0.9rem;
}
.monthpicker_selector .month.off {
    color: #fff;
    background: red;
    opacity: 0.65;
    cursor: not-allowed;
}
.monthpicker_selector .month.off:hover {
    background: red;
    opacity: 0.65;
}

/* .monthpicker_selector>table tr td:first-child {
      border-left: none;
  }

  .monthpicker_selector>table tr td:last-child {
      border-right: none;
  }

  .monthpicker_selector>table tr:last-child td {
      border-bottom: none;
  } */

.z-depth-0 {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}
.z-depth-1 {
    -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14),
    0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14),
    0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}
.z-depth-2 {
    -webkit-box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14),
    0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
    box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12),
    0 2px 4px -1px rgba(0, 0, 0, 0.3);
}
.z-depth-3 {
    -webkit-box-shadow: 0 8px 17px 2px rgba(0, 0, 0, 0.14),
    0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2);
    box-shadow: 0 8px 17px 2px rgba(0, 0, 0, 0.14),
    0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2);
}
.z-depth-4 {
    -webkit-box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14),
    0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -7px rgba(0, 0, 0, 0.2);
    box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14),
    0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -7px rgba(0, 0, 0, 0.2);
}
.z-depth-5,
.modal {
    -webkit-box-shadow: 0 24px 38px 3px rgba(0, 0, 0, 0.14),
    0 9px 46px 8px rgba(0, 0, 0, 0.12), 0 11px 15px -7px rgba(0, 0, 0, 0.2);
    box-shadow: 0 24px 38px 3px rgba(0, 0, 0, 0.14),
    0 9px 46px 8px rgba(0, 0, 0, 0.12), 0 11px 15px -7px rgba(0, 0, 0, 0.2);
}

.monthpicker {
    display: inline-block;
    position: relative;
    /*font-size: .9em;*/
    vertical-align: middle;
    width: 100%
}
.monthpicker_input {
    background: var(--primary-color-light-lcs) !important;
}
.monthpicker_selector *::selection {
    background: transparent;
}

.monthpicker_input {
    display: inline-block;
    width: 100%;
    height: 100%;
    /*background-color: #2C2C2C;*/
    padding: 0 5px;
    border: none;
    outline: none;
    cursor: pointer;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    /*color: #FFF;*/
    /*font-size: 0.9em;*/
    line-height: 1em;
}

.monthpicker_input .placeholder {
    color: #888;
}



.monthpicker_input.active {
    background-color: #D4D4D4;
    color: #000;
}

.monthpicker_selector {
    position: absolute;
    top: 100%;
    background-color: white;
    min-width: 173px;
    z-index: 100;
    border: 1px solid #F5F7FA;
    box-shadow: 0px 6px 12px rgba(171, 190, 209, 0.3);
    border-radius: 4px;
}

.monthpicker_selector>table {
    color: black;
    width: 100%;
    text-align: center;
    border-spacing : 0;
    border-collapse : collapse;
}

.monthpicker_selector>table tr:first-child td {
    padding-top: 3px;
    padding-bottom: 3px;
}

.monthpicker_selector>table tr:first-child>td:nth-child(1) {
    padding-left: 5px;
    padding-right: 5px;
    text-align: left;
}

.monthpicker_selector>table tr:first-child>td:nth-child(2) {
    position: relative;
}

.monthpicker_selector>table tr:first-child>td:nth-child(3) {
    padding-left: 5px;
    padding-right: 5px;
    text-align: right;
}

.yearSwitch {
    padding: 0 10px;
    border-radius: 3px;
    color: #000;
    font-weight: bold;
    cursor: pointer;
}

.yearSwitch.off {
    visibility: hidden;
}

.yearValue {
    width: 100%;
    height: 100%;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    background: none;
    border: none;
    color: var(--primary-color-lcs);
    outline: none;
    font-size: 1.4em;
    padding-top: 7px;
}

/* months */
.monthpicker_selector .month {
    border: none;
    cursor: pointer;
}
.monthpicker_selector .month:hover {
    background-color: var(--azure-lcs);
    border-radius: 5px;

}
.month.selected {
    background: var(--primary-color-lcs);
    color: white;
    border-radius: 5px;
}
.monthpicker_selector .month.off {
    color: #666;
    cursor: not-allowed;
}
.monthpicker_selector .month.off:hover {
    background: none;
}

.monthpicker_selector>table tr td:first-child {
    border-left: none;
}

.monthpicker_selector>table tr td:last-child {
    border-right: none;
}

.monthpicker_selector>table tr:last-child td {
    border-bottom: none;
}
.monthpicker {
    padding: 0 !important;
}
.monthpicker .monthpicker_input {
    padding-top: 15px !important;
}
.panel-body .col-6:first-child .form-group:first-child,
.panel-body .col-xl-6:first-child .form-group:first-child{
    /*border-right: 1px solid #dfdfdf;*/
    padding-right: 15px;
}
/*# sourceMappingURL=web.css.map */

.choose-document {
    white-space: nowrap;
    margin-left: .5rem;
    height: 40px;
    vertical-align: middle;
}

/*@media (max-width: 1440px) {*/
/*    .choose-document {*/
/*        font-size: 0.9rem; !* zmniejsza tekst *!*/
/*        padding: 0.375rem 0.5rem; !* ciaśniejszy button *!*/
/*    }*/
/*}*/

.ocr-search {
    height: 40px;
}

.cropper-next {
    margin-left: .5rem;
}

.custom-control {
    padding-left: 2rem;
}

.btn-remove {
    height: 32px;
}

.btn-add {
    height: 32px;
}

.ms-auto {
    margin-left: 0;
}

.panel {
    border-radius: 20px;
}

.panel2 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
    border-radius: 12px;
    border: 1px solid #E5EDFF;
}

.panel2-header {
    display: flex;
    padding: 10px 16px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    background-color: #D4E1FF;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    font-size: 16px;
    font-weight: 400;
}

.panel2-body {
    display: flex;
    padding: 10px 16px 16px 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    align-self: stretch;
    border-radius: 0 0 12px 12px;
    background-color: #FFF;
}
 .inne-terminy {
     width: 100%;
 }

#language-select + .select2 .select2-selection--single {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#language-select + .select2 .select2-selection__rendered {
    margin: 0 8px 0 0;
}


#language-select + .select2 .select2-selection__arrow {
    display: flex;
    align-items: center;
    margin: 0;
    top: 0;
}

.auth-panel {
    display: flex;
    width: 500px;
    padding: 2px;
    flex-direction: column;
    align-items: flex-start;
    flex-shrink: 0;

    border-radius: 10px;
    background: #FFF;
    box-shadow: 0 4px 8px 0 rgba(171, 190, 209, 0.40);
 }

.auth-panel form {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.auth-panel-header {
    display: flex;
    min-height: 48px;
    padding: 8px 16px;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    border-radius: 8px;
    background: #67667C;

    color: #FFF;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
}

.auth-panel-body {
    display: flex;
    padding: 32px;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    align-self: stretch;

    border-radius: 0 0 12px 12px;
    background: #FFF;
}

.auth-panel-inputs {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    align-self: stretch;
}

.auth-panel-inputs .form-group {
    width: 100%;
}

.auth-panel-remember-me-and-forgot-pass {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    align-self: stretch;
}

.auth-panel-remember-me-and-forgot-pass a {
    white-space: nowrap;
    color: var(--primary-color-lcs, #6F5BC2);
}

.auth-panel-remember-me-and-forgot-pass .custom-checkbox .custom-control-label::before {
    background-color: #FFF !important;
    background-image: none !important;
    border: 1px solid #ABB8D1 !important;
    border-radius: 4px !important;
    box-shadow: none !important;
}

.auth-panel-remember-me-and-forgot-pass .custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
    background-color: var(--primary-color-lcs, #6F5BC2) !important;
    border-color: #ABB8D1 !important;
}

.auth-panel-remember-me-and-forgot-pass .custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e") !important;
}

.auth-panel-remember-me-and-forgot-pass .custom-control-label {
    color: #67667C;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.auth-panel-remember-me-and-forgot-pass .form-group {
    margin: 0;
    padding: 0;
}

.auth-panel-remember-me-and-forgot-pass .custom-control {
    padding-left: 24px;
    margin-left: 0;
}

.auth-panel-sign-in-btn {
    display: flex;
    padding: 16px 32px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;

    border: none !important;
    border-style: solid !important;
    box-shadow: none !important;
    border-color: var(--primary-color-lcs, #6F5BC2) !important;

    border-radius: 10px;
    background: var(--primary-color-lcs, #6F5BC2);
}

.auth-panel-btn-text {
    color: #FFF;
    text-align: center;

    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 133.333% */
}
