body {
    background-color: #f0f2f5;
}

.rounded-0 {
    border-radius: 0 !important
}

@font-face {
    font-family: Kontributor;
    src: url(varela.woff2);
}

body {
    font-size: 12px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Modern Property Card Styling */
.property-card {
    background: white;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 12px;
    border: 1px solid #e0e0e0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.property-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-color: #0d6efd;
    transform: translateY(-2px);
}

.property-card.selected {
    border: 2px solid #0d6efd;
    background: #f8f9ff;
}

.property-card-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.property-icon {
    position: relative;
}

.property-icon .status-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.property-info {
    flex-grow: 1;
}

.property-title {
    font-size: 14px;
    font-weight: 600;
    color: #212529;
    margin: 0;
}

.property-details {
    font-size: 12px;
    color: #6c757d;
    margin: 0;
}

.property-actions .btn {
    font-size: 13px;
    padding: 6px 12px;
    white-space: nowrap;
}

/* Search Panel Styling */
.search-panel {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin-bottom: 20px;
}

.search-controls .form-control,
.search-controls .form-select {
    border-radius: 6px;
    border: 1px solid #ced4da;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search-controls .form-control:focus,
.search-controls .form-select:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13,110,253,0.15);
}

/* Status Filter Buttons - Custom styling (no Bootstrap) */
.status-filters {
    display: flex;
    gap: 4px;
}

.filter-btn {
    padding: 6px 12px;
    font-size: 13px;
    font-weight: normal;
    border: none;
    background-color: transparent;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s ease;
    outline: none;
}

.filter-btn:focus {
    outline: none;
}

/* Individual color variants */
.filter-secondary {
    color: #6c757d;
}

.filter-secondary:hover {
    background-color: #6c757d;
    color: white;
}

.filter-warning {
    color: #ffc107;
}

.filter-warning:hover {
    background-color: #ffc107;
    color: #212529;
}

.filter-info {
    color: #0dcaf0;
}

.filter-info:hover {
    background-color: #0dcaf0;
    color: #000;
}

.filter-success {
    color: #198754;
}

.filter-success:hover {
    background-color: #198754;
    color: white;
}

.filter-primary {
    color: #0d6efd;
}

.filter-primary:hover {
    background-color: #0d6efd;
    color: white;
}

.filter-dark {
    color: #212529;
}

.filter-dark:hover {
    background-color: #212529;
    color: white;
}

.filter-danger {
    color: #dc3545;
}

.filter-danger:hover {
    background-color: #dc3545;
    color: white;
}

/* Card Improvements */
.card {
    border-radius: 8px;
    transition: box-shadow 0.3s ease;
}

.card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.card-header {
    border-radius: 8px 8px 0 0 !important;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

/* Empty State */
.empty-state {
    padding: 60px 20px;
    text-align: center;
}

.empty-state i {
    opacity: 0.3;
}

/* Modal Enhancements */
.modal-content {
    border-radius: 12px;
}

.modal-header {
    border-radius: 12px 12px 0 0 !important;
}

/* Sidebar Navigation */
.sidenav a {
    display: block;
    margin-bottom: 20px;
    transition: transform 0.2s ease;
}

.sidenav a:hover {
    transform: translateX(5px);
}

/* Badge Styling */
.badge {
    padding: 4px 8px;
    font-weight: 500;
    border-radius: 4px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .property-card-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .property-actions {
        width: 100%;
    }

    .property-actions .btn {
        width: 100%;
    }
}

/* Original styles preserved below */
.CenterMiddle {
    text-align: center;
    vertical-align: middle;
}
.td
{
    display: table-cell;
    vertical-align: middle;
}
.prelTaxValueTD {
    font-style:italic;
    font-size:smaller;
}
input, button {
    color: #000;
    font-weight: bold;
    padding: 0;
    margin: 0;
    border: 1px black solid;
    background-color: white;
}

/* Exception for status filter buttons */
.status-filters .filter-btn {
    border: none !important;
    color: inherit;
    font-weight: normal !important;
    padding: 6px 12px !important;
    margin: 0 !important;
    background-color: transparent !important;
}
.lockedBoxes {
    background-color: darkgrey;
}

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }


