:root {
    --success-color: #03bb33;
    --success-color-contrast: #fff;
    --success-color-hover: #03aa2e;
    --alert-color: #fd2f42;
    --alert-color-contrast: #fff;
    --alert-color-hover: #fc4c5d;
    --not-approved-color: #fdd5e3;
    --new-color: #000;
}

body {
    background-color: #f5f5f5;
    color: #555;
    height: 100%;
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

a,
.animo {
    -webkit-transition: all .1s ease-in-out;
    -moz-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out;
    color: #000;
}

select {
    border-radius: 5px;
}

.btn-check-vat {
    background-color: var(--secundary-color);
    color: var(--secundary-color-contrast);
    padding: 10px 15px;
    border-radius: 5px;
    display: inline-block;
    margin: 0 0 15px 0;
    font-size: 12px;
    text-transform: uppercase;
}

.btn-check-vat:hover {
    color: #fff;
    text-decoration: none;
    background-color: var(--secundary-color-hover);
}

.float_right {
    float: right;
}

.float_left {
    float: left;
}

.main-container {
    padding: 0 0 45px 0;
    flex: 1;
    overflow-x: hidden;
}

.container{
    width:90%;
    max-width:2000px;
    padding-right:15px;
    padding-left:15px;
    margin-right:auto;
    margin-left:auto
}

.fancybox-container,
.ui-autocomplete {
    z-index: 999999999999999;
}

.btn-palette {
    position: absolute;
    top: 0px;
    left: 3px;
    color: #fff;
    opacity: 0.3;
    z-index: 98;
    font-size: 14px;
}

.btn-palette:hover {
    opacity: 1;
    color: #fff;
}

.color-picker {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #fff;
    padding: 5px 0 0 5px;
    display: none;
    width: 95px;
    z-index: 99;
}

.alias {
    cursor: alias;
}

@media(min-width:768px) {
    .main-container {
        overflow-x: initial;
    }
    .btn-palette {
        top: 5px;
        left: 10px;
        font-size: 16px;
    }
    .color-picker {
        top: 7px;
        left: 5px;
    }
}

.color-picker a {
    display: block;
    float: left;
    width: 40px;
    height: 20px;
    margin: 0 5px 5px 0;
}

.color-picker a span {
    display: block;
    float: left;
    width: 20px;
    height: 20px;
}

.color-picker a:hover {
    opacity: 0.8;
}

.color-picker a.color-0 span:first-child {
    background-color: #2ca399;
}

.color-picker a.color-0 span:last-child {
    background-color: #1e5076;
}

.color-picker a.color-1 span:first-child {
    background-color: #ed8d35;
}

.color-picker a.color-1 span:last-child {
    background-color: #543dbb;
}

.color-picker a.color-2 span:first-child {
    background-color: #6bc9e2;
}

.color-picker a.color-2 span:last-child {
    background-color: #2e5762;
}

.color-picker a.color-3 span:first-child {
    background-color: #843b62;
}

.color-picker a.color-3 span:last-child {
    background-color: #0b032d;
}

.color-picker a.color-4 span:first-child {
    background-color: #c05d4f;
}

.color-picker a.color-4 span:last-child {
    background-color: #2c313c;
}

.color-picker a.color-5 span:first-child {
    background-color: #ffc310;
}

.color-picker a.color-5 span:last-child {
    background-color: #000000;
}

.trial {
    color: #ffc310;
    font-weight: bold; 
}

.stopped {
    color: red;
    font-weight: bold;
}

.todo-item i.white {
    color: white!important;
}

.todo-item i.small-icon {
    font-size: 10px!important;
}


/*
 ALERTS
 */

.alert-box-container {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999998;
}

.alert-box {
    background-color: #fff;
    position: fixed;
    top: 15px;
    left: 15px;
    right: 15px;
    padding: 30px 56px 30px 30px;
    text-align: center;
    z-index: 99999;
    border-radius: 5px;
    font-size: 14px;
}

.alert-box:first-letter {
    text-transform: capitalize;
}

.alert-box-error {
    background-color: var(--alert-color);
    color: var(--alert-color-contrast);
}

.alert-box-success {
    background-color: var(--success-color);
    color: var(--success-color-contrast);
}

.alert-box-info {
    background-color: #0090ff;
    color: #fff;
}

.close-alert-box {
    color: inherit;
    position: absolute;
    font-size: 20px;
    line-height: 20px;
    top: 8px;
    right: 10px;
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0.85;
    text-decoration: none;
}

.close-alert-box:hover {
    color: inherit;
    opacity: 1;
    text-decoration: none;
}

@media(min-width:768px) {
    .alert-box {
        width: 600px;
        left: 50%;
        margin-left: -300px;
        right: auto;
        font-size: 16px;
    }
}

.btn-default{
    display: inline-block;
    background-color: #2ca399;
    color: #fff;
    font-size: 14px;
    line-height: 1;
    text-transform: uppercase;
    padding: 15px 20px;
    border-radius: 5px;
}
.btn-default:hover{
    text-decoration: none;
    color: #fff;
    background-color: #31B4A8;
}

/*
 TOPBAR
 */

.topbar-container {
    background-color: var(--secundary-color);
    text-align: center;
}

.topbar {
    padding: 15px 0;
}

.topbar-title {
    color: var(--secundary-color-contrast);
    font-size: 18px;
    line-height: 24px;
    width: 100%;
    float: left;
    padding: 0 0 15px 0;
}

.topbar-title a {
    color: var(--secundary-color-contrast);
    text-decoration: none !important;
}

.topbar-title img {
    display: none;
}

.topbar-icon-row {
    padding: 0;
    width: 100%;
    float: left;
    text-align: center;
}

.topbar-icon {
    color: var(--secundary-color-contrast);
    font-size: 20px;
    line-height: 20px;
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 5px;
    position: relative;
    border: solid 1px var(--secundary-color-contrast);
    text-align: center;
}

.topbar-icon:hover {
    background-color: var(--secundary-color-contrast);
    color: var(--secundary-color);
}

.topbar-icon .counter {
    background-color: var(--alert-color);
    color: var(--alert-color-contrast);
    border-radius: 50%;
    width: 16px;
    height: 16px;
    line-height: 14px;
    font-size: 10px;
    display: block;
    position: absolute;
    top: 4px;
    right: 3px;
    text-align: center;
}

@media(min-width:768px) {
    .topbar-container {
        text-align: left;
    }
    .topbar-title {
        width: 40%;
        padding: 0 0 0 15px;
    }
    .topbar-icon-row {
        width: 60%;
        padding: 0 15px 0 0;
    }
    .topbar-title {
        height: 50px;
        display: table;
    }
    .topbar-title span {
        font-size: 24px;
        display: table-cell;
        vertical-align: middle;
    }
    .topbar-title span:first-child {
        width: 65px;
    }
    .topbar-title img {
        display: block;
        height: 50px;
    }
}


/*
 TITLEBAR
 */

.title-bar-container {
    background-color: var(--primary-color);
}
.title-bar-container {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.title-bar {
    padding: 15px 0;
}

.title-bar-user a {
    color: var(--primary-color-contrast);
    display: inline-block;
    border: solid 1px var(--primary-color-contrast);
    border-radius: 5px;
    padding: 5px 10px;
}

.title-bar-user-icon {
    font-size: 18px;
    line-height: 20px;
    margin: 0 5px 0 0;
}

.title-bar-user-name {
    font-size: 14px;
    line-height: 20px;
}

.title-bar-user a:hover {
    background-color: var(--primary-color-contrast);
    color: var(--primary-color);
    text-decoration: none;
}

.icon-toggle-nav {
    color: var(--primary-color-contrast);
    font-size: 24px;
    line-height: 24px;
}

.icon-toggle-nav:hover,
.icon-toggle-nav:active,
.icon-toggle-nav:focus,
.icon-toggle-nav:visited {
    color: var(--primary-color-contrast);
}

.icon-nav-mobile-search {
    color: var(--primary-color-contrast);
    font-size: 24px;
    line-height: 24px;
    margin-right: 15px;
}

.icon-nav-mobile-search:hover,
.icon-nav-mobile-search:focus,
.icon-nav-mobile-search:active,
.icon-nav-mobile-search:visited {
    color: var(--primary-color-contrast);
}

@media(min-width:992px) {
    .icon-toggle-nav {
        display: none;
    }
}


/*
 SEARCH
 */

.advanced-search {
    display: none;
}

.btn-show-advanced-search {
    display: block;
    color: #555;
    margin: 5px 0 0 5px;
    font-size: 14px;
}

.btn-show-advanced-search:hover {
    color: #555;
    text-decoration: none;
}


/*
 NAV
 */

.nav-mobile {
    position: absolute;
    left: 0;
    right: 0;
    display: none;
    z-index: 98;
}

.show-nav-mobile {
    display: block !important;
}

.nav-mobile-items {
    float: left;
    width: 100%;
    background-color: #f5f5f5;
}

.nav-mobile-item {
    display: block;
    padding: 10px 15px;
    border-bottom: solid 1px #ddd;
    color: #555;
}

.nav-mobile-item-icon {
    width: 20px;
    display: inline-block;
}

.nav-mobile-item-title {
    display: inline-block;
    font-size: 16px;
}

.nav {
    display: none;
}

@media(min-width:992px) {
    .nav {
        display: block;
    }
    .nav a {
        display: inline-block;
        color: var(--primary-color-contrast);
        padding: 10px;
        font-size: 18px;
    }
    .nav a:hover {
        text-decoration: none;
    }
    .nav .btn-nav {
        background-color: var(--secundary-color);
        color: var(--secundary-color-contrast);
        font-size: 14px;
        border-radius: 5px;
        text-transform: uppercase;
    }
}


/*
 CRUMBS
 */

.crumbs {
    padding-top: 15px;
    font-size: 14px;
    color: #888;
}

.crumbs a {
    color: #888;
}

.crumbs span {
    color: #888;
}

.crumbs span.current {
    color: #555;
}


/*
 GENERAL
 */

.hidden {
    display: none;
}


/*
 PAGE TITLE
 */

.page-title {
    font-size: 24px;
    line-height: 28px;
    font-weight: bold;
    padding: 15px 0 0 0;
    margin: 0 0 5px 0;
    color: #555;
}

@media(min-width:992px) {
    .page-title {
        padding: 30px 0 15px 0;
        margin: 0;
        font-size: 40px;
        line-height: 40px;
    }
}

.stamp-terminated {
    font-size: 12px;
    line-height: 12px;
    color: red;
    border: solid 2px red;
    border-radius: 5px;
    padding: 5px 10px;
    text-transform: uppercase;
    position: absolute;
    top: 16px;
    left: 160px;
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.7);
}

.double-iban-container {
    position: relative;
}

.double-iban {
    font-size: 10px;
    line-height: 10px;
    color: red;
    border: solid 1px red;
    border-radius: 5px;
    padding: 5px 5px;
    text-transform: uppercase;
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.7);
    transform: rotate(10deg);
    font-weight: bold;
}

.double-iban:hover {
    color: red;
    text-decoration: none;
}

@media(min-width:992px) {
    .stamp-terminated {
        font-size: 16px;
        line-height: 16px;
        transform: rotate(10deg);
        padding: 10px 15px;
        left: 250px;
        top: 20px;
    }
}

.stamp-active {
    font-size: 12px;
    line-height: 12px;
    color: #64d039;
    border: solid 2px #64d039;
    border-radius: 5px;
    padding: 5px 10px;
    text-transform: uppercase;
    position: absolute;
    top: 16px;
    left: 160px;
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.7);
}

@media(min-width:992px) {
    .stamp-active {
        font-size: 16px;
        line-height: 16px;
        transform: rotate(10deg);
        padding: 10px 15px;
        left: 250px;
        top: 20px;
    }
}


/*
  SUB NAV
--------- */

.nav-item-container {
    float: left;
    position: relative;
}

.dropdown-navigation {
    position: absolute;
    top: 98%;
    left: 0;
    background-color: #fff;
    z-index: 9;
    border-radius: 5px;
    border: solid 1px #ddd;
    -webkit-box-shadow: 0px 6px 15px -8px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 6px 15px -8px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 6px 15px -8px rgba(0, 0, 0, 0.75);
    width: 632px;
    display: none;
    z-index: 9999999999;
}

#sub-nav-settings {
    width: 210px;
}

.dropdown-navigation ul {
    margin: 0;
    padding: 0;
}

.dropdown-navigation li {
    float: left;
    width: 100%;
    list-style: none;
    position: relative;
}

.dropdown-navigation li.dropdown-container ul {
    position: absolute;
    top: 0;
    right: 100%;
}

.dropdown-navigation a.sub-nav-item,
.dropdown-navigation a.sub-sub-nav-item,
.dropdown-navigation a.sub-sub-sub-nav-item {
    display: block;
    float: left;
    width: 100%;
    color: #555;
    padding: 15px 15px;
    text-align: left;
    font-size: 14px;
    line-height: 16px;
    font-style: normal;
}

.dropdown-navigation a.sub-nav-item:hover,
.dropdown-navigation a.sub-nav-item.current {
    background-color: #e5e5e5;
    color: #000;
    font-weight: bold;
;
}

.dropdown-navigation a.sub-sub-nav-item:hover,
.dropdown-navigation a.sub-sub-nav-item.current {
    background-color: #eeeeee;
    color: #000;
    font-weight: bold;
}

.dropdown-navigation a.sub-sub-sub-nav-item:hover {
    background-color: #f5f5f5;
    color: #000;
    font-weight: bold;

}

.dropdown-navigation .main-nav {
    float: left;
    width: 210px;
    background-color: #eee;
    min-height: 500px;
    max-height: 500px;
    overflow-y: scroll;
}

.dropdown-navigation .sub-nav ul {
    display: none;
}

.dropdown-navigation .sub-nav {
    float: left;
    width: 210px;
    background-color: #f5f5f5;
    min-height: 500px;
}

.dropdown-navigation .sub-sub-nav ul {
    display: none;
}

.dropdown-navigation .sub-sub-nav {
    float: left;
    width: 210px;
    background-color: #ffffff;
    min-height: 500px;
}


