<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* rgb(22, 37, 76) main */
/* rgb(0, 184, 197) secondary */
/* rgb(246, 140, 30) gold */
/* rgb(5, 26, 48) black */

button {
    box-shadow: none !important;
    border: 0px;
}

* {
    user-select: text;
    font-family: Roboto;
}

*,
::after,
::before {
    box-sizing: border-box;
}

textarea {
    font-family: Roboto !important;
}

body {
    -webkit-touch-callout: none;
    /* prevent callout to copy image, etc when tap to hold */
    -webkit-text-size-adjust: none;
    /* prevent webkit from resizing text to fit */
    -webkit-user-select: none;
    /* prevent copy paste, to allow, change 'none' to 'text' */

    background-position: center;
    background-size: cover;

    background-attachment: fixed;
    font-family: Roboto;
    font-size: 12px;
    height: 100%;
    margin: 0px;
    padding: 0px;
    width: 100%;
    overflow: hidden;
    background: #f2f3f8;
    font-size: 13px;
}


.card_container {
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    background-color: #fff;
    margin-bottom: 20px;
    border-radius: 4px;
    padding: 16px;
}

.card_container--header {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    position: relative;
    padding: 0 0px;
    border-bottom: 1px solid #ebedf2;
    min-height: 60px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    transition: left .3s, right .3s, height .3s;
    line-height: 60px;
}

.card_container--header-title {
    font-size: 1.2rem;
    font-weight: 500;
    color: #464457;
}

.card_container--header-action {
    display: flex;
    align-items: center;
    align-content: flex-end;
}

.card_container--body {
    display: flex;
    flex-direction: column;
    /* padding: 25px; */
    /* border-radius: 4px; */
}

.card_container--body form {
    padding: 25px 0px;
}

#Documents .card_container--body {
    padding: 25px 0px;
}

.primary_button {
    box-sizing: border-box;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
    outline: 0;
    border: none;
    -webkit-tap-highlight-color: transparent;
    display: inline-block;
    white-space: nowrap;
    text-decoration: none;
    vertical-align: baseline;
    text-align: center;
    margin: 0;
    min-width: 64px;
    line-height: 36px;
    max-height: 36px;
    padding: 0 16px;
    border-radius: 4px;
    overflow: visible;
    transform: translate3d(0, 0, 0);
    background: #001730;
    box-shadow: 0 3px 1px -2px rgba(0, 0, 0, .2), 0 2px 2px 0 rgba(0, 0, 0, .14), 0 1px 5px 0 rgba(0, 0, 0, .12);
    color: #fff;
}