#cover {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    width: 550px;
    padding: 35px;
    margin: -83px auto 0 auto;
    background-color: #ff7575;
    border-radius: 20px;
    box-shadow: 0 10px 40px #ff7c7c, 0 0 0 20px #ffffffeb;
    transform: scale(0.6);
}
.positionContactSpecialist {
    position:absolute;
    bottom:10px;
    left:4px;
    visibility:visible;
}
.contactTable td {
    font-size: 12px;
}
form {
    height: 96px;
}

input[type="text"] {
    font-size: 12px;
    border: thin solid grey;
    border-radius: 2px;
}

input[type="text"]:active {
        background-color: yellow;
    }


.blueResultPane {
    padding: 10px;
    margin: 20px;
    color: #000;
    font-weight: 400;
    overflow-x: hidden;
    overflow-y: auto;
    height: 600px;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
}

.blueResultPane::-webkit-scrollbar {
    width: 6px;
}

.blueResultPane::-webkit-scrollbar-track {
    background: transparent;
}

.blueResultPane::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
    transition: background 0.2s ease;
}

    .blueResultPane::-webkit-scrollbar-thumb:hover {
        background: rgba(0, 0, 0, 0.4);
    }



.leftHandTable {
    color: black;
    border: 1px #d6d5d5 solid;
    padding: 10px;
    margin: 20px;
    width: 500px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
.rightPane {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    padding: 30px;
    margin: 20px;
    width: 400px;
    border: 1px #d6d5d5 solid;
    color: black;
}
.breakApart {
    width: 200px;
}
@media (max-width: 767.98px) {
    .main .top-row {
        display: none;
    }
}

@media (min-width: 768px) {
    app {
        flex-direction: row;
    }

    .sidebar {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .main .top-row {
        position: sticky;
        top: 0;
    }

    .main > div {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }

    .navbar-toggler {
        display: none;
    }

    .sidebar .collapse {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
}

.KDispExtraButton {
    display: inline-block;
    border-radius: 4px;
    background-color: #f4511e;
    border: none;
    color: #FFFFFF;
    text-align: center;
    font-size: 28px;
    padding: 20px;
    width: 200px;
    transition: all 0.5s;
    cursor: pointer;
    margin: 5px;
    clear: both;
}

    .KDispExtraButton span {
        cursor: pointer;
        display: inline-block;
        position: relative;
        transition: 0.5s;
    }

        .KDispExtraButton span:after {
            content: '\00bb';
            position: absolute;
            opacity: 0;
            top: 0;
            right: -20px;
            transition: 0.5s;
        }

    .KDispExtraButton:hover span {
        padding-right: 25px;
    }

        .KDispExtraButton:hover span:after {
            opacity: 1;
            right: 0;
        }
.spinner {
    margin: 100px auto;
    width: 50px;
    height: 40px;
    text-align: center;
    font-size: 14px;
}

    .spinner > div {
        background-color: #333;
        height: 100%;
        width: 6px;
        display: inline-block;
        -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
        animation: sk-stretchdelay 1.2s infinite ease-in-out;
    }

    .spinner .rect2 {
        -webkit-animation-delay: -1.1s;
        animation-delay: -1.1s;
    }

    .spinner .rect3 {
        -webkit-animation-delay: -1.0s;
        animation-delay: -1.0s;
    }

    .spinner .rect4 {
        -webkit-animation-delay: -0.9s;
        animation-delay: -0.9s;
    }

    .spinner .rect5 {
        -webkit-animation-delay: -0.8s;
        animation-delay: -0.8s;
    }

@-webkit-keyframes sk-stretchdelay {
    0%, 40%, 100% {
        -webkit-transform: scaleY(0.4)
    }

    20% {
        -webkit-transform: scaleY(1.0)
    }
}

@keyframes sk-stretchdelay {
    0%, 40%, 100% {
        transform: scaleY(0.4);
        -webkit-transform: scaleY(0.4);
    }

    20% {
        transform: scaleY(1.0);
        -webkit-transform: scaleY(1.0);
    }
}



page {
    padding: 1cm 1cm 1cm 1cm;
    display: block;
    margin: 0 auto;
    margin-bottom: 0.5cm;
    box-shadow: 0 0 0.5cm rgba(0,0,0,0.5);
    background: #F5F5DC !important;
    /*background: #DAFADA !important;*/
}

    page[size="A4"] {
        width: 21cm;
    }

        page[size="A4"][layout="landscape"] {
            width: 29.7cm;
            height: 21cm;
        }

    page[size="A3"] {
        width: 29.7cm;
        height: 42cm;
    }

        page[size="A3"][layout="landscape"] {
            width: 42cm;
            height: 29.7cm;
        }

    page[size="A5"] {
        width: 14.8cm;
        height: 21cm;
    }

        page[size="A5"][layout="landscape"] {
            width: 21cm;
            height: 14.8cm;
        }

@media print {
    body, page {
        margin: 0;
        box-shadow: 0;
    }
}


#myInput {
    background-image: url('/open-iconic/svg/magnifying-glass.svg'); /* Add a search icon to input */
    background-position: 10px 12px; /* Position the search icon */
    background-repeat: no-repeat; /* Do not repeat the icon image */
    width: 100%; /* Full-width */
    font-size: 16px; /* Increase font-size */
    padding: 12px 20px 12px 40px; /* Add some padding */
    border: 1px solid #ddd; /* Add a grey border */
    margin-bottom: 12px; /* Add some space below the input */
}

input:focus {
    border-color: #009b24;
    border-width: 1px;
}

.panel {
    border-radius: 2px;
    display: inline-block;
    background: #ffffff;
    min-height: 100px;
    border: 1px none black;
/*    box-shadow: 0px 0px 1px 1px #d6d5d5;
    -webkit-box-shadow: 1px 1px 1px 1px #d6d5d5;
    -moz-box-shadow: 1px 1px 1px 1px #d6d5d5;*/
    margin: 10px;
    padding: 10px;
}

.panel1 {
    min-width: 100px;
    width: 100%;
}
.panel2 {
    
}
.panel3 {
    min-width: 345px;
    width: 75%;
}
.biggerText {
    font-size: 16px; /* Increase font-size */
}

.smallerText {
    font-size: 10px; /* Increase font-size */
}
hr {
    height: 1px;
    margin-top: 0px;
    margin-bottom:0px;'
}
.decl-roundedInfoBox {
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px; /* future proofing */
    -khtml-border-radius: 10px; /* for old Konqueror browsers */
    background-color: #FFFFFF;
    padding: 4px;
    border: solid 1px black;
    margin-bottom: 4px;
    width: 400px;
}

.decl-WhiteHeadlineBox {
    padding-top: 5px;
    background-color: white;
    font-size: 16px;
    font-weight: bold;
    cursor:pointer;
}

.decl-WhiteSubHeadlineBox {
    background-color: white;
    font-size: 14px;
    font-weight: bold;
}
.decl-SubHeadlineBox {
    font-size: 10px;
    font-weight: bold;
}


.decl-table {
    width: 350px;
    padding: 0px;
    font-size: 9px;
    border: solid 1px black;
    border-spacing: 15px;
}
.decl-table td {
    text-align:left;
    align-content:flex-start;
    vertical-align:top;
}
.header {
    position: sticky;
    top: 0;
    background-color:black;
    color:white;
}
.bottom {
    background-color: gray;
    color: white;
}
table thead {
    inset-block-start: 0; /* "top" */
}

table tfoot {
    inset-block-end: 0; /* "bottom" */
}
.HiddenTable {
    opacity: 0;
    visibility: hidden;
    transition: visibility 1s linear,opacity 1s linear;
    padding: 4em;
}
.indicator-table {
    margin-left:2em;
    background-color: white;
    border-collapse: collapse;
    overflow: hidden;
    padding: 10px 10px 10px 10px;
    opacity: 1;
    visibility: visible;
    transition: visibility 1s linear,opacity 1s linear;
}
    .indicator-table th {
        background-color: #3d5a80;
        color: #FFF;
    }
    .indicator-table td {
        padding:3px;
    }
    .indicator-table tr:first-child td:first-child {
        border-top-left-radius: 5px;
    }
.indicator-table tr:first-child td:last-child {
    border-top-right-radius: 5px;
}
.indicator-table tr:last-child td:first-child {
    border-bottom-left-radius: 5px;
}
.indicator-table tr:last-child td:last-child {
        border-bottom-right-radius: 5px;
}
.toast {
    display: none;
    padding: 1.5rem;
    color: #fff;
    z-index: 1;
    position: absolute;
    width: 25rem;
    top: 2rem;
    border-radius: 1rem;
    left: 50%;
}

.toast-icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 1rem;
    font-size: 2.5rem;
}

.toast-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding-left: 1rem;
}

    .toast-body p {
        margin-bottom: 0;
    }

