﻿body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Times New Roman", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
}

@media (min-width: 1024px) {
    .modal-xlg {
        width: 1024px;
    }
}

.blur {
    -moz-filter: blur(3px);
    -ms-filter: blur(3px);
    -o-filter: blur(3px);
    -webkit-filter: blur(3px);
    cursor: not-allowed;
    filter: blur(3px);
    pointer-events: none;
}

.disabled {
    background-color: #eee;
    color: black;
    cursor: not-allowed;
    opacity: 1;
    pointer-events: none;
    text-decoration: none;
}

/*-----------------------Checkbox + Radio--------------------*/

/*.checkbox {
    padding-left: 20px;
}

    .checkbox label {
        display: inline-block;
        padding-left: 5px;
        position: relative;
    }

        .checkbox label::before {
            -o-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
            -webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
            background-color: #fff;
            border: 1px solid #cccccc;
            border-radius: 3px;
            content: "";
            display: inline-block;
            height: 16px;
            left: 0;
            margin-left: -20px;
            margin-top: 2px;
            position: absolute;
            transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
            width: 16px;
        }

        .checkbox label::after {
            color: #555555;
            display: inline-block;
            font-size: 11px;
            height: 14px;
            left: 0;
            margin-left: -20px;
            padding-left: 3px;
            padding-top: 3px;
            position: absolute;
            top: 0;
            width: 14px;
        }

    .checkbox input[type="checkbox"] {
        opacity: 0;
    }

        .checkbox input[type="checkbox"]:focus + label::before {
            outline: thin dotted;
            outline: 5px auto -webkit-focus-ring-color;
            outline-offset: -2px;
        }

        .checkbox input[type="checkbox"]:focus + input[type="hidden"] + label::before {
            outline: thin dotted;
            outline: 5px auto -webkit-focus-ring-color;
            outline-offset: -2px;
        }

        .checkbox input[type="checkbox"]:checked + label::after {
            content: "\f00c";
            font-family: 'FontAwesome';
        }

        .checkbox input[type="checkbox"]:checked + input[type="hidden"] + label::after {
            content: "\f00c";
            font-family: 'FontAwesome';
        }

        .checkbox input[type="checkbox"]:disabled + label {
            opacity: 0.65;
        }

        .checkbox input[type="checkbox"]:disabled + input[type="hidden"] + label {
            opacity: 0.65;
        }

        .checkbox input[type="checkbox"]:disabled + label::before {
            background-color: #eeeeee;
            cursor: not-allowed;
        }

        .checkbox input[type="checkbox"]:disabled + input[type="hidden"] + label::before {
            background-color: #eeeeee;
            cursor: not-allowed;
        }

    .checkbox.checkbox-circle label::before {
        border-radius: 50%;
    }

    .checkbox.checkbox-inline {
        margin-top: 0;
    }

.checkbox-primary input[type="checkbox"]:checked + label::before {
    background-color: #428bca;
    border-color: #428bca;
}

.checkbox-primary input[type="checkbox"]:checked + input[type="hidden"] + label::before {
    background-color: #428bca;
    border-color: #428bca;
}


.checkbox-primary input[type="checkbox"]:checked + input[type="hidden"] + label::after {
    color: #fff;
}

.checkbox-primary input[type="checkbox"]:checked + label::after {
    color: #fff;
}

.checkbox-danger input[type="checkbox"]:checked + label::before {
    background-color: #d9534f;
    border-color: #d9534f;
}

.checkbox-danger input[type="checkbox"]:checked + input[type="hidden"] + label::before {
    background-color: #d9534f;
    border-color: #d9534f;
}

.checkbox-danger input[type="checkbox"]:checked + label::after {
    color: #fff;
}

.checkbox-danger input[type="checkbox"]:checked + input[type="hidden"] + label::after {
    color: #fff;
}

.checkbox-info input[type="checkbox"]:checked + label::before {
    background-color: #5bc0de;
    border-color: #5bc0de;
}

.checkbox-info input[type="checkbox"]:checked + input[type="hidden"] + label::before {
    background-color: #5bc0de;
    border-color: #5bc0de;
}

.checkbox-info input[type="checkbox"]:checked + label::after {
    color: #fff;
}

.checkbox-info input[type="checkbox"]:checked + input[type="hidden"] + label::after {
    color: #fff;
}

.checkbox-warning input[type="checkbox"]:checked + label::before {
    background-color: #f0ad4e;
    border-color: #f0ad4e;
}

.checkbox-warning input[type="checkbox"]:checked + input[type="hidden"] + label::before {
    background-color: #f0ad4e;
    border-color: #f0ad4e;
}

.checkbox-warning input[type="checkbox"]:checked + label::after {
    color: #fff;
}

.checkbox-warning input[type="checkbox"]:checked + input[type="hidden"] + label::after {
    color: #fff;
}

.checkbox-success input[type="checkbox"]:checked + label::before {
    background-color: #5cb85c;
    border-color: #5cb85c;
}

.checkbox-success input[type="checkbox"]:checked + input[type="hidden"] + label::before {
    background-color: #5cb85c;
    border-color: #5cb85c;
}

.checkbox-success input[type="checkbox"]:checked + label::after {
    color: #fff;
}

.checkbox-success input[type="checkbox"]:checked + input[type="hidden"] + label::after {
    color: #fff;
}

.radio {
    padding-left: 20px !important;
}

    .radio label {
        display: inline-block;
        padding-left: 5px;
        position: relative;
    }

        .radio label::before {
            -o-transition: border 0.15s ease-in-out;
            -webkit-transition: border 0.15s ease-in-out;
            background-color: #fff;
            border: 1px solid #cccccc;
            border-radius: 50%;
            content: "";
            display: inline-block;
            height: 16px;
            left: 0;
            margin-left: -20px;
            position: absolute;
            transition: border 0.15s ease-in-out;
            width: 16px;
        }

        .radio label::after {
            -moz-transition: -moz-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
            -ms-transform: scale(0, 0);
            -o-transform: scale(0, 0);
            -o-transition: -o-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
            -webkit-transform: scale(0, 0);
            -webkit-transition: -webkit-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
            background-color: #555555;
            border-radius: 50%;
            content: " ";
            display: inline-block;
            height: 10px;
            left: 3px;
            margin-left: -20px;
            position: absolute;
            top: 3px;
            transform: scale(0, 0);
            transition: transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
            width: 10px;
        }

    .radio input[type="radio"] {
        opacity: 0;
    }

        .radio input[type="radio"]:focus + label::before {
            outline: thin dotted;
            outline: 5px auto -webkit-focus-ring-color;
            outline-offset: -2px;
        }

        .radio input[type="radio"]:checked + label::after {
            -ms-transform: scale(1, 1);
            -o-transform: scale(1, 1);
            -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
        }

        .radio input[type="radio"]:disabled + label {
            opacity: 0.65;
        }

            .radio input[type="radio"]:disabled + label::before {
                cursor: not-allowed;
            }

    .radio.radio-inline {
        margin-top: 0;
    }

.radio-primary input[type="radio"] + label::after {
    background-color: #428bca;
}

.radio-primary input[type="radio"]:checked + label::before {
    border-color: #428bca;
}

.radio-primary input[type="radio"]:checked + label::after {
    background-color: #428bca;
}

.radio-danger input[type="radio"] + label::after {
    background-color: #d9534f;
}

.radio-danger input[type="radio"]:checked + label::before {
    border-color: #d9534f;
}

.radio-danger input[type="radio"]:checked + label::after {
    background-color: #d9534f;
}

.radio-info input[type="radio"] + label::after {
    background-color: #5bc0de;
}

.radio-info input[type="radio"]:checked + label::before {
    border-color: #5bc0de;
}

.radio-info input[type="radio"]:checked + label::after {
    background-color: #5bc0de;
}

.radio-warning input[type="radio"] + label::after {
    background-color: #f0ad4e;
}

.radio-warning input[type="radio"]:checked + label::before {
    border-color: #f0ad4e;
}

.radio-warning input[type="radio"]:checked + label::after {
    background-color: #f0ad4e;
}

.radio-success input[type="radio"] + label::after {
    background-color: #5cb85c;
}

.radio-success input[type="radio"]:checked + label::before {
    border-color: #5cb85c;
}

.radio-success input[type="radio"]:checked + label::after {
    background-color: #5cb85c;
}*/

