:root {
    --lc-primary-400-main: #8B5CF6;
    --lc-primary-400-main: #8B5CF6;
    --lc-secondary-400-main: #3B82F6;
    --LC-Misc-Main-BG: #F8F9FD;
    --LC-Neutral-300: #727C96;
    --LC-Secondary-100: #EBF2FE;
}
.btn {
  border-radius: 7px;
  font-size: 12px;
}
/* sizes for buttons -----> */
.small {
    display: inline-flex;
    padding: 6px 12px;
    justify-content: center;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    line-height: 100%;

    svg {
        width: 16px;
        height: 16px;
    }
}
.smallIconLeft {
    padding: 6px 12px 6px 10px;
}
.smallIconRight {
    padding: 6px 10px 6px 12px;
}
.medium {
    display: inline-flex;
    padding: 14px 32px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    line-height: 18.08px;

    svg {
        width: 16px;
        height: 16px;
    }
}
.mediumIconLeft {
    padding: 14px 32px 14px 24px;
}
.mediumIconRight {
    padding: 14px 24px 14px 32px;
}
.normal {
    display: inline-flex;
    padding: 16px 32px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    line-height: 22.14px;

    svg {
        width: 20px;
        height: 20px;
    }
}
.normalIconLeft {
    padding: 16px 32px 16px 24px;
}
.normalIconRight {
    padding: 16px 24px 16px 32px;
}
/* <----- sizes for buttons */

