html,
body {
    height: 100%;
    font-family: Tahoma, sans-serif !important;
    background-color: var(--background) !important;
    color: var(--basic_font);
}

body, select, select option, .form-control, table th, .pagination .page-link, .summary, .hint-modal {
    font-size: 13px !important;
}

table td,
form label,
.modal-body .nav-link,
.modal-body .form-control,
.modal-body select,
.modal-body select option,
.modal-body .help-block,
.modal-body .input-group-text,
.bootstrap-select .filter-option-inner-inner{
    font-size: 12px !important;
}

.modal {
    overflow-y: auto;
}

.table td {
    min-width: 40px;
    max-width: 500px;
    overflow: hidden;
    text-overflow: ellipsis;
}

b, strong {
    font-weight: bold;
}

.wrap {
    min-height: 100%;
    height: auto;
    margin: 0 auto -60px;
    padding: 0 0 60px;
}

.wrap > .container {
    padding: 10px 3rem 20px;
}

.footer {
    height: 60px;
    background-color: var(--background);
    border-top: 1px solid #ddd;
    padding-top: 20px;
}

.jumbotron {
    text-align: center;
    background-color: transparent;
}

.jumbotron .btn {
    font-size: 21px;
    padding: 14px 24px;
}

.not-set {
    color: #c55;
    font-style: italic;
}

.grid-view, .grid-view .dataTables_wrapper{
    overflow: auto;
}

.grid-view .dataTable .focus{
    box-shadow: inset 0 0 0 1px var(--primary);
}

.grid-view table.dataTable tbody tr.highlight {
    background-color: transparent !important;
}

.grid-view .dataTable .focus.focus-edit {
    box-shadow: inset 0 0 0 1px #36e0e5 !important;
}
.grid-view .dataTable tr td.editable {
    box-sizing: border-box;
    white-space: pre;
    /*background-color: lightgreen;*/
}

.grid-view .dataTable tr td.not-editable {
    font-style: italic;
    opacity: 0.7;
}

.grid-view div.DTE DTE_Inline {
    position: relative;
    display: table-cell;
}

.grid-view div.DTE_Inline div.DTE_Field_Error, .grid-view div.DTE_Inline div.DTE_Form_Error {
    color: red;
}

.grid-view .dataTable tr td.editable select {
    /*background: none;*/
    padding: calc(0.2rem - 2px) 0.2rem !important;
}

.grid-view .dataTable tr td.editable select:focus {
    outline-color: transparent;
}

.grid-view .dataTable div.DTE_Inline input {
    padding: calc(0.2rem - 2px) 0.2rem !important;
    border: none;
    background-color: transparent;
    box-sizing: border-box;
    width: 100% !important;
}

.grid-view .dataTable div.DTE_Inline input:focus {
    outline-color: transparent;
}

div.DTE_Inline .DTE_Label, div.DTE_Inline .DTE_Inline_Buttons {
    display: none;
}

div.DTE_Inline div.DTE_Field_Error, div.DTE_Inline div.DTE_Form_Error {
    font-size: 12px;
}

div.DTE_Inline select {
    height: auto;
    padding: 0;
    border-radius: 0;
}

.ui-menu .ui-menu-item-wrapper.ui-state-active, .dropdown-item.active, .dropdown-item:active{
    background: var(--primary) !important;
    color: var(--header_text) !important;
}

/* add sorting icons to gridview sort links */
.grid-view th a:after {
    position: relative;
    top: 1px;
    display: inline-block;
    font-family: "Font Awesome 5 Free";
    font-weight: 800;
    font-style: normal;
    line-height: 1;
    padding-left: 5px;
    content: "\f0dc";
    color: #b6b6b6;
}

.grid-view th a.desc:after {
    content: "\f0dd";
    color: black;
}
.grid-view th a.asc:after {
    content: "\f0de";
    color: black;
}

.grid-view th {
    white-space: nowrap;
}

.hint-block {
    display: block;
    margin-top: 5px;
    color: #999;
}

.error-summary {
    color: #a94442;
    background: #fdf7f7;
    border-left: 3px solid #eed3d7;
    padding: 10px 20px;
    margin: 0 0 15px 0;
}

.form-group .help-block {
    position: relative;
}