/*-----------------------Checkbox + Radio--------------------*/

/*----------------------- Input - Combobox ---------------------*/

input.input-validation-error, textarea.input-validation-error {
    border-color: #d52727;
    box-shadow: none;
}

span.field-validation-error {
    clear: both;
}

.field-validation-error {
    display: inline-block;
}

/*----------------------- Input - Combobox ---------------------*/

.input-group > .input-group-addon {
    cursor: pointer;
}

/*----------------------- loader ---------------------*/

.pageload-overlay {
    -webkit-backdrop-filter: blur(5px); /* Use for Safari 9+, Edge 17+ (not a mistake) and iOS Safari 9.2+ */
    backdrop-filter: blur(5px); /* Supported in Chrome 76 */
    content: "";
    display: block;
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    visibility: hidden;
    width: 100%;
}

    .pageload-overlay.show {
        visibility: visible;
        z-index: 9999;
    }

    .pageload-overlay svg {
        left: 0;
        pointer-events: none;
        position: absolute;
        top: 0;
    }

        .pageload-overlay svg path {
            fill: #fff;
        }

    .pageload-overlay::after,
    .pageload-overlay::before {
        -webkit-transition: opacity 0.15s, visibility 0s 0.15s;
        border-radius: 50%;
        content: '';
        height: 20px;
        left: 50%;
        margin: -10px 0 0 -10px;
        opacity: 0;
        position: fixed;
        top: 50%;
        transition: opacity 0.15s, visibility 0s 0.15s;
        visibility: hidden;
        width: 20px;
        z-index: 1000;
    }

    .pageload-overlay::after {
        -webkit-animation: moveRight 0.6s linear infinite alternate;
        -webkit-transform: translateX(-20px);
        animation: moveRight 0.6s linear infinite alternate;
        background: #6cc88a;
        transform: translateX(-20px);
    }

    .pageload-overlay::before {
        -webkit-animation: moveLeft 0.6s linear infinite alternate;
        -webkit-transform: translateX(20px);
        animation: moveLeft 0.6s linear infinite alternate;
        background: #4fc3f7;
        transform: translateX(20px);
    }

