h1:focus {
    outline: none;
}

.content {
    padding-top: 1.1rem;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
}

#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;
    }

.blazor-error-boundary {
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121;
    padding: 1rem 1rem 1rem 3.7rem;
    color: white;
}

    .blazor-error-boundary::after {
        content: "An error has occurred."
    }

.loading-progress {
    position: relative;
    display: block;
    width: 8rem;
    height: 8rem;
    margin: 20vh auto 1rem auto;
}

    .loading-progress circle {
        fill: none;
        stroke: #e0e0e0;
        stroke-width: 0.6rem;
        transform-origin: 50% 50%;
        transform: rotate(-90deg);
    }

        .loading-progress circle:last-child {
            stroke: #1b6ec2;
            stroke-dasharray: calc(3.141 * var(--blazor-load-percentage, 0%) * 0.8), 500%;
            transition: stroke-dasharray 0.05s ease-in-out;
        }

.loading-progress-text {
    position: absolute;
    text-align: center;
    font-weight: bold;
    inset: calc(20vh + 3.25rem) 0 auto 0.2rem;
}

    .loading-progress-text:after {
        content: var(--blazor-load-percentage-text, "Loading");
    }

code {
    color: #c02d76;
}

/*--------------------------- General Styles ---------------------------*/

/*#region Colores*/

:root {
    /*Colores primarios*/
    --marine: #3366CC;
    --bluedark: #004884;
    --black: #000000;
    --navbar: #F2F2F2;
    --tundora: #4B4B4B;
    --dimgray: #737373;
    --white: #FFF;
    /*Colores secundarios*/
    --bluelight: #E6EFFD;
    --silver: #BABABA;
    --concrete: #F2F2F2;
    --gray: #808080;
    --hawkesblue: F6F8F9;
    /*Colores alertas*/
    --skybluelight: #f6fdff;
    --green: #0D684B;
    --greenlight: #CDE6DF;
    --red: #B30937;
    --redlight: #EECDD2;
    /*Colores Alertas*/
    --color-gris-text: #697A8D;
    --color-Error: #DC3545;
    --color-Success: #28A745;
    --color-Information: #38ADCE;
    --color-Warning: #FFC107;
}

.dark-contrast {
    /*Colores primarios*/
    --marine: #505050;
    --bluedark: #FFF;
    --black: #FFF;
    --navbar: #333333;
    --tundora: #4B4B4B;
    --dimgray: #737373;
    --white: #000;
    --greenDark: #ddfb00;
    /*Colores secundarios*/
    --bluelight: #FFF;
    --silver: #FFF;
    --concrete: #FFF;
    --hawkesblue: #FFF;
    /*Colores alertas*/

    --skybluelight: #f6fdff;
    --green: #0D684B;
    --greenlight: #CDE6DF;
    --red: #B30937;
    --redlight: #EECDD2;
}

/*#region darkContrastZone*/

body.dark-contrast label, body.dark-contrast p, body.dark-contrast h1, body.dark-contrast h2, body.dark-contrast h3,
body.dark-contrast h4, body.dark-contrast h5, body.dark-contrast h6, body.dark-contrast li {
    color: white !important;
}

body.dark-contrast ul, body.dark-contrast li {
    background-color: #141414 !important;
}

body.dark-contrast .k-list-content {
    background-color: #141414 !important;
}

body.dark-contrast .k-list-item:hover {
    background-color: #ffffff7d !important;
}

body.dark-contrast .k-dropdownlist {
    background-color: #141414 !important;
    color: white !important;
}

body.dark-contrast .k-input-value-text {
    color: white !important;
}

body.dark-contrast .blocked-div .k-dropdownlist.k-disabled {
    outline: none !important;
    box-shadow: none !important;
    border: 1.5pt solid #a4a4a4 !important;
    background-color: #141414 !important;
    opacity: 1 !important;
}

    body.dark-contrast .backgroundPage {
        background: #222 !important;
    }

body.dark-contrast a, body.dark-contrast .versionLabel, body.dark-contrast p.miga, body.dark-contrast .breadcrumb-item--modify {
    color: var(--greenDark) !important; /*Verde brillante*/
}

body.dark-contrast .card-header {
    background-color: #141414 !important;
}