/*
 PRINT BTN
*/

.only-print {
    display: none;
}

.print-date {
    display: block;
    font-size: 12px;
    color: #aaa;
}

.print-date i {
    margin-right: 5px;
}

.btns-fast-actions {
    display: none;
}

.btn-print {
    display: none;
    background-color: var(--secundary-color);
    color: var(--secundary-color-contrast);
}

.btn-print:hover {
    background-color: var(--secundary-color-hover);
    color: var(--secundary-color-contrast);
}

@media(min-width:992px) {
    .btns-fast-actions {
        display: block;
        padding-top: 20px;
    }
    .btn-print {
        display: inline-block;
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 22px;
        border-radius: 5px;
        text-align: center;
    }
}


/*
 SEARCH IN MODULE
 */

.search-in-module {
    margin: 15px 0 15px 0;
    float: left;
}

.search-in-module input {
    border: solid 1px #ddd;
    border-right: none;
    padding: 10px;
    height: 50px;
    font-size: 16px;
    min-width: 230px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    float: left;
}

.search-in-module button {
    background-color: var(--secundary-color);
    color: var(--secundary-color-contrast);
    height: 50px;
    width: 50px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    float: left;
    border: none;
}

@media(min-width:992px) {
    .search-in-module {
        float: right;
    }
}


/*
 FILTERS
 */

.filters {
    margin: 0 0 10px 0;
}

.filter-btn {
    display: inline-block;
    border: solid 1px #ccc;
    border-radius: 5px;
    padding: 10px;
    font-size: 14px;
    line-height: 14px;
    color: #888;
    margin: 0 0 5px 0;
    min-width: 50px;
    text-align: center;
}

.filter-btn:hover {
    background-color: #eee;
    text-decoration: none;
    color: #555;
}

.filter-btn-active {
    background-color: var(--primary-color);
    color: var(--primary-color-contrast);
    border-color: var(--primary-color);
}

.filter-btn-active:hover {
    background-color: var(--primary-color);
    text-decoration: none;
    color: var(--primary-color-contrast);
}

.filter-btn em {
    font-style: normal;
    font-size: 12px;
}

.btn-back {
    background-color: var(--secundary-color);
    color: var(--secundary-color-contrast);
    border-color: var(--secundary-color);
}

.btn-back:hover {
    background-color: var(--secundary-color-hover);
    color: var(--secundary-color-contrast);
}

.btn-back i {
    width: 20px;
}


/*
  NAV ACTIONS
*/

.nav-actions {
    margin: 15px 0 0 0;
}

.nav-actions-btn {
    display: inline-block;
    border: solid 1px #ccc;
    border-radius: 5px;
    padding: 10px;
    font-size: 14px;
    line-height: 14px;
    color: #888;
    min-width: 50px;
    text-align: center;
    margin: 0 0 5px 0;
}

.nav-actions-btn:hover {
    background-color: #eee;
    text-decoration: none;
    color: #555;
}


/* 
 BTN NEW
 */

.btn-new {
    border: solid 1px var(--primary-color);
    color: var(--primary-color);
    padding: 10px 15px;
    display: inline-block;
    border-radius: 5px;
    margin: 0 0 15px 0;
}

.btn-new i {
    width: 15px;
}

.btn-new:hover {
    background-color: var(--primary-color);
    color: var(--primary-color-contrast);
    text-decoration: none;
}

@media(min-width:768px) {
    .btn-new {
        float: left;
    }
}

.btn-new.btn-sm {
    padding: 4px 8px;
    margin: 0;
    min-width: 50px;
}

/*
 DASHBOARD
 */

.dashboard-title {
    font-size: 20px;
    line-height: 20px;
    font-weight: bold;
    padding: 15px 0 0 0;
    margin: 0 0 10px 0;
    color: #888;
}

.dashboard-title i {
    color: #ccc;
}

.dashboard-item {
    background-color: #fff;
    padding: 15px;
    border: solid 1px #ddd;
    border-radius: 5px;
    margin: 0 0 30px 0;
}

.dashboard-todo {
    padding: 5px 15px;
}

.todo-item {
    display: block;
    padding: 10px 0;
    border-bottom: solid 1px #ddd;
}

.todo-item:last-child {
    border: none;
}

.todo-item i {
    margin: 4px 5px 0 0;
    display: inline-block;
    float: left;
    color: #000 !important;
    font-size: 16px !important;
}

.todo-item a {
    display: inline-block;
    color: #888;
    font-size: 14px;
}

.todo-item a:hover, .todo-item a:hover .todo-location {
    text-decoration: none;
    color: #555;
}
.todo-item .todo-location i {
    margin-top: 0;
    color: #888 !important;
}

.todo-tag {
    display: inline-block;
    font-size: 10px;
    text-transform: uppercase;
    background-color: #eee;
    padding: 2px 5px;
    margin: 0 5px 0 0;
    border-radius: 3px;
}

.todo-tag.tag-delete {
    background-color: #fd2f42;
    color: #fff;
}

.todo-tag.tag-check {
    background-color: #0090ff;
    color: #fff;
}

.todo-tag.tag-start {
    background-color: #2CAE1D;
    color: #fff;
}

.todo-tag.tag-custom {
    background-color: #ff00c0;
    color: #fff;
}

.todo-tag.tag-varia {
    background-color: #eee;
    color: #ccc;
}

.show-container-part .dashboard-todo {
    border: none;
    padding: 0 10px 0 10px;
    margin: 0;
}

.show-container-part .todo-item {
    border: none;
    border-bottom: solid 1px #eee;
}

.show-container-part .todo-item:last-child {
    border: none;
}

.todo-user {
    font-size: 12px;
    background-color: #ccc;
    color: #fff;
    padding: 3px 10px 3px 10px;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
    margin: 0 0 0 5px;
    display: inline-block;
}

.todo-completed {
    text-decoration: line-through;
    color: #ccc;
}

.todo-completed a,
.todo-completed span {
    text-decoration: line-through;
    color: #ccc;
}

.todo-completed .todo-tag {
    background-color: #f5f5f5;
    color: #ccc;
}

.todo-completed .todo-user {
    background-color: #f5f5f5;
    color: #ccc;
}

.dashboard-attention {
    padding: 0;
    border: none;
}

.attention-item {
    padding: 5px 10px;
    font-size: 14px;
    border-bottom: solid 1px #fff;
}

.attention-item i {
    width: 20px;
}

.attention-item:first-child {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.attention-item:last-child {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    border-bottom: none;
}

.attention-item a {
    color: #fff;
}

.attention-item a:hover {
    color: #eee;
    text-decoration: none;
}

.attention-alert {
    background-color: #fd2f42;
    color: #fff;
}

.attention-warning {
    background-color: #ffb400;
    color: #463202;
}

.attention-warning a {
    color: #463202;
}

.attention-warning a:hover {
    color: #5b4102;
}

.dashboard-modules,
.dashboard-blocks {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin: 20px 0 40px;
}

@media (min-width: 768px) {
    .dashboard-modules,
    .dashboard-blocks {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1200px) {
    .dashboard-modules,
    .dashboard-blocks {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.dashboard-blocks {
    padding: 0;
    margin-left: 0;
    margin-right: 0;
}

.dashboard-block {
    margin: 0;
    width: 100%;
}

.module-sections {
    display: grid;
    gap: 36px;
    margin-bottom: 40px;
}

.module-section {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 24px;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 25px 45px rgba(15, 23, 42, 0.06);
    padding: 32px;
    backdrop-filter: blur(10px);
}

.module-section-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.module-section .dashboard-modules {
    margin: 28px 0 0;
}

.dashboard-block a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 170px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(245, 247, 250, 0.95));
    border-radius: 18px;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
    padding: 32px 20px;
    text-align: center;
    color: var(--primary-color);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.dashboard-block a:hover {
    text-decoration: none;
    transform: translateY(-6px);
    border-color: rgba(15, 23, 42, 0.18);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.2);
}

.dashboard-block .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: var(--accent-color);
    margin-bottom: 18px;
    transition: background 0.2s ease;
}

.dashboard-block .icon span {
    display: inline-block;
    color: var(--accent-color-contrast);
    font-size: 28px;
    line-height: 1;
}

.dashboard-block a:hover .icon {
    background: rgba(0, 0, 0, 0.35);
}

.dashboard-block a:hover .icon span {
    color: var(--accent-color-contrast);
}

.dashboard-block .title {
    color: #000;
    font-size: 16px;
    font-weight: 600;
    text-transform: none;
    line-height: 1.4;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.dashboard-block .title .info {
    display: none;
}

.dashboard-block-group {
    width: 100%;
    margin: 0;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 22px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
    padding: 24px;
}

.dashboard-group-title {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 16px;
}

.dashboard-group-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.dashboard-group-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 12px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(245, 247, 250, 0.95));
    border: 1px solid rgba(15, 23, 42, 0.06);
    color: #111827;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    text-align: center;
}

.dashboard-group-item:hover {
    text-decoration: none;
    transform: translateY(-4px);
    border-color: rgba(15, 23, 42, 0.18);
    box-shadow: 0 14px 26px rgba(15, 23, 42, 0.15);
}

.dashboard-group-item .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--accent-color);
    flex: 0 0 auto;
}

.dashboard-group-item .icon span {
    display: inline-block;
    color: var(--accent-color-contrast);
    font-size: 22px;
    line-height: 1;
}

.dashboard-group-item .title {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
}

@media(max-width: 767.98px) {
    .dashboard-modules,
    .dashboard-blocks {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .dashboard-block a {
        min-height: 150px;
        padding: 24px 18px;
    }

    .dashboard-block .icon {
        width: 60px;
        height: 60px;
    }

    .dashboard-block .icon span {
        font-size: 24px;
    }

    .dashboard-block-group {
        padding: 18px;
    }

    .dashboard-group-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-group-grid.is-odd .dashboard-group-item:last-child {
        grid-column: auto;
        max-width: none;
    }
}

@media (max-width: 1199.98px) and (min-width: 768px) {
    .dashboard-group-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .dashboard-group-grid.center-last-2 .dashboard-group-item:last-child {
        grid-column: 1 / -1;
        justify-self: center;
        max-width: 360px;
        width: 100%;
    }
}

@media (min-width: 1200px) {
    .dashboard-group-grid.center-last-3 .dashboard-group-item:last-child {
        grid-column: 1 / -1;
        justify-self: center;
        max-width: 360px;
        width: 100%;
    }
}

.metric-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid rgba(15, 23, 42, 0.05);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.1);
    padding: 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.metric-card .metric-label {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(15, 23, 42, 0.65);
}

.metric-card .metric-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
}

.metric-card .metric-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 999px;
    background: var(--primary-color);
    color: var(--primary-color-contrast);
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.metric-card .metric-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.18);
    color: var(--primary-color-contrast);
}

@media(max-width: 991.98px) {
    .module-section {
        padding: 28px 24px;
    }
}


/*
 * TABLE RESULTS
 */

.table-responsive {
    overflow-x: auto;
    border: solid 1px #ddd;
    border-radius: 5px;
    background-color: #fff;
}

.table-responsive table {
    width: 100%;
}

.table-responsive tr {
    border-bottom: solid 1px #ddd;
}

.table-responsive tbody tr:last-child {
    border: none;
}

.table-responsive tr.action-unread td,
.table-responsive tr.message-unread td {
    font-weight: bold;
}

.table-responsive tr.deleted-item td {
    background-color: #fdecec;
    color: #9b2c2c;
    text-decoration: line-through;
}

.table-responsive th,
.table-responsive td {
    padding: 10px 10px;
    white-space: nowrap;
}

.table-responsive thead th {
    background-color: #eee;
    color: var(--primary-color);
}

.table-responsive thead th a {
    color: var(--primary-color);
}

.table-responsive th a i {
    line-height: 20px;
}

.table-responsive th a:hover {
    text-decoration: none;
}

.table-responsive td {
    background-color: #fff;
    font-size: 14px;
}

.table-responsive th:last-child {
    position: sticky;
    position: -webkit-sticky;
    right: 0;
    background: rgba(238, 238, 238, 0.9);
}

.table-responsive td:last-child {
    position: sticky;
    position: -webkit-sticky;
    right: 0;
    /*border-bottom:solid 1px #ddd;*/
    padding-bottom: 11px;
    z-index: 3;
}


/*
.table-responsive tr.tr-not-approved td{
  background-color:#fcedf2;
}
.table-responsive tr.tr-not-registered td{
  background-color:#fcedf2;
}
*/

.table-responsive td .btn-chat {
    font-size: 24px;
    color: #aaa;
}

.table-responsive td .btn-payments {
    font-size: 24px;
    color: #aaa;
}

.table-responsive td .btn-payments-ok {
    color: var(--success-color);
}

.table-responsive td .btn-payments-not-ok {
    color: var(--alert-color);
}

.table-responsive td .btn-chat-new {
    color: var(--alert-color);
}

.table-info {
    border-color: #eee;
    background-color: #fff;
}

.table-info tr {
    border-color: #eee;
}

.table-info th {
    border-color: #eee;
    background-color: #f5f5f5;
    font-size: 14px;
    color: #555;
}

.table-info th,
.table-info td {
    padding: 10px;
    border: none;
}

.table-info th:last-child {
    position: relative;
    right: auto;
    background: #f5f5f5;
}

.table-info td:last-child {
    position: relative;
    right: auto;
    padding-bottom: 5px;
    z-index: 3;
}

.table-info td a {
    color: var(--primary-color);
    font-weight: bold;
}

.table-info td a.btn-one-action {
    color: #fff;
}

.table-info tr.deleted-item td {
    background-color: #fdecec;
    text-decoration: line-through;
    color: #9b2c2c;
}

.table-info tr.deleted-item td .btn-one-action {
    background-color: #bbba;
    opacity: 0.7;
}

table tr.deleted-item td {
    background-color: #fdecec;
    color: #9b2c2c;
    text-decoration: line-through;
}

table tr.deleted-item td a {
    color: #9b2c2c;
}

.bnt-one-action-ok {
    background-color: #04fc3e !important;
}