.warning_button {
    background-color: #fbe57e !important;
    background-image: linear-gradient(270deg, #fbe57e 0%, #F7CE68 100%) !important;
    color: gray;
}

.negative_button {
    background-color: #fa6161 !important;
    background-image: linear-gradient(90deg, #fa6161 0%, #F76B1C 100%) !important;

}

.alternate_button {
    background: #E44D7E;
}

.rounded_label {
    border-radius: 20px;
    width: auto;
    display: inline-flex;
    padding: 4px 8px;
    justify-content: center;
}

.primary_button:active {
    box-shadow: 0 5px 5px -3px rgba(0, 0, 0, .2), 0 8px 10px 1px rgba(0, 0, 0, .14), 0 3px 14px 2px rgba(0, 0, 0, .12);
}

.alternate_button:focus {
    box-shadow: 0 5px 5px -3px rgba(0, 0, 0, .2), 0 8px 10px 1px rgba(0, 0, 0, .14), 0 3px 14px 2px rgba(0, 0, 0, .12);
    background: rgba(17, 129, 178, 0.8) !important;
}

.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.link {
    text-decoration: underline !important;
    cursor: pointer;
    display: inline;

}

.global--notification-container {
    opacity: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 16px;
    border-radius: 8px;
    width: 80%;
    max-width: 400px;
    top: -150px;
    position: fixed;
    display: inline-flex;
    z-index: 100000;
}

.global--notification-container.default {
    right: 24px;
}

.global--notification-container.center {
    right: calc((100vw - 260px - 200px) / 2);
}


.animateNotification {
    animation: animateNotification 1s ease-in-out 0.5s both;
}

@keyframes animateNotification {
    0% {
        opacity: 0;
        top: -150px
    }

    100% {
        opacity: 1;
        top: 24px
    }
}

.global--notification-container-icon {
    font-size: 32px;
}

.global--notification-container-message {
    padding: 10px;
    line-height: 1.2em;
    font-size: 13px;
}

.notification--success {
    background: rgba(67, 110, 60, 1);
}

.notification--warning {
    background: rgb(204, 202, 36);
}

.notification--error {
    background: rgb(204, 48, 36);
}

.error-input {
    border: 2px solid rgb(204, 48, 36) !important;
}

.main_table {
    width: 100%
}

.main_table tr {
    border-collapse: collapse;
    width: 100%;
    border-style: solid;
    align-items: center;
    box-sizing: border-box;
    border: 1px solid #d8dce6;
}

.main_table th {
    padding-right: 10px;
    background: rgb(22, 37, 76) !important;
    color: white;
    border: 1px solid rgb(22, 37, 76) !important;
    font-size: 13px;
    align-items: center;
    flex: 1;
    align-items: center;
    overflow: hidden;
    word-wrap: break-word;
    font-weight: bold;
    min-height: 48px;
}

.main_table td {
    padding-right: 10px;
    color: rgba(0, 0, 0, .87);
    font-size: 13px;
    align-items: center;
    flex: 1;
    align-items: center;
    overflow: hidden;
    word-wrap: break-word;
    min-height: 48px;
    padding-top: 4px !important;
    padding-bottom: 4px !important;
}

.neutral_background {
    background: rgba(31, 31, 31, 0.67);
    color: white;
}

.main_background {
    background: rgb(17, 173, 190);
    color: white;
}

.positive_background {
    background: rgb(89, 167, 77) !important;
    color: white !important;
}

.delete_background,
.negative_background {
    background: rgb(204, 48, 36) !important;
    color: white !important;
}

.warning_background {
    background: rgb(204, 202, 36) !important;
}

.main_action {
    display: inline;
    margin: 0px 8px;
    cursor: pointer;
}

.main_action i {
    font-size: 21px;
}

.main_color {
    color: rgb(22, 37, 76);
}

.delete_color {
    color: rgb(204, 48, 36);
}

.positive {
    color: rgb(89, 167, 77) !important;
    font-weight: bold;
}

.negative {
    color: rgb(204, 48, 36) !important;
    font-weight: bold;
}

.warning {
    color: rgb(204, 202, 36) !important;
    font-weight: bold;
}

.input-field {
    margin: 0px !important
}


/* label color */
.input-field label,
.modal-form-input-container label {
    color: #1a1a1a !important;
}

/* label focus color */
.input-field input:focus+label,
.modal-form-input-container input:focus+label {
    color: rgb(22, 37, 76) !important;
}

/* label underline focus color */
.input-field input:focus,
.modal-form-input-container input:focus {
    border-bottom: 1px solid rgb(22, 37, 76) !important;
    box-shadow: 0 1px 0 0 rgb(22, 37, 76) !important;
}

/* icon prefix focus color */
.input-field .prefix.active,
.modal-form-input-container .prefix.active {
    color: rgb(22, 37, 76) !important;
}

.dropdown-content li&gt;a,
.dropdown-content li&gt;span {
    font-size: 14px !important;
    color: #1a1a1a !important;
    padding: 12px 16px !important;
    border-bottom: 1px solid #A7A9C0;
}

button:focus {
    background-color: rgb(22, 37, 76) !important;
}

.datepicker-date-display {
    background: rgb(22, 37, 76) !important;
}

.datepicker-cancel,
.datepicker-clear,
.datepicker-today,
.datepicker-done {
    color: rgb(22, 37, 76) !important;
}

.datepicker-table td.is-today {
    color: rgb(22, 37, 76) !important;
}

.datepicker-table td.is-selected {
    background: rgba(255, 0, 124, 0.8) !important;
}

.element_loader {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
}

.element_loader .preloader-wrapper {
    position: absolute;
    right: 0;
    left: 0;
    margin: auto;
    top: 0;
    bottom: 0;
    width: 100px;
    height: 100px;
}

.element_loader_message {
    width: 100%;
    text-align: center;
    font-size: 23px;
    color: white;
    bottom: 20px;
    position: absolute;
}

.tabs {
    background-color: transparent !important;
    margin-bottom: 16px !important;
    border-bottom: 1px solid #A7A9C0;
}

.tabs .tab {
    text-transform: unset !important
}

.tabs .tab a:hover,
.tabs .tab a.active {
    background-color: transparent !important;
    color: rgb(22, 37, 76) !important;
}

.tabs .indicator {
    background-color: rgb(22, 37, 76) !important;
}

.tabs .tab a {
    color: rgb(22, 37, 76) !important;
}

.swal2-content {
    font-size: 14px !important;
}

.full_page_loader_container {
    z-index: 100003;
    position: fixed;
    height: 100vh;
    width: 100vw;
    background: rgba(0, 0, 0, 0.9);
    top: 0;
    left: 0;
}

#full_page_loader {
    height: 100vh;
    width: 100vw;
}

#full_page_loader .preloader-wrapper {
    position: absolute;
    right: 0;
    left: 0;
    margin: auto;
    top: 0;
    bottom: 0;
    width: 100px;
    height: 100px;
}