@-webkit-keyframes moveRight {
    to {
        -webkit-transform: translateX(20px);
    }
}

@keyframes moveRight {
    to {
        transform: translateX(20px);
    }
}

@-webkit-keyframes moveLeft {
    to {
        -webkit-transform: translateX(-20px);
    }
}

@keyframes moveLeft {
    to {
        transform: translateX(-20px);
    }
}

.pageload-loading.pageload-overlay::after,
.pageload-loading.pageload-overlay::before {
    -webkit-transition: opacity 0.3s;
    opacity: 1;
    transition: opacity 0.3s;
    visibility: visible;
}

.sidebar .submenu .nav-icon {
    margin-left: 0.25rem;
    margin-right: 0.75rem;
    width: 1.25rem;
}

.text-strikethrough {
    text-decoration: line-through;
}

.multiselect-container > li > a > label > input[type=checkbox] {
    margin-bottom: 0px !important;
}

.multiselect-container > li > a > label {
    margin: 0.4rem 0 !important;
}

.text-upcase {
    text-transform: uppercase;
}

.input-floating-label {
    /*margin-top: 10px;*/
}

    .input-floating-label input {
        margin: 0.25rem 0;
    }

        .input-floating-label input:focus ~ .floating-label, .input-floating-label textarea:focus ~ .floating-label, .input-floating-label input:not(:placeholder-shown) ~ .floating-label, .input-floating-label .floating-label.active, .input-floating-label textarea:not(:placeholder-shown) ~ .floating-label {
            font-size: 1rem !important;
            font-weight: 500 !important;
            top: 0;
        }

    .input-floating-label .form-error + span.form-error + span.floating-label {
        top: 35%;
    }
/*.input-floating-label .floating-label:not(.active) {
        margin-top: -2px;
    }*/

/*.input-floating-label .floating-label {
        top: 55%;
        transform: translateY(-55%);
    }*/