body.dark-contrast img {
    filter: sepia(1);
}

    body.dark-contrast img.container-modal__icon {
        filter: none;
    }

body.dark-contrast .titleColor {
    color: var(--greenDark) !important;
}
/*#endregion*/

/*#endregion*/

/*#region Validation*/
.blocked-div {
    pointer-events: none;
}

.blockScrollBar {
    /*overflow:hidden;*/
    /*overflow-block:hidden;*/
}
/*#endregion*/

/*#region Fonts */
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'LexendDeca';
    src: url('../fonts/LexendDeca-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Light.ttf') format('truetype');
}

/*#endregion */

/*#region Tags */

html, body, h1, h2, h3, h4, h5, h6, label, a, p, button {
    font-family: 'Montserrat', sans-serif !important;
}

label, p {
    font-family: 'Work Sans' !important;
}

a {
    text-decoration: none;
}

.p-50 {
    padding: 50px !important;
}

.text-justify {
    text-align: justify;
}

/*#endregion */

/*#region ColorStyle */

.titleColor {
    color: var(--bluedark) !important;
}

.subtitleColor {
    color: var(--marine) !important
}

.textBodyColor {
    color: var(--black) !important;
}

.textInfo {
    width: 50%;
    text-align: justify;
    color: var(--gray);
    font-family: 'Work Sans' !important;
    font-weight: 400;
    font-size: 16px;
}

.textInfoSmall {
    width: 100%;
    text-align: justify;
    color: var(--gray);
    font-family: 'Work Sans' !important;
    font-weight: 400;
    font-size: 14px;
}

.textCharacterCounter {
    color: gray !important;
}

.card {
    background-color: var(--white) !important;
}
/*#endregion */

/*#region InputStyle */
.small {
    color: #4B4B4B;
    font-family: 'Work Sans' !important;
    font-weight: 400;
    font-size: 15px !important;
    padding-bottom: 6px;
}

.form-control, form-control-mail {
    background-color: #FFFFFF !important;
    font-family: 'Work Sans' !important;
    font-weight: 400 !important;
    font-size: 16px !important;
    color: #737373;
    max-height: 40px !important;
    border: 1.5pt solid #737373 !important;
    border-radius: 10px !important;
}

    .form-control:focus {
        outline: none !important;
        box-shadow: none !important;
        border: 1.5pt solid #3366CC !important;
    }

    .form-control:valid:not(:placeholder-shown) {
        color: #068460;
        border: 1.5pt solid #068460 !important;
        background-color: #fff !important;
    }

    .form-control:invalid:not(:placeholder-shown) {
        color: #A80521;
        border: 1.5pt solid #A80521 !important;
    }

    .form-control:required {
        color: #A80521;
        border: 1.5pt solid #A80521 !important;
        background-color: #fffafa !important;
    }

    .form-control:focus {
        border: 1.5pt solid #3366CC !important;
    }

.blocked-div .form-control {
    outline: none !important;
    box-shadow: none !important;
    border: 1.5pt solid #a4a4a4 !important;
    background-color: #f3f3f3 !important;
}

.form-control:disabled {
    outline: none !important;
    box-shadow: none !important;
    border: 1.5pt solid #a4a4a4 !important;
    background-color: #f3f3f3 !important;
    color: #a4a4a4 !important;
}

.input-container {
    display: flow;
    position: relative;
    width: 100%;
}

    .input-container input {
        flex: 1;
        padding-right: 28px;
        width: 100%;
        box-sizing: border-box;
    }

    .input-container .clear-icon {
        position: absolute;
        right: 11px;
        top: 48%;
        transform: translateY(50%);
        cursor: pointer;
        color: #ababab;
        display: none;
    }

    .input-container .clear-icon {
        display: block;
    }

.text-infowarning {
    font-size: 15px;
    font-family: 'Work Sans' !important;
}

.from-group {
    display: flex;
    align-items: center;
}

.textValidation {
    color: #A80521;
    font-size: 15px;
    padding-left: 10px;
    font-family: 'Work Sans' !important;
}

body.dark-contrast .form-control:valid:not(:placeholder-shown) {
    background-color: #141414 !important;
    color: white !important;
}

body.dark-contrast .form-control:invalid:not(:placeholder-shown) {
    color: #FFF !important;
}

body.dark-contrast .form-control {
    color: #FFF !important;
    background-color: #191919 !important;
}