.td-actions {
    width: 230px;
}

.action-container,
.message-container,
.task-container {
    float: right;
    position: relative;
}

.btn-action {
    background-color: var(--secundary-color);
    color: var(--secundary-color-contrast);
    padding: 7px 15px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    display: inline-block;
    display: none;
}

.btn-action i {
    width: 15px;
}

.btn-action:hover {
    background-color: var(--secundary-color-hover);
    color: var(--secundary-color-contrast);
    text-decoration: none;
}

.btn-more-actions {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--primary-color-contrast);
    padding: 7px 15px;
    border-radius: 5px;
    margin-left: 0;
}

.btn-back + .btn-back,
.btn-back + .btn-more-actions,
.btn-back + .btn-one-action,
.btn-more-actions + .btn-back,
.btn-more-actions + .btn-more-actions,
.btn-more-actions + .btn-one-action,
.btn-one-action + .btn-back,
.btn-one-action + .btn-more-actions {
    margin-left: 5px;
}

.btn-more-actions:hover {
    background-color: var(--primary-color-hover);
    color: var(--primary-color-contrast);
    text-decoration: none;
}

.btn-action-lg {
    background-color: var(--secundary-color);
    color: var(--secundary-color-contrast) !important;
    padding: 7px 15px;
    border-radius: 5px;
    display: inline-block;
    font-weight: normal !important;
}

.btn-action-lg i {
    width: 20px;
}

.btn-action-lg:hover {
    background-color: var(--secundary-color-hover);
    color: var(--secundary-color-contrast);
    text-decoration: none;
}

.action-container .btn-to-do {
    background-color: #fd2f42;
}

.deleted-item .btn-action {
    background-color: #aaa;
    color: #ccc;
}

.deleted-item .btn-more-actions {
    background-color: #999;
    color: #ccc;
}

.list-actions {
    position: absolute;
    top: 100%;
    left: auto;
    right: 0;
    min-width: 215px;
    background-color: #fff;
    z-index: 10;
    border: solid 1px #ddd;
    border-radius: 5px;
    display: none;
}

.list-actions-shown {
    display: block;
}

.btn-list-action {
    font-size: 14px;
    background-color: #fff;
    padding: 10px 5px 10px 5px;
    display: block;
    color: #555;
    border-bottom: solid 1px #ddd;
    -webkit-box-shadow: 0px 7px 10px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 7px 10px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 7px 10px 0px rgba(0, 0, 0, 0.2);
}

.btn-list-action:nth-child(2) {
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
}

.btn-list-action:last-child {
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    border: none;
}

.btn-list-action i {
    width: 30px;
    text-align: center;
}

.btn-list-action:hover {
    background-color: #f5f5f5;
    text-decoration: none;
    color: #555;
}

.btn-title {
    color: #555;
    font-weight: bold;
}

.btn-title:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.deleted-item .btn-title {
    color: #aaa;
}

.btn-one-action {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background-color: var(--secundary-color);
    color: var(--secundary-color-contrast);
    border-radius: 5px;
    text-align: center;
    border: none;
    margin: 0 0 0 5px;
}

.btn-one-action:hover {
    background-color: var(--secundary-color-hover);
    color: var(--secundary-color-contrast);
    text-decoration: none;
}

.btn-more-actions-only-icon {
    margin: 0 0 0 2px;
}

.btn-one-action-delete,
.btn-delete-task,
.btn-delete-periodic-task {
    background-color: var(--alert-color);
    color: var(--alert-color-contrast);
}

.btn-one-action-delete:hover,
.btn-delete-task:hover,
.btn-delete-periodic-task:hover {
    background-color: var(--alert-color-hover);
}

.btn-filter {
    background-color: var(--secundary-color);
    color: var(--secundary-color-contrast);
    padding: 10px 15px;
    border-radius: 5px;
    display: inline-block;
    font-size: 12px;
    margin: 0 0 15px 0;
}

.btn-filter:hover {
    background-color: var(--secundary-color-hover);
    color: var(--secundary-color-contrast);
    text-decoration: none;
}

@media(min-width:992px) {
    .table-responsive {
        overflow-x: scroll;
    }
    /*
  .table-responsive th:last-child{
    position:relative;
    right:auto;
    top:auto;
    background-color:#eee;
  }
  */
    .table-responsive tr:first-child th:first-child {
        border-top-left-radius: 5px;
    }
    .table-responsive tr:first-child th:last-child {
        border-top-right-radius: 5px;
    }
    /*
  .table-responsive td:last-child{
    position:relative;
    right:auto;
    border-bottom:0;
  }
  */
    .table-responsive tr:last-child td:first-child {
        border-bottom-left-radius: 5px;
    }
    .table-responsive tr:last-child td:last-child {
        border-bottom-right-radius: 5px;
    }
    .btn-one-action {
        margin: 0 0 0 5px;
    }
    .btn-action {
        display: inline-block;
    }
    .btn-more-actions {
        border-radius: 0;
        border-top-right-radius: 5px;
        border-bottom-right-radius: 5px;
    }
    .btn-more-actions-only-icon {
        border-radius: 5px;
        margin: 0 0 0 5px;
    }
    .btn-list-mobile {
        display: none;
    }
}

.list-items-info {
    float: left;
    background-color: #e8f4f9;
    color: #3893b9;
    font-size: 12px;
    padding: 5px;
    border: solid 1px #c9e9f7;
    border-radius: 3px;
    margin: 0 0 5px 0;
}

.list-items-count {
    color: #555;
    padding: 0 10px 5px 0;
    font-size: 14px;
    font-weight: bold;
    text-align: right;
    float: right;
}

@media(min-width:768px) {
    .list-items-info {
        margin: 15px 0 10px 0;
        padding: 5px 10px;
    }
    .list-items-count {
        margin: 28px 0 0 0;
    }
}

::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    border: 2px solid #f5f5f5;
}

.table-responsive input,
.table-responsive select {
    border: solid 1px #ddd;
    padding: 5px;
    border-radius: 5px;
    height: 30px !important;
}
.table-responsive div.dt-container div.dt-search input {
    max-width: 150px;
}
.table-rental-contract td {
    padding: 10px 5px;
    position: relative;
}

.table-rental-contract td span.unit {
    position: absolute;
    top: 10px;
    right: 5px;
    font-size: 12px;
    bottom: 11px;
    height: auto;
    line-height: 30px;
    width: 20px;
}

.table-rental-contract .ammount {
    width: 50px;
}

.table-rental-contract .product {
    width: 200px;
}

.table-rental-contract .id_bb {
    width: 180px;
}

.table-rental-contract .price {
    width: 90px;
    padding-right: 20px;
}

.table-rental-contract .discount,
.table-rental-contract .extra_discount,
.table-rental-contract .vat,
.table-rental-contract .cn_vat {
    width: 70px;
    padding-right: 20px;
}

.table-rental-contract .frequency {
    width: 30px;
}

.table-rental-contract .period {
    width: 150px;
}

.table-rental-contract .remark {
    width: 200px;
}

.table-rental-contract th {
    font-size: 12px;
}

.table-rental-contract input:read-only {
    background-color: #eee;
}

.table-rental-contract input:focus {
    outline: 0;
}

.btn-edit-line {
    display: block;
    color: var(--primary-color);
}

.btn-edit-line:hover {
    color: var(--primary-color-hover);
}

.btn-add,
.btn-add-line,
.btn-add-line-sub,
.btn-add-invoiceline,
.btn-add-invoicelinecustom,
.btn-add-invoiceline-sub,
.btn-add-cninvoiceline-sub,
.btn-add-cninvoiceline,
.btn-add-lcestimateline,
.btn-add-cainvoiceline {
    float: right;
    display: inline-block;
    border: none;
    color: var(--secundary-color-contrast);
    background-color: var(--secundary-color);
    padding: 10px 15px;
    border-radius: 5px;
    margin-top: 15px;
    font-size: 14px;
}

.btn-add:hover,
.btn-add-line:hover,
.btn-add-invoiceline:hover,
.btn-add-invoicelinecustom:hover,
.btn-add-cainvoiceline:hover,
.btn-add-line-sub:hover,
.btn-add-invoiceline:hover,
.btn-add-lcestimateline:hover,
.btn-add-invoiceline-sub:hover {
    color: var(--secundary-color-contrast);
    background-color: var(--secundary-color-hover);
    text-decoration: none;
}

.table-info tr.line-total td {
    border-top: solid 2px #ccc;
    font-weight: bold;
}

.delete-line {
    color: red;
}

.delete-line:hover {
    color: red;
}

div.dt-container div.dt-paging ul.pagination {
    margin: 10px 15px 10px 0;
}

.page-nr {
    background-color: #fff;
    color: #555;
    font-size: 14px;
    padding: 7px 12px;
    border-left: solid 1px #ddd;
    border-top: solid 1px #ddd;
    border-bottom: solid 1px #ddd;
    float: left;
}

.page-nr:first-child {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.page-nr:last-child {
    border-right: solid 1px #ddd;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.page-nr:hover {
    background-color: #eee;
    text-decoration: none;
    color: #555;
}

.current-page-nr,
.current-page-nr:hover {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
    color: var(--primary-color-contrast);
}


/* 
 * FORM
 */

::-webkit-input-placeholder {
    /* Edge */
    color: #aaa;
}

:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #aaa;
}

::placeholder {
    color: #aaa;
}

.form-container {
    padding-bottom: 75px;
}

.form-group-container {
    margin: 0 0 15px 0;
}

.form-title a {
    display: block;
    background-color: var(--primary-color);
    color: var(--primary-color-contrast);
    font-size: 16px;
    line-height: 18px;
    padding: 10px 15px;
    border-radius: 5px;
}

.form-title a:hover {
    text-decoration: none;
    background-color: var(--primary-color-hover);
}

.form-title a.no-dropdown:hover {
    background-color: var(--primary-color);
    color: var(--primary-color-contrast);
    cursor: initial;
}

.form-title a:active,
.form-title a:focus {
    text-decoration: none;
}

.form-title i {
    float: right;
    line-height: 18px;
}

.form-title i.fa-plus-circle {
    float: left;
    padding: 1px 10px 0 0;
}

.form-sub-group {
    width: 100%;
    margin: 0 0 15px 0;
}

.form-sub-group-title {
    width: 100%;
    margin-bottom: 5px;
}

.form-sub-group-title a {
    display: block;
    background-color: #ddd;
    color: #555;
    font-size: 16px;
    line-height: 18px;
    padding: 10px 15px;
    border-radius: 5px;
}

.form-sub-group-title a:hover,
.form-sub-group-title a:focus {
    text-decoration: none;
    background-color: #d5d5d5;
}

.form-sub-group-title a i {
    float: right;
    line-height: 18px;
}

.form-sub-group-content {
    display: none;
}

.check-postal-code {
    display: inline-block;
    margin: 5px;
}

.check-postal-code label {
    padding: 10px;
    border-radius: 5px;
    font-size: 12px;
    background-color: #f5f5f5;
    line-height: 12px;
    cursor: pointer;
    margin: 0;
    border: solid 1px #eee;
}

.steps {
    margin: 0 0 15px 0;
}

.step a {
    display: block;
    color: #aaa;
    padding: 0 10px 5px 10px;
    font-size: 14px;
}

.step-active a {
    color: #555;
}

.step a span {
    font-size: 20px;
    font-style: italic;
    color: #aaa;
    font-weight: bold;
    display: inline-block;
}

.step-active a span {
    color: var(--primary-color);
}

.step a:hover {
    text-decoration: none;
}

@media(min-width:768px) {
    .steps {
        margin-top: 15px;
        margin-bottom: 0;
    }
    .step {
        border: solid 1px #ddd;
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
    }
    .step a {
        padding: 10px 5px 10px 10px;
        font-size: 14px;
        line-height: 16px;
        background-color: #eee;
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
    }
    .step .step-disabled {
        cursor: default;
    }
    .step a:hover {
        background-color: #e5e5e5;
    }
    .step a.step-disabled:hover {
        background-color: #eee;
    }
    .step a span {
        font-size: 14px;
    }
    .step-active {
        border-top: solid 1px #ddd;
        border-left: solid 1px #ddd;
        border-right: solid 1px #ddd;
        border-bottom: solid 1px #fff;
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
    }
    .step-active a {
        background-color: #fff;
    }
    .step-active a:hover {
        background-color: #fff;
    }
    .step-active a {}
}

@media(min-width:992px) {
    .step a {
        font-size: 14px;
    }
    .step a span {
        font-size: 16px;
    }
}

@media(min-width:1200px) {
    .step a {
        font-size: 16px;
    }
    .step a span {
        font-size: 20px;
    }
}

.hide-info-owner-company {
    display: none;
}


/*
  DATATABLES
------------ */

.dataTables_length,
.dataTables_filter,
.pagination {
    font-size: 12px;
    justify-content: right;
}

.dataTables_length label,
.dataTables_filter label {
    font-weight: bold;
}

.dataTables_length a,
.dataTables_filter a,
.pagination a.page-link {
    color: #000;
}

.dataTable td {
    position: relative;
}

#list-filter {
    margin: 0 0 15px 0;
}

.page-item.active .page-link {
    background-color: var(--primary-color);
    color: var(--primary-color-contrast);
    border-color: var(--primary-color);
}

.page-link {
    padding: 5px 8px;
}


.pagination li.paginate_button.page-item {
    float: left;
}

.dataTables_info {
    font-size: 12px;
    padding: 15px 0;
}

.dtt-action {
    padding: 10px 15px 0 15px;
    background-color: #fff;
}

div.dt-container .dtt-action div.dt-paging ul.pagination {
    margin: 0 0 10px;
}

.dtt-footer {
    padding: 0 30px;
    background-color: #eee;
}

.table-responsive thead tr:last-child th {
    background-color: #f5f5f5;
}

.table-responsive thead tr:last-child th input {
    padding: 5px;
    border-radius: 5px;
    border: solid 1px #ddd;
    width: 100%;
}

.table-responsive #example th,
.table-responsive #example td {
    white-space: space wrap;
}

@media(min-width:992px) {
    .page-link {
        padding: .5rem .75rem;
    }
    .dataTables_info {
        font-size: 14px;
    }
}