.modal {
    display: none;
}

.expense_status {
    padding: 8px 16px;
    text-align: center;
    width: 120px;
    margin: auto;
}

.filter_container {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    font-size: 20px;
    color: white;
    margin: 0px 0px 0px 16px;
    cursor: pointer;
}

.filter_title {
    font-size: 16px;
    border-bottom: 1px solid #A7A9C0;
    width: 100%;
    display: inherit;
    margin: 0px 0px 24px 0px;
    font-weight: bold;
    padding: 8px 0px;
}

[type="checkbox"]:checked+span:not(.lever)::before {
    border-right: 2px solid rgba(255, 0, 124, 0.8) !important;
    border-bottom: 2px solid rgba(255, 0, 124, 0.8) !important;
}

.analytics_card_value {
    height: 60px;
    line-height: 60px;
    font-size: 31px;
    text-align: right;

    font-weight: bold;
}

.analytics_card_label {
    height: 20px;
    line-height: 20px;
    text-align: right;
    /* color: rgba(255, 0, 124, 0.8) !important; */
}

.analytics_card_container {
    position: relative;
    background: #1b1b28;
    height: 100px;
    border-radius: 10px;
    color: #a2a3b7;
    padding: 10px;
}

.half_card_container {
    width: calc(50% - 14px);
    display: inline-flex;
    margin: 5px;
}


.analytics_transaction_container {
    width: 100%;
    padding: 4px;
    height: 80px;
    display: inherit;
    border-bottom: 1px solid #A7A9C0;
}

.analytics_transaction_container_left {
    width: calc(100% - 160px);
    display: inline-block;
}

.analytics_transaction_container_right {
    width: 150px;
    display: inline-block;
}

.analytics_transaction_container_left_tenant {
    display: block;
    margin-top: 6px;
    font-weight: bold;
}

.analytics_transaction_container_left_address_details {
    display: block;
}

.analytics_transaction_container_right_amount {
    display: block;
    text-align: left;
    line-height: 47px;
    height: 47px;
    font-size: 15px;
}

.analytics_transaction_container_right_amount.positive {
    text-align: right;
}

.no_results {
    display: block;
    text-align: center;
    padding: 20px;
    background: rgb(204, 48, 36);
    color: white;
    font-size: 14px;
    margin-top: 20px;
}


.unit_row {
    display: inline-block;
    width: 100%;
    padding: 8px 8px;
    cursor: pointer;
    border-bottom: 1px solid #A7A9C0;
}

.unit_column {
    width: 24%;
    display: inline-block;
}

.supplier_row {
    display: inline-block;
    width: 100%;
    padding: 8px 8px;
    cursor: pointer;
}

.supplier_column {
    width: 32%;
    display: inline-block;
}


.search_no_supplier {
    position: absolute;
    right: 11px;
    top: 57px;
    background: #001730;
    padding: 8px;
    border-radius: 0px 0px 4px 4px;
    cursor: pointer;
    color: white;
    border-top: 1px solid;
    box-shadow: -2px -1px 4px 1px #1b1b28;
}

#loader {
    display: none;
}

#loader_button {
    display: none;
    width: 22%;
    text-align: center;
    left: 0;
    right: 0;
    margin: auto;
}

.lds-facebook {
    display: inline-block;
    position: absolute;
    width: 64px;
    height: 64px;
    right: -10px;
    top: -11px;
}

.lds-facebook div {
    display: inline-block;
    position: absolute;
    left: 6px;
    width: 6px;
    background: white;
    animation: lds-facebook 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
}

.lds-facebook div:nth-child(1) {
    left: 16px;
    animation-delay: -0.24s;
}

.lds-facebook div:nth-child(2) {
    left: 26px;
    animation-delay: -0.12s;
}

.lds-facebook div:nth-child(3) {
    left: 36px;
    animation-delay: 0;
}

@keyframes lds-facebook {
    0% {
        top: 6px;
        height: 51px;
    }

    50%,
    100% {
        top: 19px;
        height: 26px;
    }
}