.toast-visible {
    display: flex;
    flex-direction: row;
    animation: fadein 1.5s;
}

@keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

    .user-input-wrp {
        position: relative;
        width: 100%;
    }

    .user-input-wrp .inputText {
        height:35px;
        outline: none;
        color: rgba(0,0,0,0.5);
        box-shadow: none !important;
    }

    .user-input-wrp .inputText:focus {
        border: 1px solid green;
    }

    .user-input-wrp .floating-label {
        position: absolute;
        pointer-events: none;
        top: 8px;
        left: 6px;
        transition: 0.2s ease all;
        font-size: 11px;
        color: #c1bbbb;
        font-weight:bold;
    }

    .user-input-wrp input:focus ~ .floating-label,
    .user-input-wrp input:not(:focus):valid ~ .floating-label {
        top: -12px;
        left: 1px;
        font-size: 9px;
        opacity: 0.9;
        color: #000;
    }
.skvTextBoxBackground {
    width: 80px;
}
.skvTextBoxBackground:disabled {
    background-color: darkgrey;
}
.ourTextBoxBackground {
    width:80px;
}
.ourTextBoxBackground:disabled {
    background-color: lightgray;
}
.warning, .warning a {
    background: #c00;
    color: #FFF;
    padding: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}
.my-reconnect-modal > div {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1000;
    overflow: hidden;
    background-color: #fff;
    opacity: 0.8;
    text-align: center;
    font-weight: bold;
}