.container {
    max-width: none !important;
}
.pagination .page-item.active .page-link {
    background-color: var(--primary) !important;
}
.pagination input.pager-input {
    color: white;
    border:0;
    font-size: 0.9rem;
    padding: 6px 12px;
    font-weight: 300;
    width: 40px;
    border-radius: 3px;
}

.grid-view .summary {
    text-align: right;
}

.pagination {
    display: inline-flex !important;
}

.dataTables_paginate.paging_numbers {
    float: right;
}

.sticky-table > thead tr:nth-child(1) th{
    position: sticky;
    top: 56px;
    z-index: 2;
    height: 28px;
}

.sticky-table > thead tr:nth-child(2) td{
    position: sticky;
    top: 83px;
    z-index: 2;
    height: 40px;
}

.sticky {
    background: var(--background);
    position: sticky;
    top: 0;
    z-index: 1;
}

.action-bar {
    /*height: 60px !important;*/
}

.not-sticky .action-bar {
    height: auto !important;
}

.action-bar label {
    white-space: nowrap;
}

@media (max-width: 767.98px) {
    .sticky-table thead tr:nth-child(1) th{
        top: 162px;
    }

    .sticky-table thead tr:nth-child(2) td{
        top: 204px;
    }
}

@media (max-width: 767px) {
    .modal-footer button {
        width: 100%;
        margin: 0.25rem!important;
    }
}

::-ms-clear {
    display: none;
}

.has-icon {
    position: relative;
}

.form-control-clear {
    z-index: 10;
    pointer-events: auto;
    cursor: pointer;
    position: absolute;
    right: 55px;
    top: 0;
    margin: 3px;
    color: gray;
}

.form-password-clear {
    z-index: 10;
    pointer-events: auto;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 0;
    margin: 10px;
    color: gray;
}

.has-icon .was-validated .form-control:valid, .has-icon .form-control.is-valid,
.has-icon .was-validated .form-control:invalid, .has-icon .form-control.is-invalid{
    background-position: center right calc(2.25rem);
}

.grid-action {
    cursor: pointer;
}

.navbar a:hover + div {
    display: block;
}

.dropdown-menu a.waves-light {
    display: block;
    padding: 6px;
}

.navbar .dropdown-menu:hover {
    display: block;
}

.dropdown-menu .dropdown-menu {
    left: 100%;
    top: -9px;
}

.dropdown-menu.mega-menu{
    max-width: 880px;
}

.dropdown a {
    -webkit-transition-property: none;
    -moz-transition-property: none;
    -o-transition-property: none;
    transition-property: none;
}

.dropdown-menu .dropdown-menu.dropdown-menu-right {
    left: auto;
    right: 100%;
    top: -9px;
}

.dropdown .dropdown-menu, .dropleft .dropdown-menu, .dropright .dropdown-menu, .dropup .dropdown-menu, .dropdown-menu {
    padding: .5rem;
}

.scrollable-menu {
    height: auto;
    max-height: 400px;
    overflow-x: hidden;
}

.dropdown-item.dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: unset;
    content: "";
    border-top: 0.3em solid transparent;
    border-right: 0;
    border-bottom: 0.3em solid transparent;
    border-left: 0.3em solid;
}

li.dropdown-item, .dropdown-item {
    padding: 0px;
    line-height: 1;
}

li.dropdown-item a{
    width: 100%;
}

.dropdown-item:hover, .dropdown-item:focus {
    background-color: var(--header);
}

.navbar {
    padding-top: 0.2rem !important;
    padding-bottom: 0.2rem !important;
}

.navbar.navbar-dark {
    background-color: var(--header);
}

.navbar.navbar-dark a,
.navbar.navbar-dark .dropdown-item, #context-menu .dropdown-item:hover {
    color: var(--header_text) !important;
}

.navbar.navbar-dark .dropdown-menu a,
.navbar.navbar-dark .dropdown-menu .dropdown-item a {
    color: var(--dropdown_text) !important;
}

.navbar.navbar-dark .dropdown-menu a.global-function {
    color: var(--danger) !important;
}

.navbar.navbar-dark .dropdown-menu a:hover,
.dropdown-menu a:hover,
.dropdown-menu .dropdown-item a:hover {
    color: var(--header_text) !important;
}