input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
}

.dropdown-content li&gt;a,
.dropdown-content li&gt;span {
    padding: 6px 12px !important;
}

.dropdown-content li {
    min-height: 34px !important
}

#all_buildings .ui.label,
#all_units .ui.label {
    margin: 4px !important;
}

#search_box .ui.multiple.dropdown&gt;.text {
    margin-left: 0px !important
}

.ui.dropdown .menu&gt;.header {
    color: rgb(22, 37, 76);
}

#search_box .ui.labeled.icon.button&gt;.icon,
.ui.labeled.icon.buttons&gt;.button&gt;.icon {
    background: rgb(17, 173, 190);
    color: white;
}

#search_box button.ui.button {
    background: rgb(17, 173, 190);
    color: white;
}

#search_box .ui.dropdown&gt;.text {
    color: rgba(0, 0, 0, .87);
}

.app_table.active {
    display: table !important;
}

.app_table {
    width: 100%;
}

.app_table_header {
    width: 100%;
    color: #1C1C1C;
    /* background: #A7A9C0 !important; */

}

.app_table_header th {
    padding: 15px 8px !important
}

.app_table_sum {
    width: 100%;
    color: #A7A9C0;
    background: #424242 !important;
}

.app_table_sum_cell {
    border: 1px solid #424242;
    border-right: 1px solid #fff;
    color: #fff;
}

.app_table_sum_cell:last-child {
    border-right: 1px solid #424242;
}

.app_table_header_cell:first-of-type {
    border-left: 1px solid #001730 !important;
}

.app_table_header_cell:last-of-type {
    border-right: 1px solid #001730 !important;
}

.subheader .app_table_header_cell {
    border-right: 1px solid #fff !important;
}

.app_table_header_cell {
    background: #001730 !important;
    color: white;
    border: 1px solid #fff !important;
    border-top: 1px solid #001730 !important;
    border-radius: 0px !important;
}

.new_bill_table_cell {
    padding: 0px 4px !important;
    height: 30px !important;
    box-sizing: border-box;
}

.new_bill_table_cell .measure_box {
    height: 30px !important;
    margin: 0px !important;
    width: 100% !important;
    padding: 0px !important;
}

.app_table_row {
    background: white;
}

.app_table_row:nth-child(even) {
    background: #efefef;
}

.app_table_cell {
    border: 1px solid #001730 !important;
}

.right_cell {
    text-align: right;
    flex-direction: row-reverse;
}

.center_cell {
    text-align: center;
    flex-direction: column !important;
}

.bold_cell {
    font-weight: bold;
}

.with_action {
    cursor: pointer;
}

.app_table_row.with_action:hover {
    background: #0017305c !important;
    cursor: pointer;
}

.warning_row {
    color: rgba(204, 48, 36, 0.8)
}

.warning_cell {
    background: rgba(204, 48, 36, 0.8);
    color: white;
}

.calendar .months-container .month-container {
    margin: 8px 0px;
}

.with_event {
    background: #001730 !important;
    color: #fff !important;
    border-radius: 50% !important;
    height: 27px;
    line-height: 17px;
    text-indent: -2px;
}

.events_container {
    width: 60%;
}

.new_events_container {
    width: 40%;
}

.ui.toggle.checkbox .box,
.ui.toggle.checkbox label {
    color: black;
}

#day_events .item .description {
    margin: 4px 0px;
}

#day_events .item {
    margin: 8px 0px;
}

#day_events .item.alert .header {
    color: rgba(204, 48, 36, 1) !important;
}

.new_bill_step {
    display: none;
}

.new_bill_step.active {
    display: block
}

.actions {
    text-align: right;
    width: 100%;
}

.payment_action_button {
    display: inline-flex;
    padding: 4px 12px;
    margin-right: 8px;
    height: 35px;
    line-height: 35px;
    border-radius: 16px;
    cursor: pointer;
}

.payment_action_button i {
    font-size: 18px;
    line-height: 29px;
}

.payment_action_button span {
    display: block;
    line-height: 28px;
    margin-left: 6px;
}

#filters {
    display: inline-block;
    margin: 10px 0px 0px 0px;
    background: rgb(22, 37, 76);
    height: 70px;
    box-sizing: border-box;
    width: 100%;
    margin: 0px !important;
}

.filter_item {
    width: 320px;

    display: inline-block;

    margin-left: 20px;
}

.history_item {
    border-bottom: 2px solid #9ea4a4;
    padding: 4px 0px;
    position: relative;
    cursor: pointer;
    padding: 12px;
    ;
}