.components-reconnect-hide > div {
    display: none;
}

.components-reconnect-show > div {
    display: none;
}

.components-reconnect-show > .show {
    display: block;
}

.components-reconnect-failed > div {
    display: none;
}

.components-reconnect-failed > .failed {
    display: block;
}

.components-reconnect-refused > div {
    display: none;
}

.components-reconnect-refused > .refused {
    display: block;
}


/*input[type="checkbox"] {
    margin: 10px;
    position: relative;
    width: 120px;
    height: 40px;
    -webkit-appearance: none;
    background: linear-gradient(0deg, #333, #000);
    outline: none;
    border-radius: 20px;
    box-shadow: 0 0 0 4px #353535, 0 0 0 5px #3e3e3e, inset 0 0 10px rgba(0,0,0,1);
}

input:checked[type="checkbox"]:nth-of-type(1) {
    background: linear-gradient(0deg, #e67e22, #f39c12);
    box-shadow: 0 0 0 4px #353535, 0 0 0 5px #3e3e3e, inset 0 0 10px rgba(0,0,0,1);
}

input:checked[type="checkbox"]:nth-of-type(2) {
    background: linear-gradient(0deg, #70a1ff, #1e90ff);
    box-shadow: 0 0 0 4px #353535, 0 0 0 5px #3e3e3e, inset 0 0 10px rgba(0,0,0,1);
}

input[type="checkbox"]:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 40px;
    background: linear-gradient(0deg, #000, #6b6b6b);
    border-radius: 20px;
    box-shadow: 0 0 0 1px #232323;
    transform: scale(.98,.96);
    transition: .5s;
}

input:checked[type="checkbox"]:before {
    left: 40px;
}

input[type="checkbox"]:after {
    content: '';
    position: absolute;
    top: calc(50% - 2px);
    left: 70px;
    width: 4px;
    height: 4px;
    background: linear-gradient(0deg, #6b6b6b, #000);
    border-radius: 50%;
    transition: .5s;
}

input:checked[type="checkbox"]:after {
    left: 110px;
}*/


.onoff {
    margin-left: -27px;
    display: -moz-inline-stack;
    display: inline-block;
    vertical-align: middle;
    *vertical-align: auto;
    zoom: 1;
    *display: inline;
    position: relative;
    cursor: pointer;
    width: 55px;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}




