@import url('root-arvato.css');
@import url('site.css');

/*---------------*/
/* Custom styles */
/*---------------*/
*, ::after, ::before {
    box-sizing: border-box;
}

body {
    background-color: var(--rz-base-100);
    margin: 0;

}
:root:has(.rz-layout) body {
    font-family: var(--rz-text-font-family);
}
/* Heders */
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    font-weight: 700;
}

h1 {
    font-size: 2rem;
}

p {
    margin-top: 0;
}

label:not(.rz-dropdown-label) {
    font-size: .75rem;
    padding-bottom: .5rem;
    padding-top: .5rem;
    color: var(--rz-base-500);
}


/*---------------------*/
/* Radzen CSS overrites*/
/*---------------------*/
.rz-link {
    margin-right: 1.5rem;
}

.rz-link:hover .rz-link-text,
.rz-link:focus .rz-link-text {
    text-decoration: none;
}

.rz-sidebar {
    border-right: none;
}

.rz-sidebar-toggle {
    color: var(--rz-sidebar-toggle-color);
}

.rz-sidebar-toggle:hover {
    background: var(--rz-sidebar-toggle-hover-background-color);
    border-radius: 0;
}

.rz-panel-menu .rz-navigation-item-wrapper:hover {
    background-color: var(--rz-base-50);
}

.rz-panel-menu .rz-navigation-item-link {
    color: var(--rz-navigation-item-link-color);
}