/*=======================================Float Label===============================================*/
.has-float-label {
    display: block;
    position: relative;
}

    .has-float-label span.select2-results, .has-float-label span.selection {
        font-size: 1rem;
    }

    .has-float-label label, .has-float-label > span:not(.select2):not(.select2-container):not(.form-error) {
        position: absolute;
        left: 0;
        /*top: 0 !important;*/
        cursor: text;
        font-size: 1rem;
        opacity: 1;
        -webkit-transition: all .2s;
        transition: all .2s;
    }

    .has-float-label textarea:focus + label {
        top: 0 !important;
    }

    .has-float-label select {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }

        .has-float-label select + span {
            /*margin-top: 5px;*/
            margin: 0.25rem 0;
        }

    .has-float-label textarea {
        width: 100%;
    }

    .has-float-label input, .has-float-label select, .has-float-label textarea {
        font-size: inherit;
        padding-top: 1em;
        margin-bottom: 2px;
        /*border: 0;*/
        /*border-radius: 0;*/
        /*border-bottom: 2px solid rgba(0, 0, 0, 0.1);*/
    }

        .has-float-label input::-webkit-input-placeholder, .has-float-label select::-webkit-input-placeholder, .has-float-label textarea::-webkit-input-placeholder {
            opacity: 1;
            -webkit-transition: all .2s;
            transition: all .2s;
        }

        .has-float-label input::-moz-placeholder, .has-float-label select::-moz-placeholder, .has-float-label textarea::-moz-placeholder {
            opacity: 1;
            transition: all .2s;
        }

        .has-float-label input:-ms-input-placeholder, .has-float-label select:-ms-input-placeholder, .has-float-label textarea:-ms-input-placeholder {
            opacity: 1;
            transition: all .2s;
        }

        .has-float-label input::placeholder, .has-float-label select::placeholder, .has-float-label textarea::placeholder {
            opacity: 1;
            -webkit-transition: all .2s;
            transition: all .2s;
        }

        .has-float-label input:placeholder-shown:not(:focus)::-webkit-input-placeholder, .has-float-label select:placeholder-shown:not(:focus)::-webkit-input-placeholder, .has-float-label textarea:placeholder-shown:not(:focus)::-webkit-input-placeholder {
            opacity: 0;
        }

        .has-float-label input:placeholder-shown:not(:focus)::-moz-placeholder, .has-float-label select:placeholder-shown:not(:focus)::-moz-placeholder, .has-float-label textarea:placeholder-shown:not(:focus)::-moz-placeholder {
            opacity: 0;
        }

        .has-float-label input:placeholder-shown:not(:focus):-ms-input-placeholder, .has-float-label select:placeholder-shown:not(:focus):-ms-input-placeholder, .has-float-label textarea:placeholder-shown:not(:focus):-ms-input-placeholder {
            opacity: 0;
        }

        .has-float-label input:placeholder-shown:not(:focus)::placeholder, .has-float-label select:placeholder-shown:not(:focus)::placeholder, .has-float-label textarea:placeholder-shown:not(:focus)::placeholder {
            opacity: 0;
        }

        .has-float-label input:focus, .has-float-label select:focus, .has-float-label textarea:focus {
            outline: none;
            border-color: rgba(0, 0, 0, 0.5);
        }

    .has-float-label select {
        padding-right: 1em;
        background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23333' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right 0.5em bottom 0.25em;
        background-size: 8px 10px;
    }

input.form-error:not(:focus) + span.form-error + span.floating-label.text-danger-m3.text-500,
input.form-error:not(:focus) + span.floating-label.text-danger-m3.text-500,
textarea.form-error:not(:focus) + span.floating-label.text-danger-m3.text-500,
input[required][aria-describedby*='error']:not(:focus) + span.floating-label.text-danger-m3.text-500:has(+ div.help-block),
select.form-error:not(:focus) + span.select2:not(.select2-container--focus):not(:has(li.select2-selection__choice)) + span.form-error + label.floating-label
/*div.help-block::before*/ {
    top: 35%;
}

span.select2.select2-container.select2-container--default:not(.select2-container--focus, .select2-container--below, .select2-container--disabled):not(:has(li.select2-selection__choice, .select2-selection--clearable)) + label.floating-label {
    top: 50% !important;
}

.input-floating-label .select2-container--default:not(.select2-container--focus) .select2-selection--single .select2-selection__placeholder {
    display: none;
}

span.select2.select2-container.select2-container--default.select2-container--focus + label.floating-label,
span.select2.select2-container.select2-container--default.select2-container--disabled + label.floating-label,
span.select2.select2-container.select2-container--default:has(li.select2-selection__choice) + label.floating-label,
span.select2.select2-container.select2-container--default:has(span.select2-selection__rendered) + label.floating-label,
span.select2.select2-container.select2-container--default:has(span.selection > span.select2-selection--clearable) + span.form-error + label.floating-label,
select + span.select2.select2-container--focus + span.form-error + label.floating-label,
select + span.select2.select2-container--focus + label.floating-label,
input:disabled + label.floating-label, textarea:disabled + label.floating-label {
    top: 0 !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    white-space: unset !important;
}

thead > tr > th {
    text-align: center;
}

/*Ring the bell*/