.checkbox-wrapper-10 .tgl {
    display: none;
}

    .checkbox-wrapper-10 .tgl,
    .checkbox-wrapper-10 .tgl:after,
    .checkbox-wrapper-10 .tgl:before,
    .checkbox-wrapper-10 .tgl *,
    .checkbox-wrapper-10 .tgl *:after,
    .checkbox-wrapper-10 .tgl *:before,
    .checkbox-wrapper-10 .tgl + .tgl-btn {
        box-sizing: border-box;
    }

        .checkbox-wrapper-10 .tgl::-moz-selection,
        .checkbox-wrapper-10 .tgl:after::-moz-selection,
        .checkbox-wrapper-10 .tgl:before::-moz-selection,
        .checkbox-wrapper-10 .tgl *::-moz-selection,
        .checkbox-wrapper-10 .tgl *:after::-moz-selection,
        .checkbox-wrapper-10 .tgl *:before::-moz-selection,
        .checkbox-wrapper-10 .tgl + .tgl-btn::-moz-selection,
        .checkbox-wrapper-10 .tgl::selection,
        .checkbox-wrapper-10 .tgl:after::selection,
        .checkbox-wrapper-10 .tgl:before::selection,
        .checkbox-wrapper-10 .tgl *::selection,
        .checkbox-wrapper-10 .tgl *:after::selection,
        .checkbox-wrapper-10 .tgl *:before::selection,
        .checkbox-wrapper-10 .tgl + .tgl-btn::selection {
            background: none;
        }

        .checkbox-wrapper-10 .tgl + .tgl-btn {
            outline: 0;
            display: block;
            width: 4em;
            height: 2em;
            position: relative;
            cursor: pointer;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
        }

            .checkbox-wrapper-10 .tgl + .tgl-btn:after,
            .checkbox-wrapper-10 .tgl + .tgl-btn:before {
                position: relative;
                display: block;
                content: "";
                width: 50%;
                height: 100%;
            }

            .checkbox-wrapper-10 .tgl + .tgl-btn:after {
                left: 0;
            }

            .checkbox-wrapper-10 .tgl + .tgl-btn:before {
                display: none;
            }

        .checkbox-wrapper-10 .tgl:checked + .tgl-btn:after {
            left: 50%;
        }

.checkbox-wrapper-10 .tgl-flip + .tgl-btn {
    padding: 2px;
    transition: all 0.2s ease;
    font-family: sans-serif;
    perspective: 100px;
}

    .checkbox-wrapper-10 .tgl-flip + .tgl-btn:after,
    .checkbox-wrapper-10 .tgl-flip + .tgl-btn:before {
        display: inline-block;
        transition: all 0.4s ease;
        width: 100%;
        text-align: center;
        position: absolute;
        line-height: 2em;
        font-weight: bold;
        color: #fff;
        position: absolute;
        top: 0;
        left: 0;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        border-radius: 4px;
    }

    .checkbox-wrapper-10 .tgl-flip + .tgl-btn:after {
        content: attr(data-tg-on);
        background: #4eba8a;
        transform: rotateY(-180deg);
    }

    .checkbox-wrapper-10 .tgl-flip + .tgl-btn:before {
        background: #eb725d;
        content: attr(data-tg-off);
    }

    .checkbox-wrapper-10 .tgl-flip + .tgl-btn:active:before {
        transform: rotateY(-20deg);
    }

.checkbox-wrapper-10 .tgl-flip:checked + .tgl-btn:before {
    transform: rotateY(180deg);
}

.checkbox-wrapper-10 .tgl-flip:checked + .tgl-btn:after {
    transform: rotateY(0);
    left: 0;
    background: #7FC6A6;
}

.checkbox-wrapper-10 .tgl-flip:checked + .tgl-btn:active:after {
    transform: rotateY(20deg);
}