.history_item_tenant {
    font-weight: bold;
}

.history_item_contact {
    font-size: 11px;
    color: #515353;
}

.history_item_date {
    font-size: 11px;
    color: #515353;
}

.history_item_occassion {
    position: absolute;
    right: 0;
    top: 19px;
}

.active_communication {
    background: rgb(17, 173, 190);
    ;
    color: white !important;
}

.active_communication .history_item_date,
.active_communication .history_item_contact {
    color: white !important;
}

.clickable_row {
    cursor: pointer;
}

td.clickable_row {
    text-decoration: underline;
}

.clickable_row:hover {
    color: #E44D7E;
}

.clickable_cell {
    cursor: pointer;
}

#autocomplete {
    max-width: 400px;
    margin: 0 auto;
}

.autocomplete-result {
    border-top: 1px solid #eee;
    padding: 16px;
    background: transparent;
}

.autocomplete-input {
    width: 400px;
    height: 50px;
    background: transparent;
    box-shadow: 1px 1px 2px 1px #eee;
    border: 1px solid#A7A9C0;
    text-indent: 45px;
    border-radius: 30px;
}

.wiki-title {
    font-size: 20px;
    margin-bottom: 8px;
}

.wiki-snippet {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.54);
}

.border_right_bold {
    border-right: 2px solid rgb(22, 37, 76);
}

.border_right_bold_white {
    border-right: 2px solid #A7A9C0;
}

.environment {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 120px;
    height: 30px;
    background: rgba(204, 48, 36, 1);
    color: white;
    text-align: center;
    line-height: 30px;
    box-shadow: 0 0 13px 0 rgba(82, 63, 105, .05);
    border-radius: 4px 4px 0px 0px;
    right: 16px;
    z-index: 1;
}

.notifications_count {
    background: #E44D7E;
    padding: 8px;
    border-radius: 50%;
    width: 38px;
    height: 33px;
    display: inline-block;
    margin-left: 0px;
    line-height: 16px;
    text-align: center;
    margin-top: 8px;
}

.notification_icon {
    font-size: 19px;
    color: rgb(204, 202, 36);
    border: 1px solid rgb(204, 202, 36);
    width: 30px;
    height: 30px;
    display: inline-block;
    text-align: center;
    line-height: 26px;
    border-radius: 50%;
    position: relative;
    float: left;
}

.notification_action {
    font-size: 19px;
    color: white;
    width: 30px;
    height: 30px;
    display: inline-block;
    text-align: center;
    line-height: 30px;
    border-radius: 50%;
    position: absolute;
    right: 19px;
    cursor: pointer;
}

.notification_container {
    padding: 8px 0px;
    border-bottom: 1px solid #bdbdbd;
    min-height: 50px;
}


.notification_action.redirect {
    color: rgba(67, 110, 60, 1);
    border: 1px solid rgba(67, 110, 60, 1);
    margin-right: 40px;
}

.notification_action.close {
    color: rgb(204, 48, 36);
    border: 1px solid rgb(204, 48, 36);
}

.notification_text {
    font-size: 14px;
    display: inline-block;
    margin-left: 14px;
    width: calc(100% - 125px);
}

.bank1_button {
    background: #06a7c6;
}

.bank2_button {
    background: #11366b;
}

.bank3_button {
    background: #e52600;
}

.bank4_button {
    background: #fab414;
}

.bank5_button {
    background: #424241;
}

.bank6_button {
    background: #32c1d5;
}

.type_button {
    background: #001730;
}

.transaction_type.rounded_button {
    padding: 6px;
    text-align: center;
    font-size: 11px;
    font-weight: bold;
    color: white;
}

#meassures_container {
    background: white;
    padding: 13px;
    border-radius: 0px 0px 4px 4px;
    display: none
}

.full_page_search {
    background: #4b6cb7;
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #182848, #4b6cb7);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #182848, #4b6cb7);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

    height: 100vh;
    width: 100vw;
    position: absolute;
    z-index: 100;
    top: -100vh;
    left: 0;
    transition: all 0.5s ease-in-out;
}

.full_page_search.show {
    top: 0
}

.full_page_search_input_container {
    position: absolute;
    width: 770px;
    top: 50%;
    left: 50%;
    /* bring your own prefixes */
    transform: translate(-50%, -50%);
    height: auto;
}

.full_page_search_input_field_container {
    display: inline-flex;
    width: 100%;
}