.accountant-nav a {
    max-width: 250px;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: inline-block;
}

.history-button:after {
    content: '\f0da';
    margin-left: 6px;
    font-family: "Font Awesome 5 Free";
    font-weight: 800;
}

.alert-container {
    z-index: 10010;
    position: fixed !important;
    left: 50%;
    width: 30vw;
    margin-left: -15vw;
}

.container > div > h1 {
    display: inline-block;
}

.info-bubble {
    color: var(--primary);
    font-size: 20px;
    cursor: pointer;
}

.tab-content {
    margin-top: 1rem;
}

.nav-tabs .nav-link.active {
    color: var(--selected_tab);
    background-color: transparent;
    text-decoration: underline;
}
.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
    border-color: var(--popup_background) var(--popup_background) #dee2e6;
}

.nav-tabs .nav-link {
    color: var(--not_selected_tab);
    border: 0;
    padding: 0.5rem 0.5rem;
}

.btn-outline-gray {
    border: 2px solid var(--gray) !important;
    background-color: transparent !important;
    color: var(--gray) !important;
}

.custom-select.is-valid:focus,
.form-control.is-valid:focus,
.is-valid.custom-file-control:focus,
.was-validated .custom-file-control:valid:focus,
.was-validated .custom-select:valid:focus,
.was-validated .form-control:valid:focus,
.custom-select.is-invalid:focus,
.form-control.is-invalid:focus,
.is-invalid.custom-file-control:focus,
.was-validated .custom-file-control:invalid:focus,
.was-validated .custom-select:invalid:focus,
.was-validated .form-control:invalid:focus {
    box-shadow: none !important;
}

input.is-invalid, .is-invalid + span.ui-combobox input {
    background-color: rgba(255,0,0,0.1);
}

.bmd-help-error {
    display: block;
    color: var(--danger) !important;
}

.is-invalid + span.ui-combobox input {
    border-color: var(--danger) !important;
}

.is-valid + span.ui-combobox input {
    border-color: #28a745 !important;
}

.text-primary,
.text-primary a{
    color: var(--primary) !important;
}

a.text-primary:hover {
    color: var(--primary) !important;
}

.btn-primary {
    background-color: var(--primary) !important;
}