.form-group {
    background-color: #fff;
    padding: 15px;
    border-radius: 5px;
    border: solid 1px #ddd;
    display: none;
}

.bt5-form-group {
    margin-bottom: 1rem;
}

.bt5-form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.bt5-form-control:focus {
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.map-legend {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 400px;
}

.map-legend h4 {
    margin-top: 0;
}

.map-legend ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.map-legend ul li {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.legend-icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 5px;
}



.form-group-open {
    display: block;
}

.form-group-container:first-child .form-group {
    display: block;
}

.form-input-row {
    width: 100%;
    margin: 0 0 15px 0;
    position: relative;
}

.form-input-row label {
    display: block;
    font-weight: bold;
    font-size: 14px;
    margin: 0 0 2px 0;
}

.form-input-row .input-upload {
    border: none;
    padding: 0;
    height: auto;
    border-radius: 0;
}

.unit {
    position: absolute;
    bottom: 1px;
    right: 1px;
    height: 48px;
    width: 48px;
    background-color: #ddd;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    line-height: 50px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    border-left: solid 1px #ccc;
}

.form-input-row .helper {
    font-size: 12px;
    display: block;
    margin: 5px 0 0 5px;
    color: #888;
}

.checkbox-group .helper {
    font-size: 12px;
    display: block;
    margin: 0 0 10px 0;
    color: #777;
    padding: 0;
}

.form-input-row-checkbox {
    /*margin-top:30px;*/
}

.form-input-row-checkbox label {
    font-weight: normal;
    margin: 13px 0;
}

.multiple-boxes label {
    margin: 0 !important;
}

.form-input-row-checkbox input {
    width: auto !important;
    height: auto !important;
    margin: 0 5px 0 0;
}

.switch-toggle .form-input-row-checkbox label,
.switch-group .form-input-row-checkbox label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 12px;
}

.switch-toggle .form-input-row-checkbox input[type="checkbox"],
.switch-group .form-input-row-checkbox input[type="checkbox"] {
    -webkit-appearance: none;
    appearance: none;
    width: 44px !important;
    height: 24px !important;
    border-radius: 999px;
    background-color: #d4d4d4;
    border: 1px solid #c7c7c7;
    position: relative;
    margin: 0;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.switch-toggle .form-input-row-checkbox input[type="checkbox"]::before,
.switch-group .form-input-row-checkbox input[type="checkbox"]::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
}

.switch-toggle .form-input-row-checkbox input[type="checkbox"]:checked,
.switch-group .form-input-row-checkbox input[type="checkbox"]:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.switch-toggle .form-input-row-checkbox input[type="checkbox"]:checked::before,
.switch-group .form-input-row-checkbox input[type="checkbox"]:checked::before {
    transform: translateX(20px);
}

.switch-toggle .form-input-row-checkbox label span,
.switch-group .form-input-row-checkbox label span {
    order: 1;
}

.switch-toggle .form-input-row-checkbox label input,
.switch-group .form-input-row-checkbox label input {
    order: 2;
}

.form-input-row select {
    border: solid 1px #ccc;
    width: 100%;
    padding: 10px;
    background-color: #fff;
    height: 50px;
    border-radius: 5px;
}

.form-input-row input {
    border: solid 1px #ccc;
    width: 100%;
    padding: 10px;
    height: 50px;
    border-radius: 5px;
}

.form-input-row input:read-only {
    background-color: #eee;
    color: #aaa;
}

input[type="text"]:disabled {
    background-color: #eee;
    color: #888;
}

.form-input-row textarea {
    border: solid 1px #ccc;
    width: 100%;
    padding: 10px;
    border-radius: 5px;
}

.form-group-divider {
    width: 100%;
    height: 1px;
    border-top: solid 2px #ddd;
    margin: 45px 0 30px 0;
    position: relative;
    letter-spacing: 1px;
}

.form-group-divider-first {
    margin-top: 20px;
}

.form-group-divider span {
    position: absolute;
    top: -7px;
    left: 15px;
    color: #888;
    font-size: 12px;
    line-height: 12px;
    text-transform: uppercase;
    padding: 0 10px;
    background-color: #fff;
}

.btn-upload {
    background-color: var(--secundary-color);
    color: var(--secundary-color-contrast);
    padding: 15px;
    border: none;
    border-radius: 5px;
}

.btn-upload:hover {
    background-color: var(--secundary-color-hover);
}

.btn-upload i {
    width: 20px;
}

.form-input-row-file input {
    border: none;
    padding-left: 0;
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

.form-input-row-file label.btn-input-file {
    display: block;
    width: 150px;
    font-size: 14px;
    padding: 15px;
    background-color: var(--secundary-color);
    color: var(--secundary-color-contrast);
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
}

.form-input-row-file label.btn-input-file:hover {
    background-color: var(--secundary-color-hover);
}

.file-details {
    font-size: 14px;
}

.file-preview-container {
    margin: 0 0 5px 0;
    position: relative;
    display: inline-block;
    border: solid 2px #eee;
    padding: 5px;
    background-color: #fff;
}

.file-preview {
    display: block;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    background-size: contain;
    -o-background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    height: 100px;
    width: 150px;
}

.file-preview span {
    position: absolute;
    left: 15px;
    right: 15px;
    color: #555;
    font-size: 12px;
    text-align: center;
    top: 40%;
}

.file-preview-container .delete-file {
    position: absolute;
    color: #ff0000;
    top: 5px;
    right: 5px;
    font-size: 18px;
    line-height: 18px;
    padding: 5px;
    background-color: #fff;
    border: none;
}

.file-preview img {
    height: 100px;
}

.message-after-ajax-call {
    background-color: #defddb;
    font-size: 12px;
    padding: 10px;
    color: #4b6548;
    margin: 5px 0;
    display: block;
}

.document-container {
    position: relative;
    float: left;
}

.document-container .message-after-ajax-call {
    float: left;
    width: 100%;
}

.popup-after-ajax-call {
    position: fixed;
    bottom: 30px;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 15px;
    color: #fff;
    width: 300px;
    text-align: center;
    left: 50%;
    margin-left: -75px;
    border-radius: 5px;
    display: none;
}

.form-input-group-title {
    color: var(--primary-color);
    font-weight: bold;
    padding: 0 0 5px 0;
}

.checkbox-group {
    margin: 0 0 15px 0;
}

.material-header-checkbox {
    min-width: 0 !important;
}

.checkbox-group .title,
.checkbox-title {
    padding: 0 0 5px 0;
    font-weight: bold;
    font-size: 14px;
}

.checkbox-group .form-input-row-checkbox {
    margin: 3px 0 0 -15px;
}

.btn-save-container {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 15px 15px;
    border-top: solid 1px #ddd;
    z-index: 12;
    text-align: center;
    display: none;
}

.btn-save {
    display: inline-block;
    border: solid 1px var(--success-color-contrast);
    color: var(--success-color-contrast);
    background-color: var(--success-color);
    padding: 10px 15px;
    border-radius: 5px;
    min-width: 200px;
}

.btn-save:hover {
    background-color: var(--success-color-hover);
    color: #fff;
    text-decoration: none;
}

.btn-save-container-absolute {
    position: absolute;
    background-color: transparent;
    border: none;
    bottom: -30px;
}

.btn-next {
    display: inline-block;
    border: solid 1px var(--primary-color);
    color: var(--primary-color-contrast);
    background-color: var(--primary-color);
    padding: 14px 15px;
    border-radius: 5px;
    min-width: 200px;
}

.btn-next:hover {
    background-color: var(--primary-color-hover);
}

.btn-prev {
    display: inline-block;
    border: solid 1px var(--primary-color);
    color: var(--primary-color-contrast);
    background-color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 5px;
    margin-bottom: 5px;
    /*min-width:150px;*/
}

.btn-prev:hover {
    color: var(--primary-color-contrast);
    background-color: var(--primary-color-hover);
    text-decoration: none;
}

.iban-check {
    font-size: 12px;
}

.iban-check-ok {
    color: #03bb33;
}

.iban-check-error {
    color: #fd2f42;
}

input.error,
textarea.error,
select.error {
    border-color: #ff0000 !important;
    background-color: #ffeaf1 !important;
}

label.error {
    color: #ff0000;
    position: absolute;
    font-size: 10px;
    font-weight: normal;
    right: 0;
}

.popup-input-row label.error {
    right: 15px;
    font-size: 10px !important;
    font-weight: normal !important;
}

.form-input-row .select-container {
    display: inline-block;
    position: relative;
}

.form-input-row .select-container-frequency {
    width: 100%;
}

.form-input-row .select-container-period {
    width: 100%;
}

@media(min-width:768px) {
    .form-input-row .select-container-frequency {
        width: 48%;
    }
    .form-input-row .select-container-period {
        width: 50%;
    }
}

@media(min-width:992px) {
    .form-container {
        padding-bottom: 90px;
    }
    .btn-prev {
        padding: 11px 15px;
        min-width: 150px;
        margin-bottom: 0;
    }
    .btn-save-container {
        padding: 15px;
    }
    .btn-save {
        padding: 15px;
    }
    .form-input-row .select-container-frequency {
        width: 30%;
    }
    .form-input-row .select-container-period {
        width: 69%;
    }
    .form-group-divider {
        border-top: dashed 1px #aaa;
    }
    .form-group-divider span {
        top: -9px;
        left: 14px;
        color: #555;
        font-size: 16px;
        line-height: 16px;
    }
}

.btn-edit {
    color: #555;
    font-size: 14px;
    border: solid 1px #ccc;
    padding: 5px 10px;
    border-radius: 5px;
    display: inline-block;
    background-color: #f5f5f5;
}

.btn-edit:hover {
    text-decoration: none;
    color: #000;
    background-color: #eee;
}


/*
  TABS
------ */

.form-tab {
    display: inline-block;
    background-color: #f5f5f5;
    border-radius: 5px;
    padding: 10px 10px;
    color: #bbb;
    border-top: solid 1px #ddd;
    border-left: solid 1px #ddd;
    border-right: solid 1px #ddd;
    border-bottom: solid 1px #ddd;
    margin: 0 0 5px 0;
    font-size: 12px;
}

.form-tab:hover {
    color: #aaa;
    background-color: #eee;
    text-decoration: none;
}

.form-tab-active {
    background-color: #fff !important;
    color: #555 !important;
    font-weight: bold;
}

.form-tab-content {
    display: none;
}

.form-tab-content-active {
    display: -ms-flexbox;
    display: flex;
}

#tab-loading {
    display: none;
    position: relative;
}

#tab-loading i {
    font-size: 32px;
    color: #ccc;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -16px;
    margin-left: -16px;
}

@media(min-width:992px) {
    .form-tabs {
        border-bottom: solid 1px #ddd;
        padding: 0 0 0 15px;
        margin: 0 0 30px 0;
    }
    .form-tab {
        padding: 10px 15px;
        margin: 0 0 -1px 0;
        font-size: 14px;
        border-radius: 0;
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
    }
    .form-tab-active {
        border-bottom: solid 1px #fff;
    }
}

#custom_netto_bb {
    display: none;
}


/*
 PHOTOS
 */

.photo {
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: 100px;
    width: 100%;
    display: block;
    border: solid 5px #f5f5f5;
    position: relative;
}

.photo-cover {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.3);
    opacity: 0;
}

.photo-cover i {
    color: #fff;
    position: absolute;
    font-size: 32px;
    line-height: 32px;
    top: 50%;
    left: 50%;
    margin-top: -16px;
    margin-left: -16px;
}

.photo:hover .photo-cover {
    opacity: 1;
}

.photo-delete {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--alert-color);
    color: var(--alert-color-contrast);
    font-size: 18px;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
}

.photo-delete:hover {
    color: var(--alert-color-contrast);
}

@media(min-width:768px) {
    .photo {
        height: 175px;
    }
}

@media(min-width:992px) {
    .photo {
        height: 200px;
    }
}


/*
 DOCUMENTS
 */

.document {
    height: 165px;
    width: 100%;
    display: table;
    border: solid 5px #f5f5f5;
    position: relative;
    background-color: #eee;
    border-radius: 5px;
    padding: 15px;
}

.document-content {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

.document-img {
    display: inline-block;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    background-size: contain;
    -o-background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    height: 65px;
    width: 50px;
}

.document-name {
    font-size: 8px;
    line-height: 8px;
    display: block;
    color: #555;
    text-align: center;
    margin: 5px 0 0 0;
}

.document:hover {
    text-decoration: none;
    background-color: #e5e5e5;
}

.document-icon {
    color: #888;
    font-size: 32px;
    line-height: 32px;
    display: block;
    text-align: center;
}

.document-icon img {
    height: 32px;
    max-width: 100%;
}

.document-size {
    display: block;
    font-size: 8px;
    text-align: center;
    color: #aaa;
    margin-bottom: 5px;
}

.document-folder {
    display: block;
    font-size: 10px;
    text-align: center;
    color: #555;
    margin-top: 0;
}

.document-cover {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.3);
    opacity: 0;
}

.document-cover i {
    color: #fff;
    position: absolute;
    font-size: 32px;
    line-height: 32px;
    top: 50%;
    left: 50%;
    margin-top: -16px;
    margin-left: -16px;
}

.document:hover .document-cover {
    opacity: 1;
}

.doc-btns {
    position: absolute;
    top: 0;
    right: 0;
}

.document-delete,
.icon-delete {
    background-color: var(--alert-color);
    color: var(--alert-color-contrast);
    font-size: 16px;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    display: inline-block;
    float: right;
    margin: 0 0 0 5px;
}

.image-delete,
.scanned-img-delete,
.icon-delete-img,
.client-file-delete {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--alert-color);
    color: var(--alert-color-contrast);
    font-size: 16px;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
}

.icon-delete-img:hover,
.icon-delete:hover,
.document-delete:hover,
.image-delete:hover,
.scanned-img-delete:hover,
.client-file-delete:hover {
    color: var(--alert-color-contrast);
}

.doc-edit {
    background-color: #000;
    color: #fff;
    font-size: 14px;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    display: inline-block;
    float: left;
    margin: 0 0 0 5px;
}