body.dark-contrast .form-control:required {
    color: #FFF !important;
    background-color: #191919 !important;
}

/*#endregion */

/*#region TextArea Style */
.custom-textarea {
    background-color: #FFFFFF !important;
    font-family: 'Work Sans' !important;
    font-weight: 400 !important;
    font-size: 16px !important;
    color: #737373;
    border: 1.5pt solid #737373 !important;
    border-radius: 10px !important;
    height: 150px !important;
    padding: 10px 33px 10px 15px !important;
}

.custom-textarea--h100 {
    height: 100px !important;
}

.custom-textarea:focus {
    outline: none !important;
    box-shadow: none !important;
    border: 1.5pt solid #3366CC !important;
}

.custom-textarea:valid:not(:placeholder-shown) {
    color: #068460 !important;
    border: 1.5pt solid #068460 !important;
    background-color: #FFF !important;
}

.custom-textarea:invalid:not(:placeholder-shown) {
    color: #A80521 !important;
    border: 1.5pt solid #A80521 !important;
    background-color: #fff4f4 !important;
}

textarea:required {
    color: #A80521 !important;
    border: 1.5pt solid #A80521 !important;
    background-color: #fffafa !important;
}

body.dark-contrast textarea:required {
    background-color: #141414 !important;
    color: white !important;
}

body.dark-contrast .custom-textarea:valid:not(:placeholder-shown) {
    background-color: #141414 !important;
    color: white !important;
}

.input-container .clear-icon-textarea {
    position: absolute;
    right: 13px;
    top: 17%;
    transform: translateY(50%);
    cursor: pointer;
    color: #ababab;
    display: none;
}

.input-container textarea:valid + .clear-icon-textarea {
    display: block;
}

.blocked-div .custom-textarea {
    outline: none !important;
    box-shadow: none !important;
    border: 1.5pt solid #a4a4a4 !important;
    background-color: #f3f3f3 !important;
    opacity: 1 !important;
}

/*#endregion*/

/*#region Breadcrumb*/
.container-breadcrumb {
    padding: 5px 20px;
    margin: 0px;
}

.breadcrumb {
    background-color: rgba(0,0,0,0);
    padding: 0px;
    margin: 0px;
}

.breadcrumb-item {
    font-family: 'Montserrat', sans-serif !important;
    margin-right: 10px;
}

    .breadcrumb-item a, .breadcrumb-item a p {
        text-decoration: none;
        font-family: 'Montserrat', sans-serif !important;
    }

.breadcrumb-item-sec {
    color: #3366cc;
}

.breadcrumb-item + .breadcrumb-item--modify::before {
    font-family: 'FontAwesome';
    color: var(--bluedark);
    content: "\f054";
    margin-right: 7px;
}

.breadcrumb-item--modify {
    font-family: 'Montserrat', sans-serif !important;
    color: #3366CC;
    font-size: 14px;
    font-weight: 500;
}

.breadcrumb-h-21 {
    height: 21px;
}

p.miga {
    font-size: 14px;
    color: #004884;
    font-weight: 600;
}
/*#endregion */

/*#region StepperStyle */

.k-step-label {
    background-color: #f5f5f5ee;
    color: #d1d1d1 !important;
    width: 250px;
    padding: 10px;
    margin: 10px;
    border-radius: 11px;
    box-shadow: inset 0px -3px 0px 0px #d7d7d7;
}

body.dark-contrast .k-step-label {
    background-color: #141414ee !important;
    color: #464646 !important;
    box-shadow: inset 0px -3px 0px 0px var(--greenDark);
}

.k-step.k-step-done .k-step-link .k-step-label, .k-step.k-step-current .k-step-link .k-step-label {
    background-color: #fdfdfd;
    color: black !important;
}

body.dark-contrast .k-step.k-step-done .k-step-link .k-step-label, body.dark-contrast .k-step.k-step-current .k-step-link .k-step-label {
    background-color: #232323;
    color: #ffffff !important;
}

.k-stepper .k-step-label .k-step-text {
    max-width: 250px !important;
}

body.dark-contrast .k-stepper .k-step.k-step-disabled .k-step-indicator, body.dark-contrast .k-stepper .k-step.k-disabled .k-step-indicator, body.dark-contrast .k-stepper .k-step:disabled .k-step-indicator {
    background-color: #484848 !important;
}