.KontributorSlider {
    width: 53px;
    height: 17px;
    background: #333;
    margin: 12px auto;
    position: relative;
    border-radius: 35px;
    box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.5), 0px 1px 0px rgba(255, 255, 255, 0.2);
}

    .KontributorSlider:after {
        top:2px;
        content: 'NEJ';
        color: #6495ED;
        position: absolute;
        right: 5px;
        z-index: 0;
        font: 10px/12px Arial, sans-serif;
        font-weight: bold;
        text-shadow: 1px 1px 0px rgba(255, 255, 255, 0.15);
    }

    .KontributorSlider:before {
        top: 2px;
        content: 'JA';
        color: #27ae60;
        position: absolute;
        left: 5px;
        z-index: 0;
        font: 10px/12px Arial, sans-serif;
        font-weight: bold;
    }

    .KontributorSlider label {
        display: block;
        width: 24px;
        height: 14px;
        cursor: pointer;
        position: absolute;
        top: 2px;
        left: 3px;
        z-index: 1;
        background: #fcfff4;
        background: linear-gradient(to bottom, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
        border-radius: 50px;
        transition: all 0.4s ease;
        box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.3);
    }

    .KontributorSlider input[type=checkbox] {
        visibility: hidden;
    }

    .KontributorSlider input[type=checkbox]:checked + label {
            left: 27px;
    }

    .navbar {
    overflow: hidden;
    background-color: #333;
    position: fixed; /* Set the navbar to fixed position */
    top: 0; /* Position the navbar at the top of the page */
    width: 100%; /* Full width */
    }

    
    .navbar a {
        float:left;
        display:block;
        color:#f2f2f2;
        text-align:left;
        padding:14px 16px;
        text-decoration:none;
    }
    .MainDeclaration {
        margin-top: 0px;
    }
    .MousePointer {
        cursor:pointer;
    }



/* The sidebar menu */
.sidenav {
    height: 100%; /* Full-height: remove this if you want "auto" height */
    width: 60px; /* Set the width of the sidebar */
    position: fixed; /* Fixed Sidebar (stay in place on scroll) */
    z-index: 0; /* Stay on top */
    top: 0; /* Stay at the top */
    left: 0;
    background-color: #3d5a80; /* Blue variants   */
    overflow-x: hidden; /* Disable horizontal scroll */
    padding-top: 20px;
}

    /* The navigation menu links */
    .sidenav a {
        padding: 6px 8px 6px 16px;
        text-decoration: none;
        font-size: 25px;
        color: #818181;
        display: block;
    }

        /* When you mouse over the navigation links, change their color */
        .sidenav a:hover {
            color: #f1f1f1;
        }

.SidenavRight {
    height: 100%; /* Full-height: remove this if you want "auto" height */
    width: 0; /* Set the width of the sidebar */
    position: fixed; /* Fixed Sidebar (stay in place on scroll) */
    z-index: 0; /* Stay on top */
    top: 0; /* Stay at the top */
    right: 0;
    background-color: #d6d5d5; /* Black */
    overflow-x: hidden; /* Disable horizontal scroll */
    padding-top: 20px;
}
/* On smaller screens, where height is less than 450px, change the style of the sidebar (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
    .sidenav SidenavRight {
        padding-top: 15px;
    }

    .sidenav a SidenavRight a {
        font-size: 18px;
    }
}
.hideSideButtons {
    visibility:hidden;
}

.mainContent {
    margin-left: 60px; /* Same as the width of the sidebar */
    padding: 0px 10px;
    z-index: -1;
}

progress {
    width: 40%;
    display: block; /* default: inline-block */
    margin: 2em auto;
    padding: 3px;
    border: 0 none;
    background: #444;
    border-radius: 14px;
}

    progress::-moz-progress-bar {
        border-radius: 12px;
        background: orange;
    }
/* webkit */
@media screen and (-webkit-min-device-pixel-ratio:0) {
    progress {
        height: 25px;
    }
}

progress::-webkit-progress-bar {
    background: transparent;
}

progress::-webkit-progress-value {
    border-radius: 12px;
    background: orange;
}








.ApexLoader {
    display: inline-block;
    position: relative;
    width: 40px;
    height: 40px;
}

    .ApexLoader div {
        display: inline-block;
        position: absolute;
        left: 8px;
        width: 8px;
        background: #fff;
        animation: ApexLoader 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
    }

.ApexLoader div:nth-child(1) {
    left: 8px;
    animation-delay: -0.24s;
}

