﻿html, body {
    font-size: 16px;
    font-family: system-ui, -apple-system, /* Firefox supports this but not yet `system-ui` */ 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji';
}

.bg-primary {
    --bg-opacity: 1;
    /*background-color: #005CA2;*/
    /*background-color: rgba(0, 92, 162, var(--bg-opacity));*/
    background-color: #526C64;
}

.bg-hover {
    --bg-opacity: 1;
    /*background-color: #005CA2;*/
    /*background-color: rgba(0, 92, 162, var(--bg-opacity));*/
    background-color: #04875B;
}

.bg-secondary {
    --bg-opacity: 1;
    background-color: #999999;
    background-color: rgba(153, 153, 153, var(--bg-opacity));
}

.rz-chkbox-box.rz-state-active {
    background-color: #526C64;
    border: var(--rz-checkbox-checked-border);
}

.text-primary {
    --text-opacity: 1;
    /*color: #005CA2;*/
    /*color: rgba(0, 92, 162, var(--text-opacity));*/
    color: #526C64;
}

.text-secondary {
    --text-opacity: 1;
    color: #999999;
    color: rgba(153, 153, 153, var(--text-opacity));
}


.loader {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border-top: 4px solid #db0404;
    border-right: 4px solid transparent;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    margin: 0 auto;
}

    .loader::after {
        content: "";
        box-sizing: border-box;
        position: absolute;
        left: 0;
        top: 0;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        border-bottom: 4px solid #a10505;
        border-left: 4px solid transparent;
    }

.pagecenter {
    width: 100px;
    height: 100px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