.btn-primary:not([disabled]):not(.disabled):active, .btn-primary:not([disabled]):not(.disabled).active, .show > .btn-primary.dropdown-toggle, .btn-primary.dropdown-toggle, .btn-primary.dropdown-toggle:hover {
    background-color: var(--primary) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.btn-outline-primary {
    border: 2px solid var(--primary) !important;
    background-color: transparent !important;
    color: var(--primary) !important;
}

.btn-outline-primary:hover, .btn-outline-primary:focus, .btn-outline-primary:active, .btn-outline-primary:active:focus, .btn-outline-primary.active {
    border-color: var(--primary) !important;
    background-color: transparent !important;
    color: var(--primary) !important;
}

.badge-primary {
    background-color: var(--primary) !important;
}








.text-danger {
    color: var(--danger) !important;
}

a.text-danger:hover {
    color: var(--danger) !important;
}

.btn-danger {
    background-color: var(--danger) !important;
}

.btn-danger:not([disabled]):not(.disabled):active, .btn-danger:not([disabled]):not(.disabled).active, .show > .btn-danger.dropdown-toggle {
    background-color: var(--danger) !important;
}

.bg-danger {
    background-color: var(--danger) !important;
}

.btn-outline-danger {
    border: 2px solid var(--danger) !important;
    background-color: transparent !important;
    color: var(--danger) !important;
}

.btn-outline-danger:hover, .btn-outline-danger:focus, .btn-outline-danger:active, .btn-outline-danger:active:focus, .btn-outline-danger.active {
    border-color: var(--danger) !important;
    background-color: transparent !important;
    color: var(--danger) !important;
}

.badge-danger {
    background-color: var(--danger) !important;
}






.custom-control-input:checked ~ .custom-control-label::before {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
}

.table thead tr th {
    text-align: center;
}

.table thead tr th .custom-checkbox{
    text-align: left;
}

.table thead tr th, .table thead tr td {
    background-color: var(--table_header);
}

table.table-hover tbody tr[role=row]:hover {
    background-color: var(--table_hover);
    color: var(--table_hover_text);
}

table tr.foreign-receipt-book, .child-table tr.foreign-receipt-book td {
    background-color: var(--table_foreign_receipt);
}

table.table-hover tbody tr:hover {
    background-color: inherit;
    color: inherit;
}

table tbody tr[role=row].selected {
    background-color: var(--table_hover);
    color: var(--table_hover_text);
}

.table thead tr th,
.table thead tr td,
.table thead tr a{
    color: var(--table_font);
}

.table-bordered td,
.table-bordered th{
    border: 1px solid var(--table_border);
}

.table-bordered thead th,
.table-bordered thead td {
    border-top: 0;
    border-bottom: 0;
    box-shadow: inset 0 1px 0 0px var(--table_border), inset 0 -1px 0 0px var(--table_border);
}

.table tfoot tr td{
    border-top: 3px solid var(--table_border);
}

.table tr td.separator, .table tr th.separator{
    border-left: 3px solid var(--table_border);
}

.child-table tr td {
    background-color: var(--background);
}

.form-control:focus {
    background-color: var(--table_hover);
    box-shadow: none;
    border-color: #ced4da;
}

.modal-fluid {
    margin-top: 50px;
    padding: 0 50px;
}

.modal-header, .card-header {
    padding-top: 0.2rem;
    padding-bottom: 0.2rem;
}

.modal-header.bg-danger {
    color: var(--popup_header_font) !important;
}

.modal-header.bg-primary {
    color: var(--popup_header_font) !important;
    background-color: var(--popup_header_background) !important;
}

.modal-header .close {
    color: var(--popup_header_font);
    margin: -0.6rem -1rem -1rem auto;
    font-size: 1rem;
}

.modal-content-hint, .modal-content-sub {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0.3rem;
    outline: 0;
}

.modal-content, .card-body, .modal-content-hint, .modal-content-sub {
    background-color: var(--popup_background);
}

form label, .modal-body label {
    margin-bottom: 0;
    color: var(--label_font);
}

.modal-body input, .modal-body textarea {
    background-color: var(--background_input);
    color: var(--input_font);
    border-color: var(--input_border);
}

.modal-body input:disabled,
.modal-body select:disabled,
.modal-body div:disabled,
.modal-body div.disabled,
.modal-body select.disabled,
.disabled input,
.disabled select,
.disabled a{
    background-color: var(--background_input_disabled) !important;
}

.modal-body select, .dropdown.custom-select {
    background-color: var(--select_background);
    color: var(--select_font);
    border-color: var(--select_border);
}

.ui-combobox .input-group-append a, .ui-combobox .ui-autocomplete-input {
    color: var(--select_font);
    border-color: var(--select_border) !important;
}

.ui-combobox .input-group-append a,
.ui-combobox:not(.disabled) .ui-autocomplete-input:not([readonly]) {
    background-color: var(--select_background);
}

.ui-combobox.disabled .input-group-append a {
    background-color: var(--background_input_disabled);
}

.modal-footer {
    flex-wrap: wrap;
}

.badge {
    padding: 4px 5px;
}

.btn.disabled, .btn[disabled] {
    background-color: #bdbdbd !important;
}

.btn {
    border-radius: 0;
}

.btn-sm, .btn-group-sm > .btn {
    line-height: 14px;
}

.btn, .btn:hover, .btn:active, .btn:focus, .badge {
    box-shadow: none;
}

.btn-sm {
    padding: 9px 1rem !important;
}

.btn[class*=btn-outline-].btn-sm {
    padding: 7px 1rem !important;
}

.button-column .btn {
    margin: 0 3px 3px;
}

.button-controls {
    display: table;
    height: 100%;
}

.button-controls > span {
    display: table-cell;
    vertical-align: middle
}

.button-controls .badge i {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding: 0 5px;
}

.button-controls i.fa-backward,
.button-controls i.fa-forward{
    font-size: 80%;
    padding: 0 3px;
}

.checkbox-button .btn.btn-primary {
    padding: 6px 14px !important;
    border: 2px solid transparent;
}

.checkbox-button .btn.btn-outline-primary {
    padding: 6px 14px !important;
}

.search-group a {
    margin-left: 0;
}

.search-group input.form-control {
    margin: 0;
    width: auto;
    display: inline;
}

.color-preview {
    padding: 0;
    border-radius: 0;
    margin: 0;
    border: 0;
    background-color: transparent !important;
}

.color-group {
    margin: 0 -15px;
    padding: 3px 2rem 1px !important;
}

.color-group:last-child {
    margin: 0 -15px;
    padding-bottom: 10px !important;
}

select {
    font-family: inherit !important;
    width: 100%;
    height: calc(2.25rem + 2px);
    padding: 0.375rem 1.75rem 0.375rem 0.75rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    vertical-align: middle;
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

select[multiple], select[size]:not([size="1"]) {
    height: auto;
    padding-right: 0.75rem;
    background-image: none;
}

.was-validated .custom-select:valid, .custom-select.is-valid, .custom-select.is-invalid, .was-validated .custom-select:invalid, .is-invalid + span.ui-combobox input {
    background-color: var(--select_background);
}

.is-invalid + span.ui-combobox.disabled input,  span.ui-combobox.disabled input{
    background-color: var(--background_input_disabled);
}

.custom-control-input.is-valid~.custom-control-label,
.was-validated .custom-control-input:valid~.custom-control-label {
    color: inherit !important;
}

.custom-control-input.is-valid~.custom-control-label::before,
.was-validated .custom-control-input:valid~.custom-control-label::before {
    border-color: #adb5bd !important;
}

.checkbox-list label {
    display: block !important;
}

.custom-file-label {
    padding-top: 8px;
    overflow: hidden;
}

.custom-file-label::after {
    content: "Durchsuchen";
    height: 30px !important;
    border-radius: 0;
}

.nav-link.disabled {
    text-decoration: line-through;
}

/* CSS changes */

.form-group {
    margin-bottom: 4px;
}

.form-control, .custom-select, .input-group-append, .custom-file-label, .input-group-append span{
    border-radius: 0 !important;
    height: 2rem;
    line-height: 1.2; /* different then defined, because "g" is cut in view */
}

.modal .form-control, .modal .custom-select, .modal .input-group-append, .modal .custom-file-label {
    height: 2rem;
}

.input-group-append button {
    margin: 0;
}

.modal textarea.form-control {
    height: auto;
}

.table-bordered {
    border: none;
}

.table-bordered th,
.table-bordered td{
    border-right-width: 0;
}

.table-bordered th:last-child,
.table-bordered td:last-child{
    border-right-width: 1px;
}

table.table-sm th, table.table-sm td {
    padding-top: 0.2rem;
    padding-bottom: 0rem;
}

table tr {
    height: 26px;
}

h1, h4.modal-title {
    font-size: 20px;
}

.navbar .dropdown-menu a, .dropdown-menu a {
    padding: 6px;
    font-size: 13px;
}

.custom-control-label::before {
    top: 2px;
}

.custom-radio .custom-control-label::before {
    top: 1px;
}

.custom-control-label::after {
    top: 0.1rem;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance:textfield;
}

#receiptForm .was-validated .custom-select:valid, #receiptForm .custom-select.is-valid {
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px;
    background-color: var(--select_background);
}

#receiptForm .is-valid, #receiptForm-inc .is-valid {
    background: none;
    background-color: var(--background_input);
}