@-webkit-keyframes ring {
    0% {
        -webkit-transform: rotateZ(0);
    }

    1% {
        -webkit-transform: rotateZ(30deg);
    }

    3% {
        -webkit-transform: rotateZ(-28deg);
    }

    5% {
        -webkit-transform: rotateZ(34deg);
    }

    7% {
        -webkit-transform: rotateZ(-32deg);
    }

    9% {
        -webkit-transform: rotateZ(30deg);
    }

    11% {
        -webkit-transform: rotateZ(-28deg);
    }

    13% {
        -webkit-transform: rotateZ(26deg);
    }

    15% {
        -webkit-transform: rotateZ(-24deg);
    }

    17% {
        -webkit-transform: rotateZ(22deg);
    }

    19% {
        -webkit-transform: rotateZ(-20deg);
    }

    21% {
        -webkit-transform: rotateZ(18deg);
    }

    23% {
        -webkit-transform: rotateZ(-16deg);
    }

    25% {
        -webkit-transform: rotateZ(14deg);
    }

    27% {
        -webkit-transform: rotateZ(-12deg);
    }

    29% {
        -webkit-transform: rotateZ(10deg);
    }

    31% {
        -webkit-transform: rotateZ(-8deg);
    }

    33% {
        -webkit-transform: rotateZ(6deg);
    }

    35% {
        -webkit-transform: rotateZ(-4deg);
    }

    37% {
        -webkit-transform: rotateZ(2deg);
    }

    39% {
        -webkit-transform: rotateZ(-1deg);
    }

    41% {
        -webkit-transform: rotateZ(1deg);
    }

    43% {
        -webkit-transform: rotateZ(0);
    }

    100% {
        -webkit-transform: rotateZ(0);
    }
}

@-moz-keyframes ring {
    0% {
        -moz-transform: rotate(0);
    }

    1% {
        -moz-transform: rotate(30deg);
    }

    3% {
        -moz-transform: rotate(-28deg);
    }

    5% {
        -moz-transform: rotate(34deg);
    }

    7% {
        -moz-transform: rotate(-32deg);
    }

    9% {
        -moz-transform: rotate(30deg);
    }

    11% {
        -moz-transform: rotate(-28deg);
    }

    13% {
        -moz-transform: rotate(26deg);
    }

    15% {
        -moz-transform: rotate(-24deg);
    }

    17% {
        -moz-transform: rotate(22deg);
    }

    19% {
        -moz-transform: rotate(-20deg);
    }

    21% {
        -moz-transform: rotate(18deg);
    }

    23% {
        -moz-transform: rotate(-16deg);
    }

    25% {
        -moz-transform: rotate(14deg);
    }

    27% {
        -moz-transform: rotate(-12deg);
    }

    29% {
        -moz-transform: rotate(10deg);
    }

    31% {
        -moz-transform: rotate(-8deg);
    }

    33% {
        -moz-transform: rotate(6deg);
    }

    35% {
        -moz-transform: rotate(-4deg);
    }

    37% {
        -moz-transform: rotate(2deg);
    }

    39% {
        -moz-transform: rotate(-1deg);
    }

    41% {
        -moz-transform: rotate(1deg);
    }

    43% {
        -moz-transform: rotate(0);
    }

    100% {
        -moz-transform: rotate(0);
    }
}

@keyframes ring {
    0% {
        transform: rotate(0);
    }

    1% {
        transform: rotate(30deg);
    }

    3% {
        transform: rotate(-28deg);
    }

    5% {
        transform: rotate(34deg);
    }

    7% {
        transform: rotate(-32deg);
    }

    9% {
        transform: rotate(30deg);
    }

    11% {
        transform: rotate(-28deg);
    }

    13% {
        transform: rotate(26deg);
    }

    15% {
        transform: rotate(-24deg);
    }

    17% {
        transform: rotate(22deg);
    }

    19% {
        transform: rotate(-20deg);
    }

    21% {
        transform: rotate(18deg);
    }

    23% {
        transform: rotate(-16deg);
    }

    25% {
        transform: rotate(14deg);
    }

    27% {
        transform: rotate(-12deg);
    }

    29% {
        transform: rotate(10deg);
    }

    31% {
        transform: rotate(-8deg);
    }

    33% {
        transform: rotate(6deg);
    }

    35% {
        transform: rotate(-4deg);
    }

    37% {
        transform: rotate(2deg);
    }

    39% {
        transform: rotate(-1deg);
    }

    41% {
        transform: rotate(1deg);
    }

    43% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(0);
    }
}