.doc-edit:hover {
    color: #fff;
}

@media(min-width:768px) {
    .document-name {
        font-size: 12px;
        line-height: 14px;
    }
    .document-size {
        font-size: 10px;
    }
}

.btn-choose-folder {
    color: #333;
    display: inline-block;
    text-align: center;
    width: 110px;
    background-color: #f5f5f5;
    padding: 10px 5px;
    margin: 0 2px 8px 2px;
    position: relative;
}

.btn-choose-folder .fa-folder {
    font-size: 50px;
    line-height: 50px;
    display: block;
    color: #aaa;
}

.btn-choose-folder .fa-check-circle {
    position: absolute;
    top: -5px;
    right: -5px;
    color: #03bb33;
    font-size: 22px;
    display: none;
}

.btn-choose-folder .title {
    font-size: 12px;
    display: block;
    margin: -5px 0 0 0;
}

.btn-choose-folder:hover {
    text-decoration: none;
    color: #000;
    background-color: #eee;
}

.folder-selected {
    color: #03bb33 !important;
}

.folder-selected i {
    color: #03bb33 !important;
}

.folder-selected .fa-check-circle {
    display: block;
}

.btn-save-doc-folder {
    margin-top: 15px;
}


/*
 SHOW
 */

.btns-info-action-container {
    position: fixed;
    width: 100%;
    right: 0;
    z-index: 99999;
}

#toggleNavActions {
    position: absolute;
    top: 0;
    left: -32px;
    width: 32px;
    height: 32px;
    background-color: var(--secundary-color);
    color: var(--secundary-color-contrast);
    border: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    text-align: center;
    padding: 0;
}

#toggleNavActions i {
    font-size: 18px;
    line-height: 32px;
}

.btns-info-action {
    top: -100px;
    padding: 5px;
    border-radius: 5px;
    position: absolute;
    z-index: 9;
    left: 100%;
    width: 80%;
    background-color: #fff;
    border: solid 2px var(--secundary-color);
    float: left;
}

.btns-info-action-visible {
    top: auto;
    position: relative;
    left: auto !important;
    width: 100%;
    border: none;
    background-color: transparent;
    padding: 0 0 5px 0;
}

.showNavActions {
    left: 25%;
}

.btns-info-action a {
    display: block;
    float: left;
    border: none;
    font-size: 14px;
    border-radius: 5px;
    padding: 5px 10px;
    color: #555;
    background-color: var(--primary-color);
    color: var(--primary-color-contrast);
    width: 100%;
    margin: 2px 4px 2px 0;
}

.btns-info-action a.btn-to-do {
    background-color: #fd2f42;
}

.btns-info-action-visible a {
    width: auto;
}

.btns-info-action a i {
    width: 20px;
    text-align: center;
}

.btns-info-action a:hover {
    text-decoration: none;
    background-color: var(--primary-color-hover);
}

.btns-info-action a.btn-to-do:hover {
    background-color: #fc4c5d;
}

.btns-info-action .delete-item, .popup-content .btn-in-popup.delete-task-item {
    background-color: #fd2f42;
    color: #fff;
    margin: 0 0 0 5px;
}

.popup-content .btn-in-popup.btn-danger {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
}
.popup-content .btn-in-popup.btn-danger:hover {
    color: #fff;
    background-color: #c82333;
    border-color: #bd2130;
}

.btns-info-action-visible a.delete-item,
.btns-info-action-visible a.do-action {
    float: right;
}

.btns-info-action .delete-item:hover, .popup-content .btn-in-popup.delete-task-item:hover {
    background-color: #fc4c5d;
}

.popup-content .btn-in-popup.delete-task-item.disabled {
    opacity: 0.5;
}
.popup-content .btn-in-popup.delete-task-item.disabled:hover {
    cursor: not-allowed;
}

.btns-info-action .delete-item span {
    display: none;
}

.btns-info-action .info {
    background-color: var(--secundary-color);
    color: var(--secundary-color-contrast);
}

.btns-info-action .info:hover {
    background-color: var(--secundary-color-hover);
    color: var(--secundary-color-contrast);
}

.list-new-actions {
    position: absolute;
    right: 15px;
    top: -35px;
    z-index: 99999;
}

.list-new-actions-btn {
    display: block;
    float: left;
    border: none;
    font-size: 14px;
    border-radius: 5px;
    padding: 5px 10px;
    color: #555;
    background-color: var(--primary-color);
    color: var(--primary-color-contrast);
    width: 35px;
    margin: 0 0 0 5px;
    text-align: center;
}

.list-new-actions-btn:hover {
    color: #fff;
}

.list-new-actions ul {
    position: absolute;
    right: -5px;
    top: calc(100% + 5px);
    background-color: #fff;
    border-radius: 5px;
    border: solid 1px #ddd;
    margin: 0;
    padding: 0;
    -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.15);
    display: none;
}

.list-new-actions ul li {
    list-style: none;
    margin: 0 0 0 0;
}

.list-new-actions ul li a {
    background-color: transparent;
    color: #555;
    display: block;
    width: 100%;
    text-align: left;
    font-weight: bold;
    font-size: 14px;
    margin: 0;
    padding: 10px 15px 10px 10px;
    border-radius: 0;
    border-bottom: solid 1px #eee;
    white-space: nowrap;
}

.list-new-actions ul li:first-child a {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.list-new-actions ul li:last-child a {
    border: none;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.list-new-actions ul li a i {
    width: 25px;
}

.list-new-actions ul li a:hover {
    background-color: transparent;
    color: #000;
    background-color: #f5f5f5;
    text-decoration: none;
}

@media(min-width:768px) {
    .btns-info-action-container {
        position: relative;
        width: auto;
        right: auto;
    }
    .btns-info-action-container .text-md-right a {
        float: right;
    }
    #toggleNavActions {
        display: none;
    }
    .btns-info-action {
        position: relative;
        z-index: 9;
        left: auto;
        width: 100%;
        background-color: transparent;
        padding: 10px 0 10px 0;
        border: none;
        border-radius: 0;
        top: auto;
    }
    .btns-info-action a {
        width: 48%;
        padding: 5px 10px;
        font-size: 12px;
    }
    .btns-info-action a.edit {
        width: auto;
    }
    .list-new-actions {
        right: 30px;
    }
}

@media(min-width:992px) {
    .btns-info-action a {
        padding: 5px 10px;
        font-size: 12px;
        width: auto;
    }
    .list-new-actions {
        right: 60px;
        top: -65px;
        z-index: 999999;
    }
    .list-new-actions-btn {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 22px;
        border-radius: 5px;
        text-align: center;
        padding: 0;
    }
}

@media(min-width:1200px) {
    .btns-info-action a {
        padding: 10px 15px;
        font-size: 14px;
    }
}

.lc-info-box {
    background-color: #fbe8e8;
    color: #870101;
    border: solid 1px #fbcece;
    font-size: 14px;
    padding: 15px;
    border-radius: 5px;
    float: left;
    width: 100%;
}

.lc-info-box .show-document,
.lc-info-box .show-document:hover {
    color: #870101;
}

.show-title-container {
    margin: 15px 0 0 0;
}

.show-title-container:first-child {
    margin: 0;
}

.show-title {
    font-size: 14px;
    margin: 0 0 0 0;
    display: block;
    background-color: var(--secundary-color);
    color: var(--secundary-color-contrast);
    padding: 10px 15px;
    border-radius: 5px;
}

.show-title:hover {
    color: var(--secundary-color-contrast);
    text-decoration: none;
    background-color: var(--secundary-color-hover);
}

.show-title-container a.no-dropdown:hover {
    background-color: var(--secundary-color);
    color: var(--secundary-color-contrast);
    cursor: initial;
}

.show-title i:first-child {
    width: 25px;
}

.show-title .fa-caret-down {
    float: right;
    padding: 5px 0 0 0;
}

.show-container-part {
    display: none;
}

.show-container-part .dashboard-title-container {
    display: none;
}

.show-container-part-first,
.show-container-part-open {
    display: block;
}

.show-container-part-content {
    padding: 15px;
    background-color: #fff;
    border: solid 1px #e5e5e5;
    border-radius: 5px;
}

.show-sub-title {
    border-bottom: solid 2px #eee;
    margin: 45px 0 25px 0;
    position: relative;
}

.show-sub-title-first {
    margin-top: 15px;
}

.show-sub-title span {
    background-color: #eee;
    color: #555;
    font-size: 12px;
    line-height: 12px;
    text-transform: uppercase;
    padding: 10px;
    border: solid 1px #eee;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    display: inline-block;
    margin: 0 0 0 10px;
}

#map {
    height: 150px;
    margin-top: 15px;
}

.show-row-container {
    float: left;
    width: 100%;
    position: relative;
}

.show-row {
    font-size: 12px;
    line-height: 16px;
    float: left;
    width: 100%;
    padding: 5px 0;
    border-bottom: solid 1px #eee;
}

.show-row:last-child {
    /* border:none;*/
}

.show-row-action {
    position: absolute;
    top: 2px;
    right: 10px;
    left: auto;
    color: #ccc;
    font-size: 16px;
}

.show-row-action:hover {
    color: #000;
}

.show-row-action-info {
    right: 40px;
}

.show-row-title {
    display: block;
    font-weight: bold;
    float: left;
    width: 50%;
    padding: 0 5px 0 0;
    line-height: 16px;
}

.show-row-title-em {
    color: var(--secundary-color);
    margin: 0 0 -10px 0;
}

.show-row-value {
    display: block;
    float: left;
    width: 50%;
}

.show-row-value input {
    padding: 5px;
    background-color: #fff;
    border: solid 1px #ddd;
    border-radius: 3px;
    float: left;
    width: 60px;
    margin: -5px 5px 0 0;
}

.show-row-value span.unity {
    float: left;
    font-weight: bold;
    margin: -2px 0 0 0;
}

.show-row-value-text {
    width: 100%;
    /*
  margin-top: 5px;
  border-top: dashed 1px #eee;
  padding: 5px 0 0 0;
  */
}

.show-row-value a {
    color: var(--primary-color);
    font-weight: bold;
}

.show-row-value .fa-check {
    color: #78d148;
}

#map {
    width: 100%;
    height: 200px;
    margin: 15px 0;
}

.show-upload {
    display: inline-block;
    color: #555;
}

.show-upload span {
    display: inline-block;
    font-size: 12px;
    line-height: 14px;
    margin: 5px 0 0 0;
}

.show-upload i {
    font-size: 18px;
    width: 20px;
}

.show-photo {
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: 100px;
    width: 100%;
    display: block;
    border: solid 5px #fff;
    position: relative;
}

.show-photo:hover .photo-cover {
    opacity: 1;
}

.show-document-container {}

.show-doc-img {
    -webkit-background-size: contain;
    -moz-background-size: contain;
    background-size: contain;
    -o-background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    height: 100px;
    width: 100%;
    display: block;
    border: solid 5px #fff;
}

.show-document {
    display: inline-block;
    position: relative;
    text-align: center;
    color: #555;
    width: 118px;
    height: 130px;
    display: block;
    float: left;
    padding: 0 15px 0 0;
    margin: 15px 0 0 0;
    text-decoration: none !important;
    opacity: 0.7;
}

.show-document .document-delete {
    top: 0;
    right: 0;
    position: absolute;
}

.show-document .icon {
    font-size: 67px;
    display: block;
}

.show-document .title,
.image-title {
    display: block;
    font-size: 10px;
    line-height: 12px;
}

.show-document:hover {
    text-decoration: none;
    opacity: 1;
    color: #555;
}

.nothing-found,
.no_results {
    color: #aaa;
    font-size: 14px;
    font-style: italic;
}

.divider {
    width: 100%;
}

.divider span {
    display: block;
    border-bottom: dashed 2px #ccc;
    margin: 45px 0 30px 0;
    position: relative;
}

.divider span b {
    position: absolute;
    background-color: #fff;
    padding: 5px 10px;
    font-size: 14px;
    bottom: -15px;
    left: 15px;
    color: #aaa;
}

.divider-small {
    width: 100%;
}

.divider-small span {
    display: block;
    border-bottom: solid 1px #eee;
    margin: 15px 0;
    position: relative;
}

.show-sub-sub-title {
    width: 100%;
    padding: 30px 0 0 0;
    margin: 0 0 15px 0;
    border-bottom: dashed 2px #eee;
}

.show-sub-sub-title span {
    display: block;
    font-size: 14px;
    color: #aaa;
    padding: 0 0 0 15px;
}

.overflow-370 {
    max-height: 370px;
    overflow: auto;
}

.overflow-500 {
    max-height: 500px;
    overflow: auto;
}

.docs-row {
    margin: 0 0 15px 0;
}

.change-info-year {
    border: solid 1px #ddd;
    height: 28px;
    width: 150px;
    outline: 0;
    font-size: 14px;
    background-color: #fff;
    margin: 0 0 15px 15px;
}

.hide-license-details {
    display: none;
}

.toggle-license-details .show-row {
    cursor: pointer;
}

.toggle-license-details-container .show-row-title,
.toggle-license-details-container .show-row-value {
    display: block;
    float: none;
    width: 100%;
}

.license-details {
    background-color: #f5f5f5;
    padding: 15px 0;
}

@media(min-width:768px) {
    .show-document {
        width: 150px;
    }
    .show-title {
        font-size: 18px;
    }
    .show-sub-title span {
        background-color: #eee;
        font-size: 14px;
        line-height: 12px;
        top: -17px;
        left: 20px;
        padding: 10px 15px;
    }
    .show-sub-title {
        margin: 30px 0 20px 0;
    }
    .show-sub-title-first {
        margin-top: 15px;
    }
    .show-row {
        font-size: 14px;
        line-height: 20px;
        padding: 5px 15px;
        border: none;
        border-bottom: solid 1px #f5f5f5;
    }
    /*
  .show-row:nth-child(even),
  .show-row-even{
    background-color:#f5f5f5;
  }
  */
    .show-row-action {
        display: block;
        left: auto;
        top: 3px;
        right: 10px;
    }
    .show-row-action-info {
        right: 40px;
    }
    #map {
        height: 300px;
    }
    .show-upload span {
        font-size: 14px;
        line-height: 16px;
    }
    .show-upload i {
        font-size: 20px;
    }
    .show-upload:hover {
        text-decoration: none;
        color: var(--secundary-color);
    }
    .full-line .show-row-title {
        width: calc(25% - 15px);
    }
    .full-line .show-row-value {
        width: 75%;
    }
}