.custom-select:disabled, .custom-select.disabled, .ui-combobox:disabled {
    color: var(--input_font);
}

#receiptForm input[disabled].is-valid, #receiptForm input[readonly].is-valid {
    background: none;
}

#data-table_wrapper > .row {
    margin-left: 0;
    margin-right: 0;
}

#data-table_wrapper > .row > .col, #data-table_wrapper > .row  > [class*="col-"] {
    padding-left: 0;
    padding-right: 0;
}

#data-table .deleted {
    text-decoration: line-through;
}

/*
tr.deleted td:before {
    content: " ";
    position: absolute;
    top: 50%;
    left: 0;
    border-bottom: 1px solid #111;
    width: 100%;
}
*/

.not-sticky #data-table_wrapper > .row {
    overflow-x: auto;
}

.not-sticky .grid-view {
    overflow-x: auto;
}

.not-sticky #data-table thead tr th, .not-sticky #data-table thead tr td {
    position: inherit !important;
}

table.table-sm th.detailButton {
    padding: 5px 5px 0 5px;
    vertical-align: top;
    text-align: right;
}

.detailButton {
    width: 32px;
}

.grid-view th a.all-detail:after {
    content: '';
    padding: 0;
}

.ui-menu.ui-autocomplete {
    background-color: var(--select_background);
    font-family: inherit;
    font-size: inherit;
    padding-left: 0px;
    z-index: 1100;
    max-height: 200px;
    max-width: 1000px;
    overflow-y: auto;
}