/*#endregion */

/*#region ButtonStyle */
a, .btn-link {
    color: #0071c1;
}

.btn-primary {
    color: #fff;
    background-color: var(--marine);
    border-color: var(--marine);
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

.button-primary {
    text-decoration: none;
    padding: 7px 16px 7px 16px;
    color: var(--white);
    background-color: var(--marine);
    border: 2px solid var(--marine);
    border-radius: 100px;
    font-size: 16px !important;
    font-family: Work Sans, sans-serif !important;
    min-width: 165px;
    font-weight: 400 !important;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

body.dark-contrast .button-primary {
    background-color: var(--greenDark);
}

.button-primary:hover {
    color: white;
    background-color: var(--bluedark) !important;
    border: 1px solid var(--bluedark) !important;
}

body.dark-contrast .button-primary:hover {
    color: white !important;
    border: 1px solid #99a926 !important;
    background-color: #99a926 !important;
}

.button-primary:disabled {
    color: white;
    background-color: #7d9bd7 !important;
    border: 1px solid #7d9bd7 !important;
}

.button-primary-inline {
    text-decoration: none;
    padding: 7px 16px 7px 16px;
    color: var(--marine);
    background-color: var(--white);
    border: 2px solid var(--marine);
    border-radius: 100px;
    font-size: 16px !important;
    font-family: Work Sans, sans-serif !important;
    min-width: 165px;
    font-weight: 400 !important;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

body.dark-contrast .button-primary-inline {
    border-color: var(--greenDark) !important;
    color: var(--greenDark) !important;
}

.button-primary-inline:hover {
    color: var(--white);
    border: 1px solid var(--bluedark);
    background-color: var(--bluedark);
}

body.dark-contrast .button-primary-inline:hover {
    color: white !important;
    border: 1px solid #99a926 !important;
    background-color: #99a926 !important;
}

.button-primary-inline:disabled {
    color: var(--white);
    border: 1px solid #737373 !important;
    background-color: white !important;
}

.button-red {
    text-decoration: none;
    padding: 11px 16px 12px 16px;
    color: var(--white);
    background-color: var(--red);
    border: 2px solid var(--red);
    border-radius: 100px;
    font-size: 16px !important;
    font-family: Work Sans, sans-serif !important;
    min-width: 165px;
    font-weight: 400 !important;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .button-red:hover {
        color: white;
        background-color: #7b0000 !important;
        border: 1px solid #7b0000 !important;
    }
/*#endregion */

/*#region DropdownStyle */

.k-dropdownlist {
    max-height: 40px !important;
    border: 1.5pt solid #737373 !important;
    border-radius: 10px !important;
    background-color: #fff !important;
    font-family: WorkSans-Regular !important;
    font-size: 16px !important;
    color: #4B4B4B !important;
}

    .k-dropdownlist .k-input-inner {
        padding: 11px 0 10px 16px !important;
    }

    .k-dropdownlist button {
        margin: 0 !important;
        padding: 0 !important;
        padding-right: 12px !important;
    }

    .k-dropdownlist .k-i-arrow-60-down::before {
        content: "\e015";
    }

.blocked-div .k-dropdownlist.k-disabled {
    outline: none !important;
    box-shadow: none !important;
    border: 1.5pt solid #a4a4a4 !important;
    background-color: #f3f3f3 !important;
    opacity: 1 !important;
}

.k-picker-solid:focus {
    box-shadow: none !important;
}

.k-dropdownlist .k-icon {
    color: #3366cc !important;
}

.k-dropdownlist:hover {
    /*border: 1pt solid #3366CC !important;*/
}

.k-dropdownlist:focus {
    outline: none;
    outline-offset: 2px !important;
    border-radius: 10px !important;
    border: 1.5pt solid #3366CC !important;
}

    .k-dropdownlist--valid, .k-dropdownlist:focus.k-dropdownlist--valid {
        border: 1.5pt solid #068460 !important;
    }

        .k-dropdownlist--valid .k-input-value-text {
            color: #068460 !important;
        }

.k-disabled .k-input-value-text {
    color: #a4a4a4 !important;
}

.k-dropdownlist--invalid, .k-dropdownlist:focus.k-dropdownlist--invalid {
    border: 1.5pt solid #A80521 !important;
}

    .k-dropdownlist--invalid .k-input-value-text {
        color: #A80521 !important;
    }

.k-input-value-text {
    font-family: 'Work Sans', sans-serif !important;
    font-weight: 400;
    font-size: 16px !important;
    color: #4B4B4B !important;
}

.k-animation-container-shown {
    font-family: 'Work Sans', sans-serif !important;
    font-weight: 400;
    font-size: 16px !important;
    color: rgba(4,106,116,1) !important;
    margin-top: 5px !important;
    border: 1pt solid #3366CC !important;
    border-radius: 5px !important;
}

.k-list-item.k-selected:hover, .k-selected.k-list-optionlabel:hover, .k-list-item.k-selected.k-hover, .k-selected.k-hover.k-list-optionlabel {
    background-color: #3366CC !important;
}

.k-list-item.k-selected, .k-selected.k-list-optionlabel {
    background-color: #3366CC !important;
}

.k-list-item:hover {
    background-color: #e4ecfc !important;
    box-shadow: 0px 4px 0px rgba(51, 102, 204, 0.14) !important;
}

.k-list-content {
    scrollbar-color: #004884 !important;
    scrollbar-width: thin !important;
}

/*#endregion */

/*#region UploadFileStyle*/

.k-upload .k-upload-files {
    background-color: #f6f8f9;
    border-radius: 10px;
    margin: 6px;
}

.k-upload-button-wrap button {
    text-decoration: none;
    padding: 10px 25px 10px 25px;
    color: #ffffff;
    background-color: #3366CC !important;
    border: 1px solid #3366CC;
    border-radius: 10px 0px 0px 10px !important;
    font-size: 1rem !important;
    font-family: Work Sans, sans-serif !important;
    font-weight: 400 !important;
}

    .k-upload-button-wrap button:hover {
        color: white;
        background-color: #004884 !important;
        border: 1px solid #004884 !important;
    }

.k-upload {
    border-radius: 10px !important;
}

    .k-upload .k-dropzone {
        padding: 0px !important;
        border-radius: 10px !important;
    }

        .k-upload .k-dropzone .k-dropzone-hint {
            color: transparent !important;
            position: relative !important;
        }

.k-dropzone-hint::before {
    font-family: 'Work Sans' !important;
    content: "Arrastra y suelta los archivos aqui";
    color: #000;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
}

.k-upload .k-upload-button {
    min-width: 14em !important;
}

.k-upload-button .k-button-text {
    color: transparent !important;
    position: relative !important;
    width: 100%;
}

    .k-upload-button .k-button-text::before {
        font-family: 'Work Sans' !important;
        content: "Seleccionar archivo";
        color: white;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        text-align: center;
    }

.k-upload ul {
    margin: 6px !important;
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center;
    border: none !important;
}

.k-upload li {
    font-family: 'Work Sans' !important;
    font-weight: 400 !important;
    font-size: 14px !important;
    margin: 6px !important;
    border: 1pt solid #eaf0fc !important;
    background-color: var(--white);
    border-radius: 10px !important;
    width: 47% !important;
    max-height: 68px !important;
    padding: 7px !important;
}

    .k-upload li:hover {
        background-color: var(--bluedark);
        color: var(--white);
    }

.k-upload .k-file-icon-wrapper {
    color: var(--bluedark) !important;
}

.k-upload li:hover .k-file-icon-wrapper {
    color: var(--white) !important;
}

.k-upload li .k-button-icon {
    color: var(--bluedark) !important;
}

.k-upload li:hover .k-button-icon {
    color: var(--white) !important;
}

.k-svg-icon {
    width: 37px !important;
    height: 37px !important;
}

.k-file-invalid {
    color: darkred;
}

/*#endregion*/

/*#region TelerikWindowStyle*/

body.dark-contrast .k-window {
    background-color: transparent !important;
}

body.dark-contrast .k-window {
    border: 2px solid #535353 !important;
}

body.dark-contrast .k-window-titlebar {
    background-color: #141414 !important;
}

.k-window-content {
    border-radius: 0px 0px 5px 5px !important;
}

body.dark-contrast .k-window-content {
    background-color: #141414 !important;
}

/*#endregion*/

/*#region TelerikCheckboxStyle*/

.k-checkbox {
    border-width: 3px !important;
    border-color: #3366cc !important;
    background-color: transparent !important;
}

    .k-checkbox:checked, .k-checkbox.k-checked {
        border-color: #3366cc !important;
        color: var(--kendo-color-on-primary, #ffffff);
        background-color: #3366cc !important;
    }

/*#endregion*/

/*#region NotificationsStyle */
div .k-window-content--position .k-window-content {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.notificationModal {
    border-right-width: 0px !important;
    border-left-width: 0px !important;
}

.notificationModal--Error {
    border-top: 12px solid var(--color-Error) !important;
}

.notificationModal--Success {
    border-top: 12px solid var(--color-Success) !important;
}

.notificationModal--Information {
    border-top: 12px solid var(--color-Information) !important;
}

.notificationModal--Warning {
    border-top: 12px solid var(--color-Warning) !important;
}

.modal-noti {
    min-height: 410px !important;
}
/*#endregion */

/*#region NotificationsStyle */
.checkBoxText {
    font-size: 15px;
    font-family: 'Work Sans' !important;
}
/*#endregion */

/*#region k-card*/
body.dark-contrast .k-card {
    background-color: var(--white) !important;
}
/*#endregion*/

/*#region k-grid*/

.k-button-solid-base {
    border-color: transparent !important;
    color: var(--bluedark) !important;
    background-color: transparent !important;
    outline: none;
}

body.dark-contrast .k-button-solid-base {
    color: var(--greenDark) !important;
}

.k-button-solid-base:focus, .k-button-solid-base.k-focus {
    box-shadow: inset 0 0 0 0 !important;
}

.k-grid td, .k-grid .k-table-td {
    text-align: center !important;
}

.k-grid .k-grid-header .k-table-th {
    text-align: center;
    vertical-align: middle !important;
}

body.dark-contrast .k-grid-header {
    border-color: rgb(60 69 0) !important;
    background-color: #1b1b1b !important;
}

.k-grid {
    border-radius: 21px !important;
    padding: 1px 1px 27px 1px !important;
}

body.dark-contrast .k-grid {
    background-color: #313131 !important;
}

.k-grid-header {
    border-radius: 20px 20px 0px 0px !important;
}

.k-grid .k-table-thead {
    height: 57px !important;
}

.k-table-thead {
    background-color: transparent !important;
}

body.dark-contrast .k-grid .k-table-th, body.dark-contrast .k-grid td, body.dark-contrast .k-grid .k-table-td {
    color: white !important;
}

body.dark-contrast .k-grid td, body.dark-contrast .k-grid .k-table-td {
    border-color: rgb(60 69 0) !important;
}

/*#endregion*/

/*#region k-tab*/
.k-link {
    font-size: 15px;
    font-family: 'Work Sans' !important;
}

.k-tabstrip-top > .k-tabstrip-items-wrapper .k-item {
    border-radius: 8px 8px 0px 0px !important;
}

.k-tabstrip-items-wrapper .k-item:focus, .k-tabstrip-items-wrapper .k-item.k-focus {
    box-shadow: inset 0 0 0 0 !important;
}

.k-tabstrip-items-wrapper .k-item.k-active {
    border-top: 7px solid var(--bluedark) !important;
}

body.dark-contrast .k-tabstrip-items-wrapper .k-item.k-active {
    border-top: 7px solid #6e7d00 !important;
}

.k-tabstrip-items-wrapper .k-item:hover.k-active {
    background-color: var(--white) !important;
}

.k-tabstrip-items-wrapper .k-item.k-active .k-link {
    background-color: var(--white) !important;
    color: var(--bluedark) !important;
}

body.dark-contrast .k-tabstrip-items-wrapper .k-item.k-active .k-link {
    background-color: #1c1c1c !important;
}

.k-tabstrip-items-wrapper .k-item {
    color: #9f9f9f !important;
}

body.dark-contrast .k-tabstrip-items-wrapper .k-item {
    color: #7e7e7e !important;
}

.k-tabstrip-items .k-item {
    background-color: #f9f9f9 !important;
}

body.dark-contrast .k-tabstrip-items .k-item {
    background-color: #414141 !important;
}

.k-tabstrip-items-wrapper .k-item:hover, .k-tabstrip-items-wrapper .k-item.k-hover {
    color: var(--white) !important;
    background-color: var(--bluedark) !important;
}

body.dark-contrast .k-tabstrip-content, body.dark-contrast .k-tabstrip > .k-content {
    background-color: #1c1c1c !important;
}

/*#endregion*/

/*#region Page Load Component */
.cdspinner {
    position: fixed;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255) 100%); /*, url(../images/background.jpg) center center no-repeat;*/
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 90000;
}

.logocdspinner {
    position: fixed;
    background-color: rgba(255,255,255,0);
    width: 70px;
    height: 70px;
    top: 50%;
    left: 50%;
    margin-top: -35px;
    margin-left: -35px;
    z-index: 90001;
}

    .logocdspinner:before {
        content: "";
        display: block;
        position: relative;
        width: 45px;
        height: 45px;
        background: #1ccbf3;
        opacity: 0.7;
        border-bottom-left-radius: 30px;
        border-top-right-radius: 30px;
        -ms-transform: rotate(20deg);
        -webkit-transform: rotate(20deg);
        transform: rotate(20deg);
        left: 23px;
        top: 8px;
    }

    .logocdspinner:after {
        content: "";
        display: block;
        position: relative;
        width: 45px;
        height: 45px;
        background: #94d646;
        opacity: 0.7;
        border-bottom-left-radius: 30px;
        border-top-right-radius: 30px;
        -ms-transform: rotate(-20deg);
        -webkit-transform: rotate(-20deg);
        transform: rotate(-20deg);
        top: -22px;
        left: 8px;
    }

.spinner1 {
    position: fixed;
    width: 100px;
    height: 100px;
    top: 50%;
    left: 50%;
    margin-top: -50px;
    margin-left: -50px;
    border-radius: 50px;
    -webkit-animation: 2s rotate360 linear infinite reverse;
    -moz-animation: 2s rotate360 linear infinite reverse;
    -o-animation: 2s rotate360 linear infinite reverse;
    animation: 2s rotate360 linear infinite reverse;
    z-index: 90000;
}

    .spinner1:after {
        content: '';
        display: block;
        position: relative;
        top: -47px;
        left: 36px;
        width: 26px;
        height: 26px;
        border-radius: 13px;
        background-color: rgba(4,106,116,1);
        z-index: 90002;
    }

    .spinner1:before {
        content: '';
        display: block;
        position: relative;
        top: 38px;
        left: -21px;
        width: 20px;
        height: 20px;
        border-radius: 10px;
        background-color: rgba(4,106,116,1);
        z-index: 90002;
    }

.spinner2 {
    position: fixed;
    width: 100px;
    height: 100px;
    top: 50%;
    left: 50%;
    margin-top: -50px;
    margin-left: -50px;
    -webkit-animation: 2s rotate360 linear infinite reverse;
    -moz-animation: 2s rotate360 linear infinite reverse;
    -o-animation: 2s rotate360 linear infinite reverse;
    animation: 2s rotate360 linear infinite reverse;
    z-index: 90000;
}

    .spinner2:after {
        content: '';
        display: block;
        position: relative;
        top: 96px;
        left: 43px;
        width: 14px;
        height: 14px;
        border-radius: 7px;
        background-color: rgba(4,106,116,1);
        z-index: 90002;
    }

    .spinner2:before {
        content: '';
        display: block;
        position: relative;
        top: 46px;
        left: 105px;
        width: 8px;
        height: 8px;
        border-radius: 4px;
        background-color: rgba(4,106,116,1);
        z-index: 90002;
    }

.spinner3 {
    position: fixed;
    width: 100px;
    height: 100px;
    top: 50%;
    left: 50%;
    margin-top: -50px;
    margin-left: -50px;
    -webkit-animation: 2s rotate360 linear infinite reverse;
    -moz-animation: 2s rotate360 linear infinite reverse;
    -o-animation: 2s rotate360 linear infinite reverse;
    animation: 2s rotate360 linear infinite reverse;
    z-index: 90000;
}

    .spinner3:after {
        content: '';
        display: block;
        position: relative;
        top: -37px;
        left: 5px;
        width: 24px;
        height: 24px;
        border-radius: 12px;
        background-color: rgba(4,106,116,1);
        z-index: 90002;
    }

    .spinner3:before {
        content: '';
        display: block;
        position: relative;
        top: 10px;
        left: -15px;
        width: 22px;
        height: 22px;
        border-radius: 11px;
        background-color: rgba(4,106,116,1);
        z-index: 90002;
    }

.spinner4 {
    position: fixed;
    width: 100px;
    height: 100px;
    top: 50%;
    left: 50%;
    margin-top: -50px;
    margin-left: -50px;
    -webkit-animation: 2s rotate360 linear infinite reverse;
    -moz-animation: 2s rotate360 linear infinite reverse;
    -o-animation: 2s rotate360 linear infinite reverse;
    animation: 2s rotate360 linear infinite reverse;
    z-index: 90000;
}

    .spinner4:after {
        content: '';
        display: block;
        position: relative;
        top: 56px;
        left: -12px;
        width: 18px;
        height: 18px;
        border-radius: 9px;
        background-color: rgba(4,106,116,1);
        z-index: 90002;
    }

    .spinner4:before {
        content: '';
        display: block;
        position: relative;
        top: 94px;
        left: 11px;
        width: 16px;
        height: 16px;
        border-radius: 8px;
        background-color: rgba(4,106,116,1);
        z-index: 90002;
    }

.spinner5 {
    position: fixed;
    width: 100px;
    height: 100px;
    top: 50%;
    left: 50%;
    margin-top: -50px;
    margin-left: -50px;
    -webkit-animation: 2s rotate360 linear infinite reverse;
    -moz-animation: 2s rotate360 linear infinite reverse;
    -o-animation: 2s rotate360 linear infinite reverse;
    animation: 2s rotate360 linear infinite reverse;
    z-index: 90000;
}

    .spinner5:after {
        content: '';
        display: block;
        position: relative;
        top: 86px;
        left: 74px;
        width: 12px;
        height: 12px;
        border-radius: 6px;
        background-color: rgba(4,106,116,1);
        z-index: 90002;
    }

    .spinner5:before {
        content: '';
        display: block;
        position: relative;
        top: 76px;
        left: 96px;
        width: 10px;
        height: 10px;
        border-radius: 5px;
        background-color: rgba(4,106,116,1);
        z-index: 90002;
    }

.spinner6 {
    position: fixed;
    width: 100px;
    height: 100px;
    top: 50%;
    left: 50%;
    margin-top: -50px;
    margin-left: -50px;
    -webkit-animation: 2s rotate360 linear infinite reverse;
    -moz-animation: 2s rotate360 linear infinite reverse;
    -o-animation: 2s rotate360 linear infinite reverse;
    animation: 2s rotate360 linear infinite reverse;
    z-index: 90000;
}

    .spinner6:after {
        content: '';
        display: block;
        position: relative;
        top: 15px;
        left: 100px;
        width: 6px;
        height: 6px;
        border-radius: 3px;
        background-color: rgba(4,106,116,1);
        z-index: 90002;
    }

    .spinner6:before {
        content: '';
        display: block;
        position: relative;
        top: -4px;
        left: 80px;
        width: 4px;
        height: 4px;
        border-radius: 2px;
        background-color: rgba(4,106,116,1);
        z-index: 90002;
    }
/*#endregion */

/*#region z-index*/

#view-pdf > .k-dialog-wrapper {
    z-index: 10004 !important;
}

/*#endregion*/

@media (max-width: 1060px) {
    .k-upload li {
        width: 100% !important;
        max-height: 68px !important;
    }
}

@media (max-width: 987px) {
    .p-50 {
        padding: 25px !important;
    }
}

@media (max-width: 670px) {
    .k-dropzone-hint::before {
        content: "\f5cb";
        font-family: "Font Awesome 6 Free" !important;
        font-weight: 900;
    }

    .k-upload-button .k-button-text::before {
        content: "\e09a";
        font-family: "Font Awesome 6 Free" !important;
        font-weight: 900;
    }

    .k-upload-button-wrap button {
        border-radius: 10px !important;
    }

    .k-dropzone {
        display: none;
    }
}

@media (max-width: 524px) {
    .content.px-4 {
        padding: 0px !important;
    }
}

@media (max-width: 411px) {
    .k-upload .k-upload-button {
        min-width: 11em !important
    }
}

@media (max-width: 366px) {
    .p-50 {
        padding: 2px !important;
    }
}