.text-middle {
    vertical-align: middle !important;
}

.w-20 {
    width: 20% !important;
}

.w-40 {
    width: 40% !important;
}

.w-45 {
    width: 45% !important;
}

.w-15 {
    width: 15% !important;
}

.w-30 {
    width: 30% !important;
}

.w-35 {
    width: 35% !important;
}

/*---------------------------------*/

.bootstrap-select .dropdown-toggle {
    word-wrap: break-word !important;
    text-overflow: inherit !important;
    white-space: normal !important;
}

/*---------------------------------*/
/*-----------Floating  Form--------*/

:root, [data-bs-theme=light] {
    --tz-blue: #007aff;
    --tz-indigo: #33b0e0;
    --tz-purple: #a855f7;
    --tz-pink: #f24f7c;
    --tz-red: #d03f3f;
    --tz-orange: #fd7e14;
    --tz-yellow: #edc755;
    --tz-green: #47ad77;
    --tz-teal: #02a8b5;
    --tz-cyan: #3bc0c3;
    --tz-black: #000;
    --tz-white: #fff;
    --tz-gray: #525252;
    --tz-gray-dark: #171717;
    --tz-gray-100: #fafaf9;
    --tz-gray-200: #e5e5e5;
    --tz-gray-300: #d4d4d4;
    --tz-gray-400: #a3a3a3;
    --tz-gray-500: #737373;
    --tz-gray-600: #525252;
    --tz-gray-700: #404040;
    --tz-gray-800: #171717;
    --tz-gray-900: #0a0a0a;
    --tz-primary: #007aff;
    --tz-secondary: #737373;
    --tz-success: #47ad77;
    --tz-info: #33b0e0;
    --tz-warning: #edc755;
    --tz-danger: #d03f3f;
    --tz-purple: #a855f7;
    --tz-pink: #f24f7c;
    --tz-light: #e5e5e5;
    --tz-dark: #0a0a0a;
    --tz-primary-rgb: 0,122,255;
    --tz-secondary-rgb: 115,115,115;
    --tz-success-rgb: 71,173,119;
    --tz-info-rgb: 51,176,224;
    --tz-warning-rgb: 237,199,85;
    --tz-danger-rgb: 208,63,63;
    --tz-purple-rgb: 168,85,247;
    --tz-pink-rgb: 242,79,124;
    --tz-light-rgb: 229,229,229;
    --tz-dark-rgb: 10,10,10;
    --tz-primary-text-emphasis: #006ee6;
    --tz-secondary-text-emphasis: #686868;
    --tz-success-text-emphasis: #409c6b;
    --tz-info-text-emphasis: #2e9eca;
    --tz-warning-text-emphasis: #d5b34d;
    --tz-danger-text-emphasis: #bb3939;
    --tz-pink-text-emphasis: #da4770;
    --tz-purple-text-emphasis: #974dde;
    --tz-light-text-emphasis: #d4d4d4;
    --tz-dark-text-emphasis: #404040;
    --tz-primary-bg-subtle: #cce4ff;
    --tz-secondary-bg-subtle: #fafaf9;
    --tz-success-bg-subtle: #daefe4;
    --tz-info-bg-subtle: #d6eff9;
    --tz-warning-bg-subtle: #fbf4dd;
    --tz-danger-bg-subtle: #f6d9d9;
    --tz-pink-bg-subtle: #fcdce5;
    --tz-purple-bg-subtle: #eeddfd;
    --tz-light-bg-subtle: #fdfdfc;
    --tz-dark-bg-subtle: #a3a3a3;
    --tz-primary-border-subtle: #99caff;
    --tz-secondary-border-subtle: #e5e5e5;
    --tz-success-border-subtle: #b5dec9;
    --tz-info-border-subtle: #addff3;
    --tz-warning-border-subtle: #f8e9bb;
    --tz-danger-border-subtle: #ecb2b2;
    --tz-pink-border-subtle: #fab9cb;
    --tz-purple-border-subtle: #dcbbfc;
    --tz-light-border-subtle: #e5e5e5;
    --tz-dark-border-subtle: #737373;
    --tz-white-rgb: 255,255,255;
    --tz-black-rgb: 0,0,0;
    --tz-font-sans-serif: "Poppins",sans-serif;
    --tz-font-monospace: SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
    --tz-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
    --tz-body-font-family: var(--tz-font-sans-serif);
    --tz-body-font-size: 0.875rem;
    --tz-body-font-weight: 400;
    --tz-body-line-height: 1.5;
    --tz-body-color: #000000;
    --tz-body-color-rgb: 0,0,0;
    --tz-body-bg: #faf4f0;
    --tz-body-bg-rgb: 250,244,240;
    --tz-emphasis-color: #000;
    --tz-emphasis-color-rgb: 0,0,0;
    --tz-secondary-color: rgba(0, 0, 0, 0.75);
    --tz-secondary-color-rgb: 0,0,0;
    --tz-secondary-bg: #fff;
    --tz-secondary-bg-rgb: 255,255,255;
    --tz-tertiary-color: black;
    --tz-tertiary-color-rgb: 0,0,0;
    --tz-tertiary-bg: #e5e5e5;
    --tz-tertiary-bg-rgb: 229,229,229;
    --tz-heading-color: inherit;
    --tz-link-color: #007aff;
    --tz-link-color-rgb: 0,122,255;
    --tz-link-decoration: none;
    --tz-link-hover-color: #0068d9;
    --tz-link-hover-color-rgb: 0,104,217;
    --tz-code-color: #3bc0c3;
    --tz-highlight-bg: #fbf4dd;
    --tz-border-width: 1px;
    --tz-border-style: solid;
    --tz-border-color: rgba(0, 0, 0, 0.2);
    --tz-border-color-translucent: rgba(0, 0, 0, 0.175);
    --tz-border-radius: 0;
    --tz-border-radius-sm: 0.25rem;
    --tz-border-radius-lg: 0.5rem;
    --tz-border-radius-xl: 1rem;
    --tz-border-radius-xxl: 2rem;
    --tz-border-radius-2xl: var(--tz-border-radius-xxl);
    --tz-border-radius-pill: 50rem;
    --tz-box-shadow: 0 1px 3px rgba(27, 23, 30, 0.1);
    --tz-box-shadow-sm: 0 0.125rem 0.25rem rgba(var(--tz-body-color-rgb), 0.15);
    --tz-box-shadow-lg: 0 0 45px 0 rgba(var(--tz-body-color-rgb), 0.2);
    --tz-box-shadow-inset: inset 0 1px 2px rgba(var(--tz-body-color-rgb), 0.075);
    --tz-focus-ring-width: 0.25rem;
    --tz-focus-ring-opacity: 0.25;
    --tz-focus-ring-color: rgba(0, 122, 255, 0.25);
    --tz-form-valid-color: #47ad77;
    --tz-form-valid-border-color: #47ad77;
    --tz-form-invalid-color: #d03f3f;
    --tz-form-invalid-border-color: #d03f3f
}