.full_page_search_avatar {
    background: url('/img/bot.png');
    width: 50px;
    height: 35px;
    display: inline-block;
    background-position: center;
    background-size: contain !important;
    background-repeat: no-repeat;
    margin-top: 11px;
}

#global_search {
    color: white;
    display: inline-block;
    width: 330px !important;
    margin: 0px !important;
    margin-left: 10px !important;
    outline-color: rgb(255, 255, 255) !important;
    width: 100% !important;
    font-size: 15px !important;
}

#global_search:focus {
    outline: none !important;
    border-color: #A7A9C0;
    outline-color: rgb(255, 255, 255);
}

#global_search::selection,
#global_search::-moz-selection {
    background: #fff2a8;
}

.full_page_search_suggestions {
    transition: all 0.5s ease-in-out;
}

.suggestion {
    padding: 10px 8px;
    background: white;
    border-bottom: 1px solid #A7A9C0;
}

.suggestion_command {
    font-weight: bold;
    margin-right: 8px;
}

.suggestion_description {
    color: #646464;
}

.highlighted_command {}

.pointer {
    cursor: pointer;
}

.app_input {
    width: 100%;
    border: 0px;
    border-bottom: 1px solid white;
    height: 40px;
    background: transparent;
    margin-top: 10px;
    color: white;
    font-size: 16px;
}

.app_input:active {
    border: 0px solid white !important;
    border-bottom: 1px solid white;
}

#path {
    margin-top: 24px;
}

.path_item {
    cursor: pointer;
    padding: 8px;
}

.path_item::after {
    content: "&gt;";
}

.path_item:last-of-type::after {
    content: "";
}

.path_item:first-of-type {
    padding: 8px 8px 8px 0px;
}

.path_item:hover {
    text-decoration: underline;
}

.directories {
    background: #edeeee;
    margin-top: 12px;
}

.directory {
    padding-left: 12px;
    height: 40px;
    line-height: 40px;
    cursor: pointer;
    font-size: 15px;
    border-bottom: 1px solid #1a1a1a;
}

.file {
    padding-left: 12px;
    height: 40px;
    line-height: 40px;
    cursor: pointer;
    font-size: 15px;
    border-bottom: 1px solid #1a1a1a1a;
}

.non_existing_file,
.unavailable_action {
    opacity: 0.5;
    cursor: not-allowed;
}

.moving_panel {
    width: 320px;
    height: 100vh;
    position: fixed;
    right: -320px;
    transition: all ease-in-out 0.6s;
    top: 0px;
    background: #A7A9C0;

    z-index: 1000;
}

.moving_panel.open {
    right: 0;
    box-shadow: 4px 9px 9px 8px rgba(0, 0, 0, 0.4);
}

.close_moving_panel {
    height: 40px;
    width: 40px;
    line-height: 36px;
    text-align: center;
    font-size: 30px;
    border: 1px solid;
    border-radius: 50%;
    position: absolute;
    top: 20px;
    left: 20px;
    cursor: pointer;
}

.moving_panel_file_icon {
    background: url('/img/file_icon.png');
    width: 150px;
    height: 220px;
    background-position: center;
    background-size: contain !important;
    background-repeat: no-repeat;
    margin: auto;
    margin-top: 40px;
}

.moning_panel_file_name {
    text-align: center;
    font-size: 20px;
    padding: 18px;
    margin-bottom: 8px;
}

.moning_panel_file_details {
    text-align: center;
    font-size: 15px;
    padding: 4px;
}

.moving_panel_actions {
    margin-top: 12px;
    text-align: center;
}

.moving_panel_action {
    display: inline-block;
    height: 45px;
    width: auto;
    padding: 0px 16px;
    box-sizing: border-box;
    text-align: center;
    line-height: 45px;
    margin: 8px;
    cursor: pointer;
}

.unit_details_row {
    margin-bottom: 4px;
}

.unit_details_label {
    width: 160px;
    display: inline-block;
}

.unit_details_row input {
    font-size: 12px;
    border: 1px solid #d8dce6;
    width: calc(100% - 160px);
    height: 30px;
    text-indent: 6px;
}


.payment_summary_icon {}

.payment_summary_details {}

.payment_summary_details_account {
    font-size: 13px !important;
}

.payment_summary_details_amount {
    font-size: 32px !important;
}

.summary_accounts {
    position: relative;
    box-shadow: 0 0 13px 0 rgba(0, 0, 0, .55);
}

.summary_account {
    display: inline-flex;
    height: 52px;
    padding: 8px;
    width: 100%;
    border-bottom: 1px solid gray;
    background: #19222a;
}