.ApexLoader div:nth-child(2) {
    left: 20px;
    animation-delay: -0.12s;
}

.ApexLoader div:nth-child(3) {
    left: 32px;
    animation-delay: 0;
}

@keyframes ApexLoader {
    0% {
        top: 8px;
        height: 64px;
    }

    50%, 100% {
        top: 24px;
        height: 32px;
    }
}
.ApexLoaderHidden {
    display: inline-block;
    position: relative;
    width: 40px;
    height: 40px;
}


.Hidden {
    visibility:hidden;
}
.loader {
    content: 'Laddar';
    display: inline-block;
    width: 30px;
    height: 30px;
    position: relative;
    border: 4px solid #Fff;
    left: 15px;
    animation: loader 2s infinite ease;
}

.loader-inner {
    content:'Laddar';
    vertical-align: top;
    display: inline-block;
    width: 100%;
    background-color: #fff;
    animation: loader-inner 2s infinite ease-in;
}

@keyframes loader {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(180deg);
    }

    50% {
        transform: rotate(180deg);
    }

    75% {
        transform: rotate(360deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes loader-inner {
    0% {
        height: 0%;
    }

    25% {
        height: 0%;
    }

    50% {
        height: 100%;
    }

    75% {
        height: 100%;
    }

    100% {
        height: 0%;
    }
}


.pulsating-circle {
    position: absolute;
    left: 0px;
    top: 0px;
    transform: translateX(-50%) translateY(-50%);
    width: 30px;
    height: 30px;
}

pulsating-circle:before {
    content: '';
    position: relative;
    display: block;
    width: 300%;
    height: 300%;
    box-sizing: border-box;
    margin-left: -100%;
    margin-top: -100%;
    border-radius: 45px;
    background-color: #01a4e9;
    animation: pulse-ring 1.25s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

pulsating-circle:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 0 8px rgba(0,0,0,.3);
    animation: pulse-dot 1.25s cubic-bezier(0.455, 0.03, 0.515, 0.955) -.4s infinite;
}


@keyframes pulse-ring {
    0% {
        transform: scale(.33);
    }

    80%, 100% {
        opacity: 0;
    }
}

@keyframes pulse-dot {
    0% {
        transform: scale(.8);
    }

    50% {
        transform: scale(1);
    }

    100% {
        transform: scale(.8);
    }
}

.blobs-container {
    display: flex;
}

.blob {
    background: black;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
    margin: 10px;
    height: 10px;
    width: 20px;
    transform: scale(1);
    animation: pulse-black 1s infinite;
}

.blob.red {
    background: rgba(255, 82, 82, 1);
    box-shadow: 0 0 0 0 rgba(255, 82, 82, 1);
    animation: pulse-red 0.5s infinite;
}

@keyframes pulse-red {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 82, 82, 0.7);
    }

    70% {
        transform: scale(2);
        box-shadow: 0 0 0 10px rgba(255, 82, 82, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 82, 82, 0);
    }
}


.blob.green {
    background: rgba(51, 217, 178, 1);
    box-shadow: 0 0 0 0 rgba(51, 217, 178, 1);
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(51, 217, 178, 0.7);
    }

    70% {
        transform: scale(2);
        box-shadow: 0 0 0 10px rgba(51, 217, 178, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(51, 217, 178, 0);
    }
}


.highlighter {
    animation: fadeoutBg 5s; /***Transition delay 3s fadeout is class***/
    -moz-animation: fadeoutBg 5s; /* Firefox */
    -webkit-animation: fadeoutBg 5s; /* Safari and Chrome */
    -o-animation: fadeoutBg 5s; /* Opera */
}

.highlighterGreen {
    animation: fadeoutBgGreen 5s; /***Transition delay 3s fadeout is class***/
    -moz-animation: fadeoutBgGreen 5s; /* Firefox */
    -webkit-animation: fadeoutBgGreen 5s; /* Safari and Chrome */
    -o-animation: fadeoutBgGreen 5s; /* Opera */
}

@keyframes fadeoutBg {
    from {
        background-color: red;
    }
    /** from color **/
    to {
        background-color: white;
    }
    /** to color **/
}