@media(min-width:768px) {
    .show-photo {
        height: 130px;
    }
}

#quick-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px 0;
    visibility: hidden;
}

#quick-nav a {
    display: inline-block;
    width: 32px;
    height: 32px;
    line-height: 32px;
    font-size: 20px;
    background-color: #fff;
    color: #555;
    border-radius: 3px;
    margin: 0 1px;
}

.slideInRight,
.slideInUp {
    visibility: visible !important;
}

.anchor-container {
    width: 100%;
}

@media(min-width:768px) {
    #quick-nav {
        width: 42px;
        bottom: auto;
        top: 200px;
        left: auto;
        right: 0;
        padding: 5px 15px 5px 5px;
        border-top-left-radius: 3px;
        border-bottom-left-radius: 3px;
        position: absolute;
    }
    #quick-nav a {
        margin: 2px 0;
    }
}

#show-info-tax,
#show-info-tax-provinces {
    width: 100%;
    padding: 0 15px;
}


/*
 CHAT
 */

.chat-main-container {
    background-color: #ddd;
    margin: 45px 0 -45px 0;
    padding: 30px 0 30px 0;
}

.chat-container {
    padding: 0;
    position: relative;
}

.chat-message {
    background-color: #fff;
    padding: 15px 15px 30px 15px;
    font-size: 13px;
    border-radius: 15px;
    position: relative;
    margin: 0 0 30px 0;
}

.chat-message-sender:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15px;
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-top-color: #e6fde9;
    border-bottom: 0;
    border-left: 0;
    margin-left: -5px;
    margin-bottom: -9px;
}

.chat-message .author-wrap {
    display: flex;
    justify-content: space-between;
}
.chat-message .ref-info {
    font-weight: bold;
}

.chat-message .author {
    color: var(--primary-color);
    font-weight: bold;
    display: block;
}

.chat-message .text {
    display: block;
    line-height: 18px;
    padding: 5px 0 0 0;
}

.chat-message .time {
    position: absolute;
    display: block;
    color: #aaa;
    font-size: 11px;
    line-height: 12px;
    right: 15px;
    bottom: 10px;
}

.chat-message-sender {
    background-color: #e6fde9;
}

.chat-message-receiver {
    background-color: #fff;
}

.chat-message-receiver:after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 15px;
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-top-color: #fff;
    border-bottom: 0;
    border-right: 0;
    margin-left: -5px;
    margin-bottom: -9px;
}

.chat-new-message {
    background-color: #eee;
    padding: 15px;
    border-radius: 5px;
    text-align: right;
}

.chat-new-message textarea {
    width: 100%;
    border: none;
    padding: 10px;
    border-radius: 5px;
    border: solid 1px #ddd;
}

.chat-new-message button {
    border: none;
    background-color: var(--primary-color);
    color: var(--primary-color-contrast);
    padding: 10px 15px;
    border-radius: 5px;
    display: none;
    margin: 5px 0 0 0;
}

.no-chat-messages {
    padding: 0 15px 30px 15px;
    font-style: italic;
    color: #888;
    font-size: 14px;
    line-height: 18px;
}

.typeahead {
    padding: 5px 15px;
}

.typeahead a {
    color: #555;
    font-size: 14px;
    padding: 5px 0;
    display: block;
}

.typeahead a:hover {
    text-decoration: none;
    color: #000;
}

.mention_image {
    border-radius: 50%;
    margin: 0 5px 0 0;
    width: 25px;
    height: 25px;
}

.mention_name {
    font-weight: normal;
}

.mention_username {
    display: none;
}

@media(min-width:768px) {
    .chat-main-container {
        padding-top: 45px;
        padding-bottom: 45px;
    }
    .chat-message {
        width: 80%;
        font-size: 14px;
    }
    .chat-message-sender {
        float: left;
    }
    .chat-message-receiver {
        float: right;
    }
    .chat-new-message {
        padding: 30px;
    }
    .chat-new-message button {
        padding: 15px;
    }
}

@media(min-width:992px) {
    .chat-message {
        width: 70%;
    }
}


/*
 IN NEED OF SUPPORT
 */

.need-support-container {
    margin: 0 0 0 0;
    background-color: #fff;
    border-top: solid 1px #ddd;
    border-bottom: solid 1px #ddd;
    padding: 30px 0;
}

.need-support-title {
    font-weight: bold;
    font-size: 18px;
    margin: 0 0 15px 0;
}

.need-support-info,
.need-support-icon {
    display: none;
}

.btn-support {
    display: block;
    color: var(--secundary-color);
    border: solid 1px var(--secundary-color);
    border-radius: 5px;
    padding: 10px;
    margin: 0 0 10px 0;
    text-align: center;
}

.btn-support:hover {
    color: var(--secundary-color-contrast);
    background-color: var(--secundary-color);
    text-decoration: none;
}

@media(min-width:992px) {
    .need-support-info {
        display: inline-block;
        font-size: 14px;
        line-height: 18px;
        margin: 0 0 10px 0;
    }
    .need-support-icon {
        display: inline-block;
        font-size: 24px;
        margin: 0 0 10px 0;
    }
}


/*
  POPUP
------- */

.popup-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    z-index: 9999999999;
    overflow-y: scroll;
}

.popup-content {
    position: absolute;
    top: 80px;
    left: 15px;
    right: 15px;
    padding: 15px 0;
    background-color: #fff;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    -webkit-box-shadow: 0px 6px 10px -4px rgba(0, 0, 0, 1);
    -moz-box-shadow: 0px 6px 10px -4px rgba(0, 0, 0, 1);
    background-box-shadow: 0px 6px 10px -4px rgba(0, 0, 0, 1);
    margin-bottom: 30px;
}

.popup-title {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    font-size: 20px;
    font-weight: bold;
    padding: 15px 20px;
    position: absolute;
    top: -70px;
    left: 0;
    right: 0px;
    background-color: var(--primary-color);
    color: var(--primary-color-contrast);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.popup-title i {
    width: 25px;
    margin-right: 8px;
}

.popup-container .close-popup {
    font-size: 22px;
}

.popup-intro {
    font-size: 14px;
    line-height: 18px;
    margin: 0 0 15px 0;
}

.popup-intro a {
    color: #000;
    text-decoration: underline;
}

.popup-intro a:hover {
    color: #555;
}

.popup-row {
    padding: 5px;
    margin: 0 0 10px 0;
    width: 100%;
    float: left;
}

.popup-container .btn-choose-lc {
    display: inline-block;
    border: solid 1px #555;
    color: #555;
    padding: 10px 15px;
    text-transform: uppercase;
    font-size: 12px;
    border-radius: 5px;
    margin: 15px 2px 0 2px;
    font-weight: bold;
}

.popup-container .btn-choose-lc:hover {
    text-decoration: none;
    background-color: #f5f5f5;
}

.popup-content .product-media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
}

.popup-content .product-media-item {
    border: 1px solid #e1e5ef;
    border-radius: 8px;
    padding: 6px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    overflow: hidden;
}

.popup-content .product-media-item img {
    max-width: 100%;
    max-height: 160px;
    object-fit: contain;
}

.popup-content .product-media-empty {
    color: #6c768a;
    font-size: 13px;
}

@media(min-width:768px) {
    .popup-title {
        top: -60px;
    }
    .popup-row-50 {
        width: 50%;
    }
    .popup-row-33 {
        width: 33.33%;
    }
    .popup-row-25 {
        width: 25%;
    }
}

.popup-row-title {
    float: left;
    width: 100%;
    font-size: 14px;
    text-transform: uppercase;
    color: #aaa;
    border-bottom: solid 1px #eee;
    padding: 0 0 0 5px;
    margin: 30px 0 15px 0;
}

.popup-row-title:first-child {
    margin-top: 0;
}

.task-completed {
    position: absolute;
    top: 0;
    right: -10px;
    border: solid 2px green;
    padding: 10px 15px;
    font-size: 12px;
    line-height: 12px;
    font-weight: bold;
    border-radius: 5px;
    color: green;
    opacity: 0.5;
    transform: rotate(10deg);
    text-transform: uppercase;
}

.task-finished td {
    color: #aaa;
    text-decoration: line-through;
}

.task-unread td {
    font-weight: bold;
}

.task-first-td {
    position: relative;
}

.task-first-td .updated {
    font-size: 8px;
    text-transform: uppercase;
    color: green;
    position: absolute;
    top: 5px;
    left: 15px;
    font-weight: normal;
}

.popup-content .btn-in-popup {
    border: none;
    background-color: var(--primary-color);
    color: var(--primary-color-contrast);
    padding: 10px 15px;
    border-radius: 5px;
    display: inline-block;
    margin: 5px 0 0 0;
    float: right;
    text-decoration: none;
}

.popup-content .btn-in-popup:hover {
    color: var(--primary-color-contrast);
    background-color: var(--primary-color-hover);
}

.popup-content form {
    padding-top: 15px;
}

.popup-content form textarea {
    border: solid 1px #ccc;
    width: 100%;
    padding: 10px;
    border-radius: 5px;
}

.popup-content form input {
    border: solid 1px #ccc;
    width: 100%;
    padding: 10px;
    border-radius: 5px;
}

.popup-content form input:focus {
    outline: 0;
}

.popup-content form input:read-only {
    background-color: #eee;
    color: #aaa;
    cursor: default;
}

.popup-input-row select {
    background-color: #fff;
    border: solid 1px #ccc;
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    height: 45px;
}

.popup-input-row {
    margin: 0 0 15px 0;
}

.popup-input-row label {
    margin-bottom: 0;
    font-weight: bold;
    display: block;
    font-size: 14px;
}

.close-popup {
    color: var(--primary-color-contrast);
    font-size: 18px;
    line-height: 18px;
    position: absolute;
    top: -35px;
    right: 12px;
}

.close-popup:hover {
    color: var(--primary-color-contrast);
}

.popup-content .show-doc-img {
    border-color: #f5f5f5;
}

@media(min-width:768px) {
    .popup-content {
        top: 120px;
        width: 700px;
        left: 50%;
        margin-left: -350px;
        right: auto;
        padding: 30px;
    }
    .popup-title {
        left: -30px;
        right: -30px;
        top: -90px;
        padding: 15px 30px;
    }
    #popup-search .popup-content {
        width: 500px;
        margin-left: -250px;
    }
    .close-popup {
        top: -50px;
    }
}


/*
  POPUP TASK
------------ */

#popup-new-task {
    /*display:block;*/
}


/*
  POPUP START TASK
------------------ */

#popup-start-task .popup-intro {
    text-align: center;
}

#popup-start-task .btn-in-popup {
    float: none;
    display: inline-block;
}

#popup-start-task .popup-intro span {
    display: block;
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 15px 0;
}

.end-user-task {
    background-color: red;
}


/*
  POPUP CHOOSE NEW LC TYPE
-------------------------- */

#popup-choose-new-lc-type form,
#popup-choose-new-poi-type form {
    display: none;
}


/*
  SCHEDULE
  */

.choose-year {
    text-align: center;
    margin: 0 0 30px 0;
}

.choose-year span {
    font-size: 24px;
    display: inline-block;
    padding: 0 10px;
}

.choose-year a {
    color: #888;
    font-size: 16px;
    display: inline-block;
}

.choose-year a:hover {
    text-decoration: none;
    color: #000;
}

.calendar-month {
    width: 100%;
    margin: 0 0 15px 0;
}

.calendar-month th,
.calendar-month td {
    padding: 0;
}

.calendar-month td {
    border: solid 1px #f5f5f5;
}