.ui-menu-item-wrapper.ui-state-active {
    margin: 0 !important;
    border: 0 !important;
}

#del-modal {
    z-index: 10000;
}

.custom-switch .custom-control-label::after {
    top: 0.25rem;
}

.blank-container {
    height: 70vh;
    text-align: center;
    background-color: #fafafa;
    position: relative;
    overflow: hidden;
}

.image-wrapper {
    position: relative;
}

.image-column .sticky {
    padding-top: 5px;
}

.blank-container > div {
    width: 100%;
    position: absolute;
    bottom: 0;
    top: calc(50% - 60px);
}

.blank-container div i {
    font-size: 80px;
    color: lightgrey;
}

.field-searchform-extended_filter {
    display: inline;
}

.field-searchform-extended_filter .custom-control{
    padding-left: 6px;
}

.filters input {
    margin-bottom: 3px;
}

.md-form input[type=date]:focus:not([readonly]), .md-form input[type=datetime-local]:focus:not([readonly]), .md-form input[type=email]:focus:not([readonly]), .md-form input[type=number]:focus:not([readonly]), .md-form input[type=password]:focus:not([readonly]), .md-form input[type=search-md]:focus:not([readonly]), .md-form input[type=search]:focus:not([readonly]), .md-form input[type=tel]:focus:not([readonly]), .md-form input[type=text]:focus:not([readonly]), .md-form input[type=time]:focus:not([readonly]), .md-form input[type=url]:focus:not([readonly]), .md-form textarea.md-textarea:focus:not([readonly]) {
    -webkit-box-shadow: 0 1px 0 0 var(--primary);
    box-shadow: 0 1px 0 0 var(--primary);
    border-bottom: 1px solid var(--primary);
}

.custom-select:focus {
    border-color: var(--primary);
    outline: 0;
    box-shadow: none;
}

.cropper-container {
    min-height: 450px;
    min-width: 100%;
    max-width: 100%;
}

/** MDBootstrap **/
@-webkit-keyframes indeterminate {
    0% {
        left: -35%;
        right: 100%; }
    60% {
        left: 100%;
        right: -90%; }
    100% {
        left: 100%;
        right: -90%; } }

@keyframes indeterminate {
    0% {
        left: -35%;
        right: 100%; }
    60% {
        left: 100%;
        right: -90%; }
    100% {
        left: 100%;
        right: -90%; } }

.progress-bar {
    transition: none;
}
.md-progress {
    -webkit-box-shadow: none;
    box-shadow: none;
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
    margin-bottom: 1rem;
    background-color: #eeeeee;
}
.md-progress .progress-bar {
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-border-radius: 0;
    border-radius: 0;
    background-color: #0d47a1;
}
.md-progress .progress-bar-animated {
    -webkit-transition: width 2s ease-in-out;
    -o-transition: width 2s ease-in-out;
    transition: width 2s ease-in-out;
}
.md-progress .indeterminate {
    background-color: var(--primary);
}
.md-progress .indeterminate:before {
    content: "";
    position: absolute;
    background-color: inherit;
    top: 0;
    left: 0;
    bottom: 0;
    will-change: left, right;
    -webkit-animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
    animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
}
.md-progress .indeterminate:after {
    content: "";
    position: absolute;
    background-color: inherit;
    top: 0;
    left: 0;
    bottom: 0;
    will-change: left, right;
    -webkit-animation: indeterminate 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
    animation: indeterminate 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
    -webkit-animation-delay: 1.15s;
    animation-delay: 1.15s;
}

/* datepicker */

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
    border: 1px solid transparent;
    background: var(--header);
    font-weight: normal;
    color: var(--header_text) !important;
}

.text-dashed {
    text-decoration: underline dashed;
}

[v-cloak] {
    display: none !important;
}