@-moz-keyframes fadeoutBg { /* Firefox */
    from {
        background-color: red;
    }

    to {
        background-color: white;
    }
}

@-webkit-keyframes fadeoutBg { /* Safari and Chrome */
    from {
        background-color: red;
    }

    to {
        background-color: white;
    }
}

@-o-keyframes fadeoutBg { /* Opera */
    from {
        background-color: red;
    }

    to {
        background-color: white;
    }
}



@keyframes fadeoutBgGreen {
    from {
        background-color: lightgreen;
    }
    /** from color **/
    to {
        background-color: white;
    }
    /** to color **/
}

@-moz-keyframes fadeoutBgGreen { /* Firefox */
    from {
        background-color: lightgreen;
    }

    to {
        background-color: white;
    }
}

@-webkit-keyframes fadeoutBgGreen { /* Safari and Chrome */
    from {
        background-color: lightgreen;
    }

    to {
        background-color: white;
    }
}

@-o-keyframes fadeoutBgGreen { /* Opera */
    from {
        background-color: lightgreen;
    }

    to {
        background-color: white;
    }
}


select {
    background-color: white;
    border: thin solid grey;
    border-radius: 4px;
    display: inline-block;
    font: inherit;
    line-height: 1.5em;
    padding: 0.5em 3.5em 0.5em 1em;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
}

    select.arrows {
        background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAA3klEQVRIS+3VMU9CMRTF8d8zBL+aizoQFhx0kUk33RzdYMNFXUFnYeGrYYyaJiUxJHDLSxodbNKpfeffc9/pbaPyaCrr+3OA++z4rtT5Pg5GuMnCY9yWQEoBE1xhlUUP8YDrCBIB0vojLvGO0yz4hm4JJAKcYYoPHGOZAUdYoIMBXrc5iQAHeMlzviFygj7O8dkWEJU4XI8chALRhn9AVKHf70VRTHu4wFfbmKZLNKt50dLBnna0imcMd/2I0phWa3Y/D1e1Xa9BCZJG0VuQNpaWKMx72xS1Fl5/WN3BN+AgJhnZQlq4AAAAAElFTkSuQmCC');
        background-position: calc(100% - .5rem), 100% 0;
        background-size: 1.5em 1.5em;
        background-repeat: no-repeat;
    }

        select.arrows:focus {
            border-color: blue;
            outline: 0;
        }

hr.rounded {
    border-top: 8px solid #bbb;
    border-radius: 5px;
}
LineDivider th, LineDivider td {
    border-bottom: 1px solid #ddd;
}

.dialog-background {
    background: none repeat scroll 0 0 rgba(88, 88, 88, 0.5);
    height: 100%;
    left: 0;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 2000;
}

.dialog-loading-wrapper {
    background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
    border: 0 none;
    height: 100px;
    left: 50%;
    margin-left: -50px;
    margin-top: -50px;
    position: fixed;
    top: 50%;
    width: 100px;
    z-index: 9999999;
}

.dialog-loading-icon {
    background-color: #FFFFFF !important;
    border-radius: 13px;
    display: block;
    height: 150px;
    line-height: 14px;
    margin: 5px;
    padding: 1px;
    text-align: left;
    width: 400px;
}

.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
}

    .tooltip .tooltiptext {
        visibility: hidden;
        width: 120px;
        background-color: black;
        color: #fff;
        text-align: center;
        border-radius: 6px;
        padding: 5px 0;
        position: absolute;
        z-index: 1;
        bottom: 100%;
        left: 50%;
        margin-left: -60px;
        /* Fade in tooltip - takes 1 second to go from 0% to 100% opac: */
        opacity: 0;
        transition: opacity 1s;
    }

    .tooltip:hover .tooltiptext {
        visibility: visible;
        opacity: 1;
    }
.inp {
    border: none !important;
    border-bottom: 1px solid #1890ff !important;
    padding: 5px 10px !important;
    outline: none !important;
}

.disabledTd {
    background-color:lightgray;
    color:gray;
}

/*[placeholder]:focus::-webkit-input-placeholder {
    transition: text-indent 0.4s 0.4s ease;
    text-indent: -100%;
    opacity: 1;
}
input[type="text"]::placeholder {
    color: rgba(0,0,0,0.5);
}*/