.calendar-month-title {
    padding: 5px 10px;
    text-align: center;
    background-color: var(--secundary-color);
    color: var(--secundary-color-contrast);
    font-weight: normal;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.calendar-days-title {
    background-color: #ddd;
    text-align: center;
    padding: 5px;
}

.calendar-month .calendar-day {
    background-color: #fff;
    text-align: center;
}

.calendar-month .calendar-day a {
    color: #555;
    display: block;
    padding: 7px 5px 6px 5px;
    position: relative;
}

.calendar-month .calendar-day a:hover {
    background-color: #eee;
    text-decoration: none;
}

.today {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: transparent;
    border: solid 4px var(--secundary-color);
}

.calendar-month .no-day {
    background-color: #f5f5f5;
    color: #ccc;
    border: none;
}

.day-nr {
    font-size: 12px;
    position: relative;
    z-index: 1;
    display: block;
}

.entry {
    position: absolute;
    left: 50%;
    margin-left: -12px;
    top: 50%;
    margin-top: -13px;
    width: 24px;
    height: 24px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.calendar-month .entry-ok a .day-nr {
    color: var(--primary-color-contrast);
}

.no-plans {
    display: none;
}

@media(min-width:992px) {
    .no-plans {
        color: #ddd;
        font-size: 60px;
        display: block;
        padding-top: 30px;
    }
    .no-plans i:last-child {
        font-size: 100px;
    }
}

.clipit {
    cursor: context-menu;
}

.clipit:active:hover {
    cursor: progress;
}

#ui-datepicker-div {
    z-index: 9999999999 !important;
}

.btn-new-after-creation-lc {
    color: #fff;
    display: inline-block;
    border: solid 1px #fff;
    border-radius: 5px;
    padding: 10px 15px;
    margin-top: 15px;
    font-size: 12px;
    text-transform: uppercase;
}

.btn-new-after-creation-lc:hover {
    color: #fff;
    text-decoration: none;
}

.ui-tooltip,
.arrow:after {
    background: #555;
    border: none;
}

.ui-tooltip {
    padding: 5px 10px;
    color: #fff;
    border-radius: 3px;
    font-size: 12px;
    font-weight: normal;
    box-shadow: none;
    border: none !important;
    z-index: 9999999999;
}


/*
.search_detail{
  float: left;
  height: 50px!important;
  border: solid 1px #ddd;
  padding: 10px;
  border-right: none;
}
.search-in-module input{
  min-width: 200px!important;
}
*/

.search_detail {
    display: block;
    font-size: 16px;
    font-family: sans-serif;
    color: #444;
    line-height: 18px;
    padding: 10px 25px 10px 10px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin: 0 0 5px 0;
    border: 1px solid #ddd;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, .04);
    border-radius: 5px;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-color: #fff;
    background-image: url('../img/caret-down.png');
    background-repeat: no-repeat, repeat;
    background-position: right .7em top 50%, 0 0;
    background-size: .65em auto, 100%;
}

.search_detail::-ms-expand {
    display: none;
}

.search_detail:hover {
    border-color: #ddd;
}

.search_detail:focus {
    border-color: #ddd;
    outline: 0;
}

.search_detail option {
    font-weight: normal;
}

@media(min-width:768px) {
    .search_detail {
        width: 75px;
        height: 50px;
        float: left;
        margin: 0 5px 5px 0;
    }
    .search-in-module input {
        min-width: 200px;
    }
}

@media(min-width:992px) {
    .search_detail {
        width: 100px;
        padding: 10px 35px 10px 15px;
    }
    .search-in-module input {
        min-width: 195px;
    }
}

.list-filters {
    margin: 0 0 5px 0;
}

.list-filters select {
    padding: 10px 15px;
    border: solid 1px #ddd;
    min-width: 120px;
}

.list-filter-container {
    margin: 0 0 5px 0;
}

.list-filter-container label {
    display: block;
    font-weight: bold;
    line-height: 24px;
    margin: 0;
}

.table-taxes table {
    table-layout: fixed;
}

.table-taxes tr td {
    background-color: #fafafa;
}

.table-taxes th {
    font-size: 14px;
    text-align: center;
}

.table-taxes th,
.table-taxes td {
    overflow-y: scroll;
}

.table-taxes th:first-child {
    text-align: left;
}

.table-taxes th span {
    display: block;
    font-size: 10px;
    color: #555;
    font-weight: normal;
    letter-spacing: 1px;
}

.table-taxes td input {
    width: 100%;
    padding: 5px 10px;
    border: solid 1px #ddd;
    border-radius: 5px;
    outline: 0;
}

.table-taxes td input:read-only {
    background-color: #eee;
    color: #888;
}

.table-responsive td select {
    border: solid 1px #ddd;
    height: 28px;
    width: 100%;
    outline: 0;
    background-color: #fff;
}

.table-responsive td select:disabled {
    background-color: #eee;
    color: #888;
}

.save-tax,
.save-stamptax {
    background-color: #03bb33;
}

.save-tax:hover,
.save-stamptax:hover {
    background-color: #03aa2e;
}

.btn-mode {
    display: inline-block;
    color: #555;
    margin: 0 0 5px 5px;
}

.btn-mode span {
    margin: 0 2px 0 0;
}

.btn-mode:hover {
    color: #555;
    text-decoration: none;
}

.print-tax-list {
    display: inline-block;
    background-color: #eee;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    margin: 0 5px 0 0;
}

.print-tax-list:hover {
    color: #000;
    background-color: #ddd;
}


/*
  RESTRICTIONS
-------------- */

.row-restriction {
    position: relative;
}

.delete-restriction {
    color: red;
    position: absolute;
    top: 0;
    right: 20px;
}

.delete-restriction:hover {
    color: red;
}


/*
  PROGRESS WORK
--------------- */

.progress-work {
    padding: 15px;
    background-color: #fff;
    border: solid 1px #ddd;
    border-radius: 5px;
    margin: 15px 0 0 0;
}

.pw-title {
    padding: 0 0 15px 0;
}

.pw-title i {
    color: var(--primary-color);
    font-size: 32px;
    width: 40px;
    text-align: center;
}

.pw-title {
    color: var(--secundary-color);
    font-weight: bold;
    font-size: 18px;
    line-height: 18px;
}

.pw-btns {
    padding: 0 0 15px 0;
}

.pw-btns a {
    display: inline-block;
    margin: 0 5px 0 0;
    padding: 10px 15px;
    opacity: 0.5;
    border: solid 1px #ccc;
    font-size: 12px;
    text-transform: uppercase;
    border-radius: 5px;
    font-weight: bold;
    color: #aaa;
}

.pw-btns a:hover {
    text-decoration: none;
    opacity: 1;
}

.pw-header {
    display: none;
}

.pw-body {
    max-height: 300px;
    overflow-y: scroll;
}

.pw-th {}

.pw-td {
    font-size: 12px;
    display: block;
    width: 100%;
}

.progress-bar {
    margin: 5px 0 0 0;
    display: inline-block;
    height: 10px;
    width: 100%;
    background-color: #eee;
    border-radius: 2px;
    position: relative;
}

.progress-bar .progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 10px;
    background-color: var(--primary-color);
}

.pw-part {
    display: none;
}

.pw-active {
    display: block;
}

.pw-btns a.pw-btn-focus {
    opacity: 1;
    color: #888;
    border-color: #ccc;
}

@media(min-width:992px) {
    .pw-header {
        display: block;
        border-bottom: solid 2px #eee;
    }
    .pw-th {
        display: inline-block;
        width: 32%;
        font-size: 14px;
        font-weight: bold;
        padding: 5px;
    }
    .pw-td b {
        display: none;
    }
    .pw-td {
        font-size: 12px;
        line-height: 12px;
        display: inline-block;
        width: 32%;
        padding: 5px 5px 5px 5px;
        border-bottom: dashed 1px #eee;
    }
    .pw-td:first-letter {
        text-transform: capitalize;
    }
    .progress-bar {
        margin: 0;
    }
    .pw-item:last-child .pw-td {
        border: none;
    }
}


/*
  SEARCH
-------- */

.row-search {
    position: relative;
}

.table-search-results {
    position: absolute;
    z-index: 2;
    top: 120px;
    left: 10px;
    right: 10px;
    width: auto;
    border-color: #eee;
    -webkit-box-shadow: 0px 5px 10px -5px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 5px 10px -5px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 5px 10px -5px rgba(0, 0, 0, 0.2);
    border: none;
}

.table-search-results tr {
    border-color: #f5f5f5;
}

.table-search-results th,
.table-search-results td {
    padding: 5px 10px !important;
    font-size: 12px;
}

.table-search-results th,
.table-search-results th:last-child {
    background-color: #f5f5f5;
    color: #555;
}

.table-search-results td a {
    color: #555;
}

.table-search-results .btn-one-action {
    width: 24px;
    height: 24px;
    line-height: 24px;
    background-color: #f5f5f5;
    border: solid 1px #ddd;
    color: #aaa;
    margin-right: -5px;
}

.table-search-results td a:hover {
    color: #333;
    text-decoration: none;
}

.search-in-module {
    z-index: 2;
    position: relative;
}

.search-in-module button {
    position: relative;
}

.icon-searching {
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    font-size: 24px;
    background-color: var(--secundary-color);
    color: var(--secundary-color-contrast);
    padding: 7px 0 0 0;
    display: none;
}

.search-darken {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
    display: none;
}

.reset-search {
    position: absolute;
    color: #ccc !important;
    right: 65px;
    top: 11px;
    font-size: 20px;
    display: none;
}

.main_search:focus,
.main_search:active,
.main_query {
    outline: none !important;
}

@media(min-width:992px) {
    .table-search-results {
        top: 75px;
    }
    .table-search-results th,
    .table-search-results td {
        padding: 10px !important;
        font-size: 14px;
    }
    .table-search-results th {
        font-size: 16px;
    }
    .table-search-results .btn-one-action {
        margin: 0;
    }
}


/*
#filter_form div{
  margin: 15px 0px;
  min-height: 50px;
}
*/

.open-filter {
    color: var(--primary-color-contrast) !important;
    background-color: var(--primary-color);
    border-radius: 5px;
    position: fixed;
    top: 190px;
    right: -5px;
    padding: 10px 15px;
    z-index: 99;
    border: solid 1px #f5f5f5;
}

#filter-search {
    position: fixed;
    z-index: 99;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    padding: 15px;
}

#filter-search-content {
    display: block;
    width: 100%;
    overflow-y: scroll;
    max-height: 500px;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
}

#filter-search .show-title-container {
    margin: 0;
}

#filter-search .show-title {
    color: var(--primary-color-contrast);
    background-color: var(--primary-color);
    border-radius: 0;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.close-filter-search {
    color: #fff;
    font-size: 24px;
    line-height: 24px;
    right: 25px;
    top: 24px;
    position: absolute;
}

#filter-search .show-container-part-content {
    border-radius: 0;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
}

#filter-search .button {
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    color: var(--secundary-color-contrast);
    background-color: var(--secundary-color);
    font-size: 12px;
    text-transform: uppercase;
    width: 100%;
}

#filter-search select,
#filter-search input {
    height: 40px;
}

#filter-search .input-checkbox {
    height: auto;
}

#filter-search select {
    margin: 0;
    float: none;
}

.filter-row {
    margin: 15px 0 0 0;
}

#filter-search .divider {
    margin: 15px 0 0 0;
}

#filter-search .divider span {
    margin: 25px 0;
    border-bottom: solid 1px #eee;
}

.filter-checkbox-container {
    display: block;
}

.filter-checkbox-container label {
    margin: 0;
    font-size: 12px;
}

.filter-checkbox-container label input {
    float: left;
}

.filter-checkbox-container label span {
    float: left;
    display: block;
    margin: -3px 0 0 5px;
}

@media(min-width:768px) {
    #filter-search {
        display: block;
        position: inherit;
        background: transparent;
        padding-top: 0;
    }
    #filter-search-content {
        max-height: initial;
        overflow-y: inherit;
    }
    .open-filter,
    .close-filter-search {
        display: none;
    }
}

.notice-container {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.8);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999999;
    color: #fff;
    padding: 30px 15px;
    text-align: center;
}

.notice-container a {
    display: block;
    width: 250px;
    margin: 15px auto;
    color: #fff;
    font-size: 12px;
    text-transform: uppercase;
    padding: 10px;
    border: solid 1px #fff;
    border-radius: 5px;
}

.notice-container a:hover {
    color: #000;
    background-color: #fff;
    text-decoration: none;
}

#municipality-other-country,
#municipality-other-country_delivery,
#municipality-other-country_invoice,
#iban-other-country {
    display: none;
}

.lcs_tag {
    margin-left: 15px;
    background-color: var(--secundary-color);
    color: var(--secundary-color-contrast);
    padding: 5px 15px;
    border-radius: 5px;
}

.bbs-never-to-be-placed {
    float: left;
    width: 100%;
    margin: 15px 0 0 0;
}

.bbs-never-to-be-placed tr th,
.bbs-never-to-be-placed tr td {
    color: #ccc;
}

.bbs-never-to-be-placed tr th:first-child,
.bbs-never-to-be-placed tr td:first-child {
    color: #000;
}

.table-responsive th.th-report {
    background-color: transparent;
    color: #000;
    font-weight: bold;
    text-transform: capitalize;
}

.ad_removal_info {
    display: none;
    float: left;
    width: 100%;
}

.btn-tax-list {
    display: inline-block;
    background-color: #f5f5f5;
    color: #555;
    padding: 10px 15px;
    border-radius: 5px;
    border: solid 1px #eee;
    font-size: 12px;
    line-height: 12px;
    text-align: center;
    margin: 0 5px 5px 0;
}

.btn-tax-list:hover {
    background-color: #eee;
    border-color: #ddd;
    text-decoration: none;
    color: #000;
}

.loglist li {
    font-size: 12px;
    list-style-type: none;
}

tr.objected td {
    background-color: #fae3e6 !important;
}

a.objected {
    color: #fd2f42 !important;
}

.complex-1 {
    font-weight: bold;
    color: red;
}

.center {
    text-align: center;
}

.align_left {
    text-align: left;
}

.align_right {
    text-align: right;
}

.displayblock {
    display: block;
}


/*
  DESIGN AND PLACEMENT AD
------------------------- */

.design-and-placement {
    float: left;
    width: 100%;
    margin: 0;
}

.design-and-placement-content {
    background-color: #fff;
    padding: 15px;
    float: left;
    width: 100%;
    border: solid 1px #eee;
    border-radius: 5px;
}

.design-and-placement-content .title {
    float: left;
    width: 100%;
    text-align: center;
    padding: 15px;
    border-bottom: solid 2px #eee;
    font-weight: bold;
    font-size: 18px;
    line-height: 20px;
    margin-bottom: 5px;
}

.design-step {
    float: left;
    width: 100%;
    padding: 15px 15px 15px 25px;
    margin: 0 0 5px 0;
    background-color: #f5f5f5;
    position: relative;
    color: #888;
}

.design-step:hover {
    background-color: #f1f1f1;
}

.step-data {
    float: left;
    width: 100%;
    padding: 10px 15px 10px 25px;
    margin: -5px 0 5px 0;
    background-color: #f5f5f5;
    position: relative;
    border-top: solid 1px #fff;
}

.step-data-line {
    float: left;
    width: 100%;
    color: #aaa;
    padding: 5px 0;
    border-bottom: solid 1px #e5e5e5;
    font-size: 12px;
    line-height: 14px;
}

.step-data-line a {
    color: #888;
    text-decoration: underline;
}

.step-data-line a:hover {
    color: #555;
}

.step-data-line:last-child {
    border: none;
}

.design-sub-step {
    padding: 10px 15px;
    margin-left: 15px;
    width: calc(100% - 15px);
}

.design-step:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 10px;
    background-color: #ddd;
}

.design-sub-step:before {
    width: 5px;
}

.step-disabled {
    color: #ccc;
}

.step-done:before {
    background-color: #40c200;
}

.step-alert:before {
    background-color: #ff6868;
}

.step-disabled:before {
    background-color: #eee;
}

.step-done {
    color: #000;
}

.step-title {
    float: left;
    width: 50%;
}

.step-actions {
    float: right;
    width: 25%;
    text-align: right;
}