.rz-sidebar .brand {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.rz-sidebar .brand .logo {
    width: 100%;
    max-width: var(--sidebar-logo-max-width);
    background: var(--logo-url);
    min-height: var(--sidebar-logo-min-height);
    height: auto;
    background-repeat: no-repeat;
    background-size: contain;
    background-position-x: center;
}

.rz-dropdown {
    justify-content: center;
}

.rz-badge i.rzi {
    font-size: 1rem !important;
}

.rz-header a {
    color: var(--rz-link-color);
}

.rz-header a:hover, .rz-header a:focus {
    color: var(--rz-primary);
}

/*grid*/
.rz-grid-table.rz-grid-gridlines-none > thead > tr > th {
    border-bottom: var(--rz-grid-header-cell-border-bottom);
}

.grid-striped tr:nth-child(even) {
    background-color: var(--rz-base-100);
}


/* buttons */
.rz-button-md {
    font-weight: var(--btn-md-font-weight);
    letter-spacing: 0.64px;
    text-transform: var(--button-text-transform);
    padding: var(--button-padding);
}
.rz-button-xs,
.rz-button-sm,
.rz-button-lg {
    letter-spacing: inherit;
    text-transform: var(--button-text-transform);
}
/* .rz-button-text {
    letter-spacing: 0.64px;
    text-transform: var(--button-text-transform);
    
}*/
/*.rz-button:not(.rz-button-icon-only) {
    padding: var(--button-padding);
}

.rz-button:not(.rz-numeric-button) {
    padding: var(--button-padding);
}*/
.rz-button.rz-variant-text.rz-light,
.rz-variant-text.rz-light.rz-paginator-element {
    color: var(--rz-base-500);
}

.rz-button.rz-variant-text.rz-light:hover,
.rz-variant-text.rz-light.rz-paginator-element:hover {
    color: var(--rz-base-900);
}

.rz-button.rz-variant-text.rz-light:not(.rz-state-disabled):hover:not(:active) {
    background-color: var(--rz-base-300);
}
.rz-button.rz-variant-flat.rz-primary:not(.rz-state-disabled):hover:not(:active) {
    background-color: var(--rz-btn-hover-color);
}

.rz-button.rz-dark, .rz-dark.rz-paginator-element {
    background-color: var(--rz-dark);
}

/*badges*/
.rz-badge {
    padding: 2px 8px;
    font-weight: 700;
    font-size: .725rem;
    text-transform: none;
    justify-content: center;
    align-items: center;
    display: flex;
}

/*------------------------*/
/*Custom LOGIN page styles*/
/*------------------------*/
.txt-g300 {
    color: var( --rz-base-500);
}

.bg-img {
    background-image: var(--login-bg-url);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.btn {
    padding: var(--button-padding);
    border-radius: var(--btn-login-border-radius);
    display: flex;
    font-weight: 500;
    font-size: .875rem;
    border: none;
    line-height: 1.5rem;
    text-transform: var(--button-text-transform);
}

.btn-primary {
    color: #fff;
    background-color: var(--rz-primary);
    border-color: var(--rz-primary);
}

.btn-primary:active,
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active:focus {
    background-color: var(--rz-primary);
    box-shadow: none;
}

.form-group label {
    color: var( --rz-base-300);
    font-weight: 600;
    display: flex;
    align-items: center;
}

.login-inner {
    align-items: center;
    display: flex;
    height: 100vh;
    justify-content: center;
}

.login-inner .login-card-alt {
    height: 70%;
    justify-content: center;
    width: 100%;
    border-radius: var(--card-login-border-radius);
    background-color: var(--rz-white);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

.login-inner .login-card-alt .col-form {
    padding: 5rem;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.login-inner .login-card-alt .logo {
    width: var(--login-logo-max-width);
    background: var(--logo-url);
/*    margin-bottom: 3rem;*/
    margin-bottom: 2rem;
    height: auto;
    min-height: 100px;
    height: auto;
    background-repeat: no-repeat;
    background-size: contain;
/*    background-position: center*/
}

.login-inner .login-card {
    padding-top: 2rem;
    padding-bottom: 2rem;
    text-align: center;
    border-radius: var(--card-login-border-radius);
    background-color: var(--rz-white);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

.login-inner .login-card .header {
    font-size: 2.25rem;
    font-weight: 700;
}


.login-inner .login-card .logo {
    width: var(--login-logo-max-width);
    background: var(--logo-url);
    height: auto;
    min-height: 50px;
    height: auto;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center
}

.login-inner .login-card .col-form {
    padding: 2rem 5rem;
    width: 100%;
}

.login-inner .login-card .btn {
    justify-content: center;
}


.form-control {
    transition: all 0.1s linear;
    outline: none;
}

.form-control:focus {
    box-shadow: inset 0 0 0 1px var(--rz-primary);
    border: 1px solid var(--rz-primary);
}

.form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: var(--btn-login-border-radius);
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

input {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    border-radius: var(--input-login-border-radius);
    
}

input.form-control {
    height: 3.375rem;
/*    padding: 1.5rem 0.75rem 0.75rem 0.75rem;*/
}

/*.floating-label {
    position: relative;
    margin-bottom: 1.5rem;
}

.floating-label .form-label {
    position: absolute;
    top: 0.625rem;
    left: 0.75rem;
    font-size: .75rem;
    padding-bottom: .5rem;
    padding-top: .5rem;
    color: var(--rz-base-500);
    pointer-events: none;
    transition: all 0.2s ease;
}

.floating-label .form-control:not(:placeholder-shown) + .form-label,
.floating-label .form-control:focus + .form-label {
    top: -0.25rem;
    font-size: 0.75rem;
    color: var(--rz-primary);
}*/

input:-webkit-autofill {
    background-color: transparent !important;
    color: inherit !important;
    transition: background-color 5000s ease-in-out 0s;
}

.c-container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.c-row {
    display: flex;
    flex-wrap: wrap;
}

.c-xl-5, 
.c-xl-6,
.c-xl-7 {
    width: 100%;
}

@media (min-width: 576px) {
    .c-sm-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }
}

@media (min-width: 768px) {
    .c-container {
        max-width: 720px;
    }

    .c-md-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }
}

@media (min-width: 1200px) {
    .c-container {
        max-width: 1140px;
    }

    .c-xl-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }
    .c-xl-6 {
        flex: 0 0 auto;
        width: 50%;
    }
    .c-xl-7 {
        flex: 0 0 58.3333333333%;
        max-width: 58.3333333333%;
    }
}