.btn-primary {
    background: var(--lc-primary-400-main, #8B5CF6);
    border-color: var(--lc-primary-400-main, #8B5CF6);
    color: #FFF;
    text-align: center;
    font-weight: 500;
}
.btn-primary:hover {
    background: #4B32B3;
    border-color: #4B32B3;
}
.btn-primary:focus,
.btn-primary.focus {
    border: 2px solid #E1E9FF;
}
.btn-primary.disabled,
.btn-primary:disabled {
    color: #fff;
    background-color: #F5F8FF;
    color: #ABB8D1;
    border-color: #F5F8FF;
    opacity: 0.5;
}
.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active {
    color: #fff;
    background: var(--lc-primary-400-main, #8B5CF6);
    border-color: var(--lc-primary-400-main, #8B5CF6);
}
.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn-primary:not(:disabled):not(.disabled).active:focus {
    background: var(--lc-primary-400-main, #8B5CF6);
    border-color: var(--lc-primary-400-main, #8B5CF6);
    border: 2px solid #E1E9FF;
}
.btn-outline-primary {
    color: var(--lc-primary-400-main, #8B5CF6);
    border-color: var(--lc-primary-400-main, #8B5CF6);
    font-weight: 600;
    font-size: 16px;
    background: #fff;
}
.btn-outline-primary:hover {
    background: #F5F8FF;
    color: var(--lc-primary-400-main, #8B5CF6);
    border-color: var(--lc-primary-400-main, #8B5CF6);
}
.btn-outline-primary:focus,
.btn-outline-primary.focus {
    background-color: #F5F8FF;
    border: #E1E9FF;
}
.btn-outline-primary.disabled,
.btn-outline-primary:disabled {
    color: #fff;
    background-color: #F5F8FF;
    color: #ABB8D1;
    border-color: #F5F8FF;
    opacity: 0.5;
}
.btn-outline-primary:not(:disabled):not(.disabled):active,
.btn-outline-primary:not(:disabled):not(.disabled).active {
    color: var(--lc-primary-400-main, #8B5CF6);
    border-color: var(--lc-primary-400-main, #8B5CF6);
    background: #fff;
}
.btn-outline-primary:not(:disabled):not(.disabled):active:focus,
.btn-outline-primary:not(:disabled):not(.disabled).active:focus {
    border: 2px solid #E1E9FF;
    color: var(--lc-primary-400-main, #8B5CF6);
    border-color: var(--lc-primary-400-main, #8B5CF6);
    background: #fff;
}
.show > .btn-primary.dropdown-toggle {
    color: #fff;
    background-color: var(--lc-primary-400-main, #8B5CF6);
}
.show > .btn-primary.dropdown-toggle:focus {
    border: 2px solid #E1E9FF;
}
.btn-secondary {
    color: var(--lc-primary-400-main, #8B5CF6);
    border-color: var(--lc-primary-400-main, #8B5CF6);
    font-weight: 600;
    font-size: 16px;
    background: #fff;
}
.btn-secondary:hover {
    background: #F5F8FF;
    color: var(--lc-primary-400-main, #8B5CF6);
    border-color: var(--lc-primary-400-main, #8B5CF6);
}
.btn-secondary :focus,
.btn-secondary.focus {
    background-color: #F5F8FF;
    border: #E1E9FF;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
    color: #fff;
    background-color: #F5F8FF;
    color: #ABB8D1;
    border-color: #F5F8FF;
    opacity: 0.5;
}
.btn-secondary:not(:disabled):not(.disabled):active,
.btn-secondary:not(:disabled):not(.disabled).active {
    color: var(--lc-primary-400-main, #8B5CF6);
    border-color: var(--lc-primary-400-main, #8B5CF6);
    background: #fff;
}
.btn-secondary:not(:disabled):not(.disabled):active:focus,
.btn-secondary:not(:disabled):not(.disabled).active:focus {
    border: 2px solid #E1E9FF;
    color: var(--lc-primary-400-main, #8B5CF6);
    border-color: var(--lc-primary-400-main, #8B5CF6);
    background: #fff;
}
.show > .btn-secondary.dropdown-toggle {
    color: var(--lc-primary-400-main, #8B5CF6);
    background: #fff;
    border: 2px solid #E1E9FF;
}
.show > .btn-secondary.dropdown-toggle:focus {
    background-color: #F5F8FF;
    border: #E1E9FF;
}
.badge {
  display: inline-block;
  border-radius: 10px;
  padding: 5px 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: #142550;
  margin-left: 8px;
color: var(--lc-primary-400-main, #8B5CF6);
    padding: 6px 12px;
    gap: 6px;
    font-size: 16px;
    line-height: 100%;
}

.nav-tabs .nav-item .nav-link.active:hover {
    background: #4B32B3;
    border-color: #4B32B3;
}
.nav-tabs .nav-item .nav-link.active {
  box-shadow: 0 0px 20px rgba(20, 37, 80, 0.1);
background: var(--lc-primary-400-main, #8B5CF6);
  color: #fff;
  font-weight: 600;
}
html {
  width: 100%;
  height: 100%;
}
body {
  background: #c8d3e5;
  padding-top: 50px;
  font-size: 13px;
  color: #142550;
  width: 100%;
  height: 100%;
}
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: #142550;
    color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    padding: 10px 32px;
}
header .logo {
  flex-basis: 300px;
  max-height: 50px;
  max-width: 200px;
  display: flex;
  align-content: center;
  justify-content: center;
padding: 0 10px;
}
header .logo img {
  width: 200px;
  display: block;
}
header .investment {
    flex: 1;
    padding-left: 50px;
    display: flex;
    align-items: center;
    white-space: nowrap;
    gap: 32px;
}
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;
}
footer {
  background: #142550;
  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: #142550;
  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;
    background: var(--LC-Misc-Main-BG, #F8F9FD);
}
.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: 64px 32px;
  max-width: 100%;
}
.panel-title {
  font-size: 2em;
  font-weight: 600;
  margin-bottom: 20px;
}
.panel {
  background: #fff;
  background: #fbfcfe;
  border-radius: 10px;
  box-shadow: 0 0 40px rgba(20, 37, 80, 0.2);
  margin-bottom: 20px;
  overflow: hidden;
}
.panel .panel-body {
    background: #fff;
    padding: 20px;
}
.panel .panel-header {
  background: #142550;
  color: #fff;
  padding: 15px 20px;
  font-weight: 600;
  font-size: 1.3em;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
    /*display: flex;*/
    /*align-items: center;*/
    /*justify-content: space-between;*/
}
.panel-header-light {
    background: #142550;
    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 label {
    margin-bottom: 0px;
}
@media (max-width: 1200px) {
    .panel .panel-header,
    .panel-header-light {
        padding: 5px 10px;
    }
}
.panel .panel-header i {
  margin-right: 10px;
}
.panel .panel-header small {
  color: #d92d7b;
  font-size: 0.9em;
}
.panel .panel-header2 {
  background: #e7eefb;
  color: #142550;
  padding: 15px 20px;
  font-weight: 600;
  font-size: 1.3em;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.panel .panel-header2 i {
  margin-right: 10px;
}
.panel .panel-header2 small {
  color: #d92d7b;
  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 thead th {
    border-bottom: none;
}
/*table.table-inner {*/
/*    border: none !important;*/
/*}*/
.table td .table-inner tr:first-child td {
    border-top: none !important;
}
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;
}
td.actions a,
td.actions button {
    padding: 5px 10px;
}
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;
}
.table-striped thead tr th {
  border: 0;
  background-color: #e7eefb;
  color: #142550;
  font-weight: 400;
}
.table-striped tbody tr td {
  border: 0;
}
.table-striped tbody tr:nth-child(even) td {
  background-color: #fbfcfe;
}
.table-striped 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 {
    display: flex;
    height: 35px;
    padding: 4px 8px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;

    border-radius: 4px;
    border: 1px solid #E1E9FF;

    color: var(--LC-Neutral-300, #727C96);
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 19.5px; /* 150% */
}
.input-group-text {
  font-size: 1em;
}
.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 #d92d7b;
  background: #fcfcfc;
  margin-bottom: 20px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.filter-panel .filter-panel-switch {
  padding: 10px;
  background: #d92d7b;
  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: #142550;
  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, #142550);
}
.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 {
    display: flex;
    height: 35px;
    padding: 4px 32px 4px 8px;
    justify-content: space-between;
    align-items: center;
    flex: 1 0 0;
    /*height: calc(1.5em + 0.75rem + 2px);*/
    /*border-radius: 0.25rem;*/
    /*overflow: hidden;*/
    border: 1px solid #E1E9FF;
}
.select2-container--default .select2-selection.select2-selection--single .select2-selection__rendered {
    color: var(--LC-Neutral-300, #727C96);
    text-align: center;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 19.5px; /* 150% */
    padding: 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: #d92d7b;
}
.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: var(--lc-secondary-400-main);
}
.select2-container--default.select2-container--open .select2-dropdown .select2-results > .select2-results__options .select2-results__option[role="option"][aria-selected="true"] {
    background: var(--lc-secondary-400-main);
    opacity: 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(--lc-secondary-400-main);
  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: var(--LC-Neutral-300, #727C96);
  background-color: #fff;
  background-clip: padding-box;
    border: 1px solid #E1E9FF;
  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;
    height: 35px;
  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: black;
  opacity: 0.75;
  cursor: pointer;
}
.mapplic-clickable.shop-stand-forbidden {
  stroke: black;
  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: black;
}
.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 black;
}
.floor-preview-legend li.shop-stand-forbidden i {
  border: 2px dashed black;
}
.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: var(--LC-Secondary-100);
  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: 4px solid var(--LC-Secondary-100);
    transition: background 0.25s ease, border-color 0.25s ease;
}
.timeline > li:hover::before {
    background: var(--LC-Secondary-100) !important;
    border-color: var(--LC-Secondary-100) !important;
    transition: background 0.25s ease, border-color 0.25s ease;
}
.timeline > li.time-label {
  font-weight: 600;
  padding: 5px;
  display: inline-block;
  background-color: var(--LC-Secondary-100);
  color: #142550;
  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: 30px;
  margin-right: 15px;
  padding: 0;
  position: relative;
}
.timeline > li > .timeline-item > .time {
  color: #999;
    display: inline-flex;
    align-items: center;
    gap: 2px;
  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: #142550;
  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: #142550;
}
.shop-show .nav-tabs .nav-item .nav-link.active {
  box-shadow: 0 0px 20px rgba(20, 37, 80, 0.1);
  background: #142550;
  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 #d92d7b;
  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 .panel-calendar-body {
  height: 280px;
  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: #d92d7b;
}
#pagesContainer .page-item:hover span,
#pagesContainer .page-item.active span {
  background: #d92d7b;
}
#segmentsList td.segment-td {
  text-align: center;
}
#segmentsList img.segment-img {
  max-width: 200px;
  max-height: 100px;
}
button.shop-segment-count {
  margin-left: 5px;
  font-size: 13px;
  border-radius: 6px;
  display: inline;
  border: 0;
  background: #d92d7b;
  color: #fff;
    padding-bottom: 3px;
}
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 #142550;
  border-radius: 0;
}
.tab-content-shop .tab-pane {
  padding-left: 0;
  padding-right: 0;
}
.head1 {
  font-size: 1.5em;
  font-weight: 600;
  color: #142550;
  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;*/
  background-color: #89B4FA;
  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: #89B4FA;
}
.switch label .lever::after {
  background-color: #3B82F6;
  -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 #142550;
  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: #142550;
}
.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 #d92d7b;
  position: absolute;
  top: 0;
  height: 100%;
}
.chart-timeline .chart-timeline-deadline .chart-timeline-deadline-label {
  background: #d92d7b;
  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 #142550;
  left: -1px;
}
.chart-timeline .chart-timeline-item .chart-timeline-item-body .chart-timeline-item-date {
  background: rgba(20, 37, 80, 0.3);
  color: #142550;
  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 #142550;
  border-left: 3px solid #142550;
  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 + .custom-select2 {
  margin-left: -1px;
}
.input-group > .custom-select2 + .form-control {
  margin-left: -1px;
}
.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;
}
.custom-select2 .select2-container {
    width: auto !important;
    min-width: 200px;
}
.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;
}
/*# sourceMappingURL=panel.css.map */



#document-preview {
    position: sticky;
    top: 20px;
    max-height: 80vh;
    overflow-y: auto;
}

.page-header {
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: center;
    font-size: 24px;
}

#thumbnails {
    display: flex;
    flex-wrap: wrap;   /* pozwala przełamywać wiersze */
    gap: 5px;          /* odstęp między miniaturami */
}

.thumbnail {
    flex: 1 0 23%;     /* maksymalnie 4 miniatury w wierszu (100% / 4 ≈ 25% - odstępy) */
    box-sizing: border-box;
    cursor: pointer;
    opacity: 0.6;
    border: 2px solid transparent;
    text-align: center;
}

.thumbnail img {
    width: 100%;       /* dopasowanie obrazka do szerokości thumbnail */
    height: auto;
}

.thumbnail.active {
    opacity: 1;
    border-color: #007bff;
}

.thumbnail.search-hit {
    border-color: #ff0;
}

.thumbnail.search-hit:not(.active) {
    border-color: #ff0;
}

.header-btn {
    display: flex;
    padding: 14px 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;

    border-radius: 8px;

    color: #FFF;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px; /* 125% */
}

.investment-change-btn {
    background: #8B5CF6;

    color: #FFF;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px; /* 125% */
}

.investment-edit-btn {
    border: 1px solid #3B82F6;

    color: #FFF;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px; /* 125% */
}

.header-navigation .dropdown {
    display: inline-block; /* zamiast blokowego */
    position: relative; /* potrzebne dla dropdown-menu */
}

.header-navigation .dropdown-toggle {
    color: #FFF;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 125% */
    text-decoration: none;
    cursor: pointer;
}

.header-navigation .dropdown-toggle::after {
    display: none !important;
}

.active-user {
    color: #FFF;

    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
}

.header-navigation .dropdown-toggle .chevron-icon {
    display: flex;
    width: 16px;
    height: 16px;
    padding: 0 3.333px 0 3.334px;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1/1;

    transform: rotate(180deg);
    transition: transform 0.2s ease;
}

.header-navigation .dropdown.show .chevron-icon {
    transform: rotate(0deg);
}

.panel-header-btn-group {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
}

.panel-header-btn-subgroup {
    display: flex;
    align-items: center;
    gap: 8px;
}

.auto-fill-btn {
    border-radius: 8px;
    border: 1px solid transparent;
    background:
        linear-gradient(90deg, #14AE5C 0%, #2FCF3F 100%) padding-box, /* wypełnienie */
        linear-gradient(90deg, #14AE5C 0%, #2FCF3F 100%) border-box;
}

.auto-fill-btn:hover {
    color: #fff;
    filter: brightness(0.9);
}

.lc-primary-btn {
    border-radius: 8px;
    border: 1px solid var(--lc-primary-400-main, #8B5CF6);
    background: var(--lc-primary-400-main, #8B5CF6);
}

.lc-primary-btn:hover {
    color: white;
    filter: brightness(0.9);
}

.lc-primary-btn-outline {
    border-radius: 8px;
    border: 1px solid var(--lc-primary-400-main, #8B5CF6);
    background: var(--LC-Misc-Main-BG, #F8F9FD);
    color: var(--lc-primary-400-main, #8B5CF6);
}

.lc-primary-btn-outline:hover {
    color: var(--lc-primary-400-main, #8B5CF6);
    background: #f0f1f6; /* lekko ciemniejszy niż #F8F9FD */
}


.lc-secondary-btn {
    border-radius: 8px;
    border: 1px solid var(--lc-secondary-400-main, #3B82F6);
    background: var(--lc-secondary-400-main, #3B82F6);
}

.lc-secondary-btn:hover {
    color: white;
    filter: brightness(0.9);
}

.lc-secondary-btn-outline {
    border-radius: 8px;
    border: 1px solid var(--lc-secondary-400-main, #3B82F6);
    background: var(--LC-Misc-Main-BG, #F8F9FD);
    color: var(--lc-secondary-400-main, #3B82F6);
}

.lc-secondary-btn-outline:hover {
    color: var(--lc-secondary-400-main, #3B82F6);
    background: #f0f1f6;
}

.lc-danger-btn {
    border-radius: 8px;
    border: 1px solid #EC221F;
    background: var(--LC-Misc-Main-BG, #F8F9FD);
}

.lc-danger-btn:hover {
    filter: brightness(0.9);
}

.lc-danger-btn-outline {
    border-radius: 8px;
    border: 1px solid #EC221F;
    background: var(--LC-Misc-Main-BG, #F8F9FD);
    color: #EC221F;
}

.lc-danger-btn-outline:hover {
    color: #EC221F;
    background: #f0f1f6;
}

.sticky-panel-wrapper {
    position: sticky;
    top: 104px;
}

.select2-selection--single {
    position: relative;
}

.select2-selection__arrow b {
    display: none;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    position: absolute !important;
    top: 0;
    right: 8px !important;
    width: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='11' height='7' viewBox='0 0 11 7' fill='none'><path d='M0.5 1L5.5 6L10.5 1' stroke='%233B82F6' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>")
    no-repeat center center;
    background-size: 11px 7px;
}

.input-group-append {
    background: #EBF2FE80;
    border-radius: 0 8px 8px 0;
}

.input-group-append-btn {
    display: flex;
    width: 35px;
    height: 35px;
    padding: 8px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: var(--LC-Neutral-300, #727C96);
    border: 1px solid #E1E9FF;
    background: rgba(235, 242, 254, 0.50);
}

.input-group-append-btn:not(:last-child) {
    border-right: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.input-group-append-btn:last-child {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

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

.input-group-text:last-child {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.reportItem {
    display: flex;
    padding: 16px 24px;
    align-items: center;
    border-radius: 12px;
    border: 1px solid #8B5CF6
}

.reportItem {
    display: flex;
    padding: 16px 24px;
    align-items: center;
    border-radius: 12px;
    border: 1px solid #8B5CF6;
    height: 100%;
}

.innerReportItem {
    display: flex;
    align-items: center;
    gap: 24px;
}

.reportItemContainer {
    display: grid;
    padding: 20px;
    row-gap: 24px;
    column-gap: 16px;
    align-self: stretch;
    align-content: stretch;
    grid-auto-rows: minmax(auto, 1fr);
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

@media (max-width: 1200px) {
    .reportItemContainer {
        padding: 10px;
    }
}

.innerReportItem svg {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.timeline--small {
    padding-left: 2px;
    padding-right: 0;
}

.timeline--small:before {
    left: 18px;
}

.timeline--small .time-label.past {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.timeline--small li {
    margin-right: 0;
}

.buttonWrapper {
  width: 150px;
  height: 100%;
  vertical-align: middle;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
    margin-left: auto;
}

.buttonWrapper a {
  width: 100%;
}

.colBtns {
  max-width: 150px;
}

@media (max-width: 1380px) {
  .buttonWrapper a span.label-text {
    display: none;
  }

  .buttonWrapper {
    width: 40px;
    margin-left: auto;
  }
}

@media (max-width: 1260px) {
  .buttonWrapper a span.label-text {
    display: block;
  }

  .buttonWrapper {
    width: 150px;
  }
}

.btn {
    font-weight: 400;
}

.panel > .table.table-striped th,
.panel > .table.table-striped td {
    padding: 15px 20px;
}

@media (max-width: 1200px) {
    .panel > .table.table-striped th,
    .panel > .table.table-striped td {
        padding: 5px 10px;
    }
}

.panel > .panel-body > .table.table-striped th,
.panel > .panel-body > .table.table-striped td {
    padding: 15px 20px;
}

@media (max-width: 1200px) {
    .panel > .panel-body > .table.table-striped th,
    .panel > .panel-body > .table.table-striped td {
        padding: 5px 10px;
    }
}

table.table thead th,
table.table tbody td {
    padding: 15px 20px !important;
}

@media (max-width: 1200px) {
    table.table thead th,
    table.table tbody td {
        padding: 5px 10px !important;
    }
}

/* Button */

.medium-button {
    display: flex;
    color: #FFF;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 6px 6px;
    gap: 6px;

    width: 84px;
    height: 32px;
}

.small-button {
    display: flex;
    padding: 6px !important;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