.step-actions a {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    background-color: #e5e5e5;
    text-align: center;
    border-radius: 3px;
    color: #888;
}

.step-actions a:hover {
    background-color: #d5d5d5;
}

.step-info {
    float: left;
    width: 25%;
    text-align: left;
}

.step-info span {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
}

.step-info-alert {
    color: #ff6868;
}

.step-info-success {
    color: #68ff74;
}

.step-actions a.step-btn-disabled {
    color: #ccc !important;
    background-color: #e5e5e5 !important;
}

.step-actions a.step-btn-done {
    background-color: #40c200;
    color: #fff;
}

.step-actions a.step-btn-to-do {
    background-color: #ff6868;
    color: #fff;
}

.rc-feedback {
    float: left;
    width: 100%;
    margin: 0 0 30px 0;
    background-color: #f5f5f5;
    border: solid 1px #eee;
    padding: 15px;
    border-radius: 5px;
}

.rc-feedback .text {
    float: left;
    width: 100%;
    font-size: 14px;
    line-height: 20px;
    margin: 0 0 30px 0;
}

.rc-feedback .date {
    float: left;
    width: 100%;
    text-align: right;
    color: #aaa;
    font-size: 12px;
    line-height: 14px;
}

.design-step-title {
    float: left;
    width: 100%;
    font-size: 20px;
    line-height: 24px;
    padding: 0 0 5px 0;
    border-bottom: solid 5px #eee;
    margin: 30px 0 15px 0;
}

.choose-grid-list {
    float: left;
    width: 100%;
    text-align: right;
}

.choose-grid-list a {
    display: inline-block;
    background-color: #eee;
    width: 32px;
    height: 32px;
    border: solid 1px #ddd;
    border-radius: 5px;
    font-size: 18px;
    line-height: 32px;
    text-align: center;
    margin: 0 0 5px 2px;
    color: #888;
}

.choose-grid-list a:hover {
    color: #000;
    background-color: #e5e5e5;
}

.grid-item {
    float: left;
    display: block;
    width: 135px;
    height: 100px;
    text-align: center;
    margin: 10px;
    padding: 15px;
    background-color: #fff;
    border: solid 1px #ddd;
    border-radius: 5px;
    position: relative;
}

.grid-item .icon {
    display: block;
    font-size: 24px;
    line-height: 24px;
    margin: 0 0 5px 0;
}

.grid-item .title {
    display: block;
    font-size: 12px;
    line-height: 14px;
    color: #555;
}

.grid-item a:hover {
    color: #000;
    text-decoration: none;
}

.grid-item a:active {
    cursor: grab;
}

.delete-grid-item {
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 14px;
    line-height: 14px;
    display: block;
    padding: 5px;
    color: red;
}

.delete-grid-item:hover {
    color: #000;
}

.grid-folders {
    float: left;
    width: 100%;
    margin: 0 0 30px 0;
}

.grid-folder {
    float: left;
    display: block;
    width: 135px;
    height: 100px;
    text-align: center;
    margin: 10px;
    padding: 15px;
}

.grid-folder a {
    color: #555;
}

.grid-folder a:hover {
    color: #000;
}

.grid-folder .icon {
    display: block;
    font-size: 42px;
    line-height: 42px;
    margin: 0 0 5px 0;
}

.grid-folder .title {
    display: block;
    font-size: 12px;
    line-height: 14px;
    color: #555;
}

.table-logs {
    float: left;
    width: 100%;
}

.table-logs th,
.table-logs td {
    border: solid 1px #ccc;
    font-size: 12px;
    padding: 5px;
}

.location-get-coords {
    display: none;
}

.form-location .location-get-coords {
    display: block;
}

.location-get-coords a {
    display: block;
    font-size: 14px;
    color: #aaa;
}

.location-get-coords a:hover {
    text-decoration: none;
    color: #555;
}

.card-body .r_1 {
    font-weight: bold;
    font-size: 20px;
}

.stats-rotation {
    float: left;
    width: 100%;
    background-color: #fff;
    border-radius: 5px;
    padding: 15px;
    border: solid 1px #ddd;
}

.stats-rotation .stat {
    float: left;
    width: 100%;
    border-bottom: dashed 1px #eee;
    padding: 10px 0;
}

.stats-rotation .stat b {
    float: left;
    width: 250px;
    line-height: 18px;
}

.stats-rotation .stat span {
    float: left;
    width: calc(100% - 250px);
}

@media(min-width:768px) {
    .stats-rotation .stat b {
        width: 500px;
    }
    .stats-rotation .stat span {
        width: calc(100% - 500px);
    }
}

.rotation-suggestion {
    float: left;
    width: 250px;
    font-size: 11px;
    line-height: 11px;
    padding: 15px;
    background-color: #f5f5f5;
    border: solid 1px #eee;
    border-radius: 5px;
    margin: 5px 10px 5px 0;
}

.bb-in-rotation {
    float: left;
    width: 100%;
    padding: 10px;
    border: solid 1px #eee;
    border-radius: 5px;
    background-color: #f5f5f5;
    font-size: 12px;
    line-height: 12px;
    position: relative;
    margin: 5px 0;
}

.bb-in-rotation .lock {
    position: absolute;
    font-size: 14px;
    line-height: 14px;
    top: 0;
    right: 0;
    display: block;
    padding: 9px 9px 9px 9px;
}

.smallfont {
    font-size: 10px;
}

.SumoSelect {
    width: 100% !important;
}

.SumoSelect .select-all {
    height: auto;
}

.table-orders td {
    font-size: 12px;
}

.table-info td a.delete-from-order {
    display: block;
    color: red;
    line-height: 12px;
    margin-top: -6px;
    float: left;
}

.btns-info-action a.order-form-created {
    float: right;
    background-color: transparent;
    border: solid 1px #fff;
    color: green;
    font-weight: bold;
}

.btns-info-action a.order-form-created i {
    color: green;
}

.smallprice {
    font-size: 13px;
    font-weight: bold;
}

/*

    TABLE DATA

-------------- */
#table-data_wrapper{
    width:100%;
    background-color:#fff;
    padding:15px 15px 15px 15px;
    border-radius:5px;
    overflow-x: auto;
    width:100%;
}
.table-data{
    width:100%;
}
.table-data thead{
    color:#fff;
}
.table-data thead th{
    padding:10px;
    white-space: nowrap;
}
.table-data thead tr:first-child th{
    background-color:#1e5076;
}
.table-data thead tr:last-child th{
    background-color:#eee;
    padding:10px;
}
.table-data thead th input{
    border:solid 1px #ddd;
    border-radius:5px;
    padding:10px;
    width:100%;
    outline:0;
}
.table-data td{
    padding:10px;
    font-size:14px;
    line-height: 1.2;
    white-space: nowrap;
}
.table-data td:last-child{
    text-align:right;
}
.table-data tr.even{
    background-color:#f5f5f5;
}
#table-data_info{
    margin-top:30px;
    text-align: center;
}
#table-data_paginate{
    text-align: center;
}
#table-data_paginate ul{
    margin:0;
}
@media(min-width:1200px){
    #table-data_info{
        text-align: left
    }
    #table-data_paginate{
        margin-top:30px;
        text-align: right;
    }
}

/*

    INVENTORY

------------- */
#inventory-items{
    margin: 0 0 30px 0;
}
#inventory-items .no-results{
    color: #aaa;
    font-size: 14px;
    line-height: 1;
}
.inventory-item{
    background-color: #f5f5f5;
    padding: 15px 0;
    margin: 0 0 5px 0;
    font-size: 14px;
    line-height: 1.2;
    cursor: pointer;
    border-radius: 5px;
}
.inventory-item.checked{
    background-color: #eee;
}
.inventory-item label{
    margin: 0;
}
/*

    Bootstrap 5

------------- */
/* Bootstrap 5 Text Utility Classes for Bootstrap 4 */

.fs-1 {
    font-size: 2.5rem;
}

.fs-2 {
    font-size: 2rem;
}

.fs-3 {
    font-size: 1.75rem;
}

.fs-4 {
    font-size: 1.5rem;
}

.fs-5 {
    font-size: 1.25rem;
}

.fs-6 {
    font-size: 1rem;
}

.text-start {
    text-align: left !important;
}

.text-end {
    text-align: right !important;
}

.text-center {
    text-align: center !important;
}

.text-uppercase {
    text-transform: uppercase !important;
}

.text-lowercase {
    text-transform: lowercase !important;
}

.text-capitalize {
    text-transform: capitalize !important;
}

.font-weight-light {
    font-weight: 300 !important;
}

.font-weight-normal {
    font-weight: 400 !important;
}

.font-weight-bold {
    font-weight: 700 !important;
}

.font-italic {
    font-style: italic !important;
}

.text-decoration-none {
    text-decoration: none !important;
}

.text-decoration-underline {
    text-decoration: underline !important;
}

.text-decoration-line-through {
    text-decoration: line-through !important;
}
.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175), 0 0.4rem 0.9375rem rgba(0, 0, 0, 0.1) !important;
}
.card-text-right {
    text-align: right;
}
.full-width {
    max-width: 95%!important;
}
.w-100p {
    width: 100% !important;
}
.w-25 {
    width: 25px!important;
    max-width: 25px!important;
}
.w-50 {
    width: 50px!important;
    max-width: 50px!important;
}
.w-75 {
    width: 75px!important;
    max-width: 75px!important;
}
.w-100 {
    width: 100px!important;
    max-width: 100px!important;
}
.w-auto {
    width: auto!important;
}
.w-125 {
    width: 125px!important;
    max-width: 125px!important;
}
.w-150 {
    width: 150px!important;
    max-width: 150px!important;
}
.w-175 {
    width: 175px!important;
    max-width: 175px!important;
}
.w-200 {
    width: 200px!important;
    max-width: 200px!important;
}
.w-225 {
    width: 225px!important;
    max-width: 225px!important;
}
.w-250 {
    width: 250px!important;
    max-width: 250px!important;
}
.w-300 {
    width: 300px!important;
    max-width: 300px!important;
}
.w-350 {
    width: 350px!important;
    max-width: 350px!important;
}
.w-400 {
    width: 400px!important;
    max-width: 400px!important;
}
.w-450 {
    width: 450px!important;
    max-width: 450px!important;
}
.w-500 {
    width: 500px!important;
    max-width: 500px!important;
}
.doubleScroll-scroll-wrapper {
    position: sticky !important;
    top: 0px;
    z-index: 99;
    background-color: white;
    box-shadow: 0px 5px 5px 0px rgba(82, 63, 105, 0.08);
}
.btn.loading {
    cursor: wait;
    opacity: 0.6;
}
.user-working-day-wrap .form-input-row input {
    height: 38px;
}
.user-working-day-wrap .form-input-row .form-text {
    color: #888;
    font-style: italic;
    font-size: 13px;
}
.user-working-day-wrap .input-group-text {
    border-radius: 0;
}

.cuf-search-wrap {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.h-40 {
    height: 40px !important;
}

.cuf-search-wrap .btn-check-vat {
    width: 180px;
    margin: 0;
}
.cuf-search-wrap > span {
    padding: 10px 0;
}
.cuf-search-txt-wrap {
    position: relative;
    width: 100%;
}
.cuf-search-results {
    position: absolute;
    top: 41px;
    left: 0;
    z-index: 999;
    background: #fff;
    border: 1px solid #ddd;
    width: 100%;
    box-shadow: -3px 0 8px 0 rgba(66, 91, 118, .21);
    border-radius: 4px;
    max-height: 222px;
    overflow-y: auto;
    display: none;
}
.cuf-search-results ul {
    margin: 0;
    padding: 10px;
    list-style: none;
}
.cuf-search-results ul li {
    padding: 5px 8px;
}
.cuf-search-results ul li:hover {
    background-color: var(--primary);
    color: #fff;
    cursor: pointer;
}
.cuf-dd-suggestions-wrap {
    display: none;
}
.bs-nav-tabs {
    display: flex;
}
.bs-nav-tabs .nav-link.active {
    background-color: var(--primary);
    color: #fff;
}
.bs-nav-tabs .nav-link {
    border-color: #dedede;
}
.bs-nav-tabs .nav-link:focus {
    outline: none;
}
.bs-tab-content .tab-pane {
    padding: 15px 0;
}
.pos-rel {position: relative;}
.counter {
    position: absolute;
    top: -5px;
    right: 1px;
    background-color: red;
    color: #fff;
    border-radius: 50%;
    padding: 3px 6px;
    font-size: 12px;
    line-height: 1em;
}
.btns-info-action a.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.btns-info-action a.disabled.success {
    opacity: 0.65;
    cursor: default;
    color: green !important;
}

.deleted-row td {
    color: #6c757d !important;
}
.deleted-row td .btn {
    opacity: 0.75;
}
.deleted-row td .badge {
    opacity: 0.85;
}
.deleted-row td small,
.deleted-row td span {
    color: #6c757d !important;
}

.tt-summary {
    background: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    margin: 1.75rem 0 2.5rem;
    box-shadow: 0 6px 22px rgba(33, 37, 41, 0.06);
}
.tt-summary-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}
.tt-summary-range {
    font-weight: 600;
    color: #495057;
    font-size: 0.95rem;
}
.tt-summary-body {
    background: #ffffff;
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
    box-shadow: inset 0 1px 0 rgba(33, 37, 41, 0.04);
}
.tt-summary-items {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
}
.tt-summary-item {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    min-width: 220px;
}
.tt-summary-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: #212529;
    flex: 0 0 130px;
    display: flex;
    align-items: center;
}
.tt-summary-label::after {
    content: ':';
    margin-left: 0.25rem;
}
.tt-summary-value {
    display: block;
    font-size: 1.45rem;
    font-weight: 700;
    color: #212529;
    line-height: 1;
}
.popup-content {
    max-width: 720px;
}

.popup-title {
    font-size: 20px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.popup-title i.far.fa-thumbtack,
.popup-title i.fas.fa-stopwatch {
    margin-right: 8px;
}

.popup-container .close-popup {
    top: 15px;
    right: 20px;
    font-size: 22px;
}