.form-floating {
    position: relative
}

    .form-floating > .form-control, .form-floating > .form-control-plaintext, .form-floating > .form-select {
        height: calc(3.5rem + calc(var(--tz-border-width) * 2));
        min-height: calc(3.5rem + calc(var(--tz-border-width) * 2));
        line-height: 1.25
    }

    .form-floating > label {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 2;
        height: 100%;
        padding: 1rem .9rem;
        overflow: hidden;
        text-align: start;
        text-overflow: ellipsis;
        white-space: nowrap;
        pointer-events: none;
        border: var(--tz-border-width) solid transparent;
        -webkit-transform-origin: 0 0;
        transform-origin: 0 0;
        -webkit-transition: opacity .1s ease-in-out,-webkit-transform .1s ease-in-out;
        transition: opacity .1s ease-in-out,-webkit-transform .1s ease-in-out;
        transition: opacity .1s ease-in-out,transform .1s ease-in-out;
        transition: opacity .1s ease-in-out,transform .1s ease-in-out,-webkit-transform .1s ease-in-out
    }

@media (prefers-reduced-motion:reduce) {
    .form-floating > label {
        -webkit-transition: none;
        transition: none
    }
}

.form-floating > .form-control, .form-floating > .form-control-plaintext {
    padding: 1rem .9rem
}

    .form-floating > .form-control-plaintext::-webkit-input-placeholder, .form-floating > .form-control::-webkit-input-placeholder {
        color: transparent
    }

    .form-floating > .form-control-plaintext::-moz-placeholder, .form-floating > .form-control::-moz-placeholder {
        color: transparent
    }

    .form-floating > .form-control-plaintext:-ms-input-placeholder, .form-floating > .form-control:-ms-input-placeholder {
        color: transparent
    }

    .form-floating > .form-control-plaintext::-ms-input-placeholder, .form-floating > .form-control::-ms-input-placeholder {
        color: transparent
    }

    .form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
        color: transparent
    }

    .form-floating > .form-control-plaintext:not(:-moz-placeholder-shown), .form-floating > .form-control:not(:-moz-placeholder-shown) {
        padding-top: 1.625rem;
        padding-bottom: .625rem
    }

    .form-floating > .form-control-plaintext:not(:-ms-input-placeholder), .form-floating > .form-control:not(:-ms-input-placeholder) {
        padding-top: 1.625rem;
        padding-bottom: .625rem
    }

    .form-floating > .form-control-plaintext:focus, .form-floating > .form-control-plaintext:not(:placeholder-shown), .form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown) {
        padding-top: 1.625rem;
        padding-bottom: .625rem
    }

    .form-floating > .form-control-plaintext:-webkit-autofill, .form-floating > .form-control:-webkit-autofill {
        padding-top: 1.625rem;
        padding-bottom: .625rem
    }