.summary_account_details {
    width: 50%;
}

.summary_account_name {
    width: 100%;
    display: inline-block;
}

.summary_account_balance {
    width: 100%;
    display: inline-block;
}

.summary_amount {
    width: 30%;
    display: inline-block;
    background: transparent;
    border: 1px solid white;
    text-indent: 4px;
    color: white;
    text-align: center;
}

.summary_account_actions {
    width: 20%;
    display: inline-block;
    text-align: right;
    color: white;
}

.owner_container {
    position: relative;
    padding-left: 42px !important;
}

.delete_owner_action {
    position: absolute;
    left: 0;
    top: -4px;
}

.unit_note {
    background: yellow;
    padding: 20px;
    position: relative;
    margin-bottom: 10px;
    border-radius: 8px;
}

.delete_note_action {
    position: absolute;
    right: 12px;
    top: 5px;

}

.edit_note_action {
    position: absolute;
    right: 40px;
    top: 5px;

}

.note_none {
    background: rgb(17, 173, 190);
    color: white;
}

.note_info {
    background: #1b1b28;
    color: white;
}

.note_warning {
    background: rgb(204, 202, 36);
    color: white;
}

.note_critical {
    background: rgb(204, 48, 36);
    color: white;
}

.delete_note_action i,
.edit_note_action i {
    color: white !important
}

.unit_log {
    display: inline-flex;
    margin-bottom: 15px;
    border-bottom: 1px dashed;
    width: 100%;
    padding-bottom: 13px;
}

.unit_log_icon {
    width: 40px;
    display: inline-flex;
}

.unit_log_details {
    width: calc(100% - 50px);
    position: relative;
}

.unit_log_details_date {}

.unit_log_details_text {
    display: inline;
    width: 100%;
    font-size: 13px !important;
}

.unit_log_details_text p {
    font-size: 13px !important;
}

strong {
    font-weight: bold !important;
}

.add_note_button {
    position: absolute;
    right: 10px;
    height: 40px;
    width: 40px;
    font-size: 27px;
    background: green;
    color: white;
    text-align: center;
    line-height: 37px;
    border-radius: 50%;
    top: -60px;
    cursor: pointer;
}



.contact_summary_close {
    width: 30px;
    height: 30px;
    position: absolute;
    display: block;
    z-index: 100002;
    margin-top: -15px;
    left: -15px;
    line-height: 28px;
    text-align: center;
    font-size: 25px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    box-shadow: 0 0 13px 0 rgba(0, 0, 0, .25);
}

.summary_modal {
    display: none;
    width: 1024px;
    max-width: 90vw;
    position: absolute;
    background: white;
    max-height: 90vh;
    top: 5vh;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 100001;
    box-shadow: 0 0 13px 0 rgba(0, 0, 0, .25);
}

.summary_modal_header {
    height: 50px;
    padding: 12px;
    box-shadow: 0 0 13px 0 rgba(0, 0, 0, .25);
    background: #00a586 !important;
    color: white;
}

.summary_modal_header span {
    width: 100%;
    display: block;
    height: 30px;
    line-height: 30px;
    font-weight: bold;
}

.summary_action {
    background: rgb(17, 173, 190);
    color: white;
    width: auto;
    display: inline-block;
    padding: 8px 16px;
    border-radius: 4px;
    position: absolute;
    top: 10px;
    right: 12px;
    cursor: pointer;
}

.summary_modal_content {
    display: flex;
    flex-direction: column;
    overflow: auto;
    max-height: calc(90vh - 50px);
    display: block !important;
    padding: 12px !important;
    /* background: #A7A9C0; */
}

.summary_content_record {
    padding: 8px 0px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    border-bottom: 1px solid gainsboro;
}

.summary_content_record:last-of-type {
    border: 0px solid !important;
}

.summary_contect_record_value {
    display: inline-block;
}

.contact_status_pill {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 11px;
}

.contact_status_pill.pending {
    background: rgb(204, 202, 36);
}

.contact_status_pill.fail {
    background: rgb(204, 48, 36);
    color: white;
}

.contact_status_pill.success {
    background: rgba(67, 110, 60, 1);
    color: white;
}

.supplier_pill {
    background: #dee2e6;
    padding: 4px 8px;
    border-radius: 30px;
    display: inline-block;
    margin: 2px;
}

.page_settings {
    display: flex;
    align-items: center;
    padding: 24px 12px;
    background: white;
    width: calc(100vw - 260px);
    left: 260px;
    position: absolute;
    top: 0px;
    z-index: 1;
    border-bottom: 0.5px solid #A7A9C0;

}

.page_settings .title {
    display: inline-flex;
    font-size: 24px;
    line-height: 47px;
    font-family: Roboto;
}

.action_bar {
    padding: 8px;
    display: inline-flex;
    margin-left: auto;
    width: 600px;
    height: 52px;
    justify-content: right;
}

.search_bar {
    padding: 8px;
    display: inline-flex;
    margin-left: auto;
    width: 400px;
    height: 47px;
    border: 0.5px solid #A7A9C0;
    border-radius: 8px;
}

#search {
    border: 1px solid transparent;
    height: 26px;
    width: calc(100% - 55px);
}

#search_order {
    height: 30px;
}

.search_bar .input-field {
    width: 100%;
    display: inline-flex;
}

.search_bar .input-field i {
    top: 0px !important;
}

.rounded_button {
    width: 40px;
    height: 40px;
    border-radius: 40px;
    font-size: 32px;
    line-height: 38px;
    text-align: center;
    margin-left: 12px;
    background: #E44D7E;
    color: white;
    /* margin-top: 6px; */
    cursor: pointer;
}

.bank {
    margin: 2px;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    display: block;
}

.bank1 {
    background: #19717d;
}

.bank2 {
    background: #11366b;
}

.bank3 {
    background: #e52600;
}

.bank4 {
    background: #fab414;
}

.bank5 {
    background: #fab414;
}

.bank6 {
    background: #32c1d5;
}

.rounded_bank {
    padding: 6px;
    text-align: center;
    font-size: 11px;
    font-weight: bold;
    color: white;
}

#single_bill_details_modal .main_table.active {
    display: table !important;
}

.outsourced_building {
    background: #c85a453d !important;
}

.pagination_has_more {
    cursor: pointer !important;
    text-align: center !important;
    display: block !important;
    border: 0px solid white !important;
}

.pagination {
    display: inline-flex;
    list-style: none;
    padding: 0px;
    font-size: 11px;
}

.pagination li {
    width: 25px;
    display: inline-flex;
    height: 25px;
    line-height: 25px;
    text-align: center;
    cursor: pointer;
    border-radius: 8px;
    border: 1px solid #DDDEEE;
    margin: 4px;
    color: #001730;
}

.pagination li.disabled {
    opacity: 0.1;
}

.pagination li.active {
    background: #001730;
    color: white;
}

.pagination li a {
    width: 25px;
    text-align: center;
    font-size: 11px !important;
    line-height: 23px !important;
    padding: 0px !important;
}

.pagination li i {
    font-size: 11px !important;
    line-height: 23px !important;
    padding: 0px !important;
}

.user_card {
    box-shadow: 3px 5px 9px 1px rgba(0, 0, 0, 0.4);
    border-radius: 4px;
}

.user_avatar_container {
    background-color: rgb(246, 140, 30);
    height: 140px;
    width: 100%;
    text-align: center;
    justify-content: center;
    margin: auto;
    border-radius: 4px 4px 0px 0px;
    position: relative;


}

.user_avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: white;
    background-size: 75% !important;
    background-image: url('/img/new_logo.png');
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0px;
    top: 0px;
    margin: auto;
    box-shadow: 3px 5px 9px 1px rgba(0, 0, 0, 0.4);
}

.user_info_container {
    background: #f1f1f1;
    border-radius: 0px 0px 4px 4px;
}

.user_avatar_container .title {
    position: absolute;
    left: 0;
    right: 0;
    margin-top: 20px;
    font-size: 22px;
    color: white;
    font-weight: bold;
}

.no_entries {
    background-color: #fa6161;
    background-image: linear-gradient(90deg, #fa6161 0%, #F76B1C 100%);
    color: white;
    height: 60px;
    line-height: 60px;
    font-size: 18px;
    width: 80%;
    text-align: center;
    margin: auto;
    margin-top: auto;
    margin-top: 30px;
}

.close_modal_button {
    position: absolute;
    font-size: 19px;
    border-radius: 50%;
    border: 1px solid;
    width: 30px;
    height: 30px;
    text-align: center;
    cursor: pointer;
    right: 8px;
    top: 8px;
}

.modal-content {
    padding: 12px 4px 4px 4px !important;
    /* background: #00a586; */
}

.modal-overlay {
    opacity: 0.8 !important;
}

input.browser-default {
    font-size: 12px;
    border: 1px solid #d8dce6;
    width: 100%;
    height: 3rem;
    text-indent: 6px;
}
</pre></body></html>