.form-floating > .form-select {
    padding-top: 1.625rem;
    padding-bottom: .625rem
}

.form-floating > .bootstrap-select {
    padding: 0 !important;
}

.form-floating > label:has(+.bootstrap-select) {
    padding-top: 5px;
    padding-left: 0px;
    position: absolute;
    inset: 0rem .6rem;
    z-index: 9;
    content: "";
    background-color: transparent;
    border-radius: var(--tz-border-radius);
    font-size: .85em !important;
}

.form-floating > .bootstrap-select > button {
    height: 60px;
}

    .form-floating > .bootstrap-select > button > .filter-option > .filter-option-inner {
        margin-top: 20px;
    }

.form-floating > .form-control:not(:-moz-placeholder-shown) ~ label {
    color: rgba(var(--tz-body-color-rgb),.65);
    transform: scale(.85) translateY(-.5rem) translateX(.15rem)
}

.form-floating > .form-control:not(:-ms-input-placeholder) ~ label {
    color: rgba(var(--tz-body-color-rgb),.65);
    transform: scale(.85) translateY(-.5rem) translateX(.15rem)
}

.form-floating > .form-control-plaintext ~ label, .form-floating > .form-control:focus ~ label, .form-floating > .form-control:not(:placeholder-shown) ~ label, .form-floating > .form-select ~ label {
    color: rgba(var(--tz-body-color-rgb),.65);
    -webkit-transform: scale(.85) translateY(-.5rem) translateX(.15rem);
    transform: scale(.85) translateY(-.5rem) translateX(.15rem);
    padding: .8rem;
    margin: 0;
}

.form-floating > .form-control:not(:-moz-placeholder-shown) ~ label::after {
    position: absolute;
    inset: 1rem .45rem;
    z-index: -1;
    height: 1.875em;
    content: "";
    background-color: var(--tz-secondary-bg);
    border-radius: var(--tz-border-radius)
}

.form-floating > .form-control:not(:-ms-input-placeholder) ~ label::after {
    position: absolute;
    inset: 1rem .45rem;
    z-index: -1;
    height: 1.875em;
    content: "";
    background-color: var(--tz-secondary-bg);
    border-radius: var(--tz-border-radius)
}

.form-floating > .form-control-plaintext ~ label::after, .form-floating > .form-control:focus ~ label::after, .form-floating > .form-control:not(:placeholder-shown) ~ label::after, .form-floating > .form-select ~ label::after {
    position: absolute;
    inset: 1rem .45rem;
    z-index: -1;
    /*height: 1.875em;*/
    content: "";
    /*background-color: var(--tz-secondary-bg);*/
    background-color: transparent;
    border-radius: var(--tz-border-radius)
}

.form-floating > .form-control:-webkit-autofill ~ label {
    color: rgba(var(--tz-body-color-rgb),.65);
    -webkit-transform: scale(.85) translateY(-.5rem) translateX(.15rem);
    transform: scale(.85) translateY(-.5rem) translateX(.15rem)
}

.form-floating > .form-control-plaintext ~ label {
    border-width: var(--tz-border-width) 0
}

.form-floating > .form-control:disabled ~ label, .form-floating > :disabled ~ label {
    color: #525252
}

    .form-floating > .form-control:disabled ~ label::after, .form-floating > :disabled ~ label::after {
        background-color: var(--tz-tertiary-bg)
    }
