﻿@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300&display=swap');
@import url('https://fonts.googleapis.com/css?family=Ubuntu:400,500,500i,700,700i,900&display=swap');

:root {
    --blue-dark: #0B3B91;
    --blue-main: #0F5CCF;
    --cyan: #11B7D9;
    --cyan-soft: #20C6B7;
    --text-dark: #14213D;
    --text-muted: #6B7280;
    --border: #D8E1EC;
    --bg-light: #F5FAFF;
    --white: #FFFFFF;
}
@media print {
    .print-div {
        background-color: white;
        height: 100%;
        width: 100%;
        position: relative !important;
        top: 0;
        left: 0;
        margin: 0;
        padding: 15px;
        font-size: 14px;
  line-height: 18px;
    }

    /* Estilos específicos para impresión de tabla de amortización */
    #tablaAmortizacion {
      page-break-inside: auto;
        overflow: visible !important;
    }

    #tablaAmortizacion table {
      width: 100% !important;
        font-size: 9px;
        border-collapse: collapse;
    }

    #tablaAmortizacion th,
    #tablaAmortizacion td {
        border: 1px solid #000;
        padding: 0.2rem !important;
        font-size: 9px;
    }

    /* Ocultar elementos innecesarios en impresión */
    .no-print,
    .buttons-container,
    .btn,
    button,
    .modal,
    .alert {
        display: none !important;
    }

    .card-header {
        background-color: #f0f0f0 !important;
        border: 1px solid #000 !important;
        padding: 0.5rem !important;
  page-break-after: avoid;
    }

    .card {
        box-shadow: none !important;
        border: none !important;
  page-break-inside: avoid;
    }

  .card-body {
   padding: 0.5rem !important;
    }

    /* Asegurar que todos los elementos sean visibles */
    input,
    select,
  .label-disabled {
        border: none !important;
        background-color: transparent !important;
   padding: 0.2rem !important;
        margin-bottom: 0.2rem !important;
        width: auto !important;
        min-width: auto !important;
    }

    label {
      font-weight: 600;
        margin-bottom: 0.1rem !important;
    }

    /* Configuración de página */
    @page {
        size: landscape;
margin: 1cm;
    }

    body {
        print-color-adjust: exact;
        -webkit-print-color-adjust: exact;
    }

    /* Asegurar que las columnas se vean bien */
    .col-12,
    .col-md-6 {
        page-break-inside: avoid;
  }

    .p-2 {
    padding: 0.5rem !important;
  }

    .table-responsive {
        overflow: visible !important;
      max-width: 100% !important;
    }

 .text-end {
      text-align: right !important;
    }
}

html, body {
    font-family: 'Ubuntu', sans-serif !important;
    font-size: 14px!important;
    color: #343434!important;
    background-color: #f7f6f6!important;
    overflow-x: hidden;
    /*Opcion que permite que se vean los colores en el print-div 
        (en la pantalla de imprimir colores en pantalla)*/
    -webkit-print-color-adjust: exact;
}

.card {
    border: none !important;
}

.card-body {
    padding: 3rem!important;
}

a, .btn-link {
    color: #0366d6;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

app {
    position: relative;
    display: flex;
    flex-direction: column;
}

.top-row {
    height: 6rem;
    display: flex;
    align-items: center;
    z-index: 3;
}

.top-row-xs {
    height: auto;
    align-items: center;
    z-index: 2;
}

#helpToggle-xs {
    position: absolute;
    right: 0;
    top: 1rem;
}

.main {
    flex: 1;
    padding-bottom: 5rem;
}

    .main .top-row {
        background: linear-gradient(90deg, #0B3B91 0%, #0F5CCF 42%, #11B7D9 100%);
        justify-content: flex-end;
    }

        .main .top-row > a, .main .top-row .btn-link {
            white-space: nowrap;
            margin-left: 1.5rem;
        }

        .main .top-row a:first-child {
            overflow: hidden;
            text-overflow: ellipsis;
        }


    .main .top-row-xs {
        background: #3fa3c9;
        justify-content: flex-end;
    }

        .main .top-row-xs > a, .main .top-row-xs .btn-link {
            white-space: nowrap;
            margin-left: 1.5rem;
        }

        .main .top-row-xs a:first-child {
            overflow: hidden;
            text-overflow: ellipsis;
        }

.sidebar {
    background: white;
    color: #fff;
    transition: all 0.1s;
}

    .sidebar img {
        margin-left: auto;
        margin-right: auto;
    }

    .sidebar.active img {
        margin: 0;
        margin-right: 1rem;
    }

    .sidebar.active {
        width: 230px;
    }

        .sidebar.active span {
            display: block;
            color: #555;
            line-height: 1;
        }

    .sidebar .navbar-header i {
        font-size: 1.5rem;
        color: white;
    }

    .sidebar .navbar-header {
        text-align: center;
        background: #093a92;
        position: sticky;
        z-index: 6;
        top: 0;
    }


    .sidebar .navbar-brand {
        font-size: 1.1rem;
    }

    .sidebar .oi {
        width: 2rem;
        font-size: 1.1rem;
        vertical-align: text-top;
        top: -2px;
    }

    .sidebar .nav-item {
        padding-bottom: 0.5rem;
    }


        .sidebar .nav-item:last-of-type {
            padding-bottom: 1rem;
        }

        .sidebar .nav-item a {
            border-radius: 4px;
            height: auto;
            display: flex;
            align-items: center;
            line-height: 2rem;
            color: #555;
            padding: 1rem;
            cursor:pointer;
        }
        .sidebar .nav-item a:hover span {
            color:#3fa3c9;
        }

    .sidebar:not(.active) .nav-item a.nav-link-top {
        pointer-events: none;
    }

    .sidebar.active .footer-label {
        display: block;
    }

    .sidebar.active .footer-image {
        display: block;
        margin: auto;
        margin-bottom: 1rem;
    }

#sidebar.active .settings-collapse {
    display: flex;
    flex-direction: row;
}

#sidebar:not(.active) .settings-collapse {
    display: flex;
    flex-direction: column;
}

    #sidebar:not(.active) .settings-collapse img {
        margin-bottom: 1rem !important;
    }

#sidebar.active .ml-center {
    margin-left: auto;
}

#sidebar.active .dropdown-content.settings {
    left: -300%;
    bottom: 25px;
}

#sidebar.active .mr-center {
    margin-right: auto;
}


.sidebar.active .sibebar-overflow {
    overflow: auto;
    max-height: 70vh;
}
@media(max-height:750px){

    .sidebar .sibebar-overflow {
        overflow: auto;
        max-height: 70vh;
    }
}
#sidebar:not(.active) .sub-menu {
    position: absolute;
    left: 100%;
    top: 0%;
    width: max-content;
    min-width: 190px;
    background: white;
    padding-top: 1rem;
    padding-bottom: 1rem;
    border: 1px solid #f7f7f7;
    border-left: 0px;
    box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 15%);
    border-top-right-radius: 1rem;
    border-bottom-right-radius: 1rem;
    display: none;
}

.sidebar:not(.active) .sub-menu li a span {
    display: block;
    color: #555;
}

.sidebar:not(.active) .sub-menu li a:hover span {
    color: #00A79D;
}

.sidebar:not(.active) .sub-menu li a {
    height: 1.3rem;
}

.sidebar:not(.active) .nav-item:hover div {
    display: block !important;
}
/* width */
.sibebar-overflow::-webkit-scrollbar {
    width: 10px;
}

/* Track */
.sibebar-overflow::-webkit-scrollbar-track {
    background: #3cc5bd;
}

/* Handle */
.sibebar-overflow::-webkit-scrollbar-thumb {
    background: #0f5a96;
}

    /* Handle on hover */
    .sibebar-overflow::-webkit-scrollbar-thumb:hover {
        background: #0f5a96;
    }

.sub-menu {
    background-color: #f9f9f9;
    transition: all 0.3s;
    padding: 0.5rem;
}
/*right bar style*/
.right-bar-wrapper {
    display: flex;
    flex-direction: row;
}

.right-bar {
    width: 150px;
    height: 100vh;
    position: sticky;
    top: 0;
    transition: all 0.1s;
    z-index: 2;
    padding: 1rem;
    background: white;
}

    .right-bar ul {
        list-style: none;
    }

    .right-bar h6 {
        text-align: center;
        border-bottom: 1px solid #ddd;
        padding-bottom: .5rem;
        padding-top: .5rem;
    }

    .right-bar.active {
        padding: 0;
        width: 0;
    }

        .right-bar.active h6 {
            display: none;
        }

        .right-bar.active ul {
            display: none;
        }

        .right-bar.active #rightbarCollapse {
            left: -24px;
        }

#rightbarCollapse {
    position: absolute;
    left: -20px;
    background: white;
    padding: 0.5rem;
    border-radius: .5rem;
    top: 5%;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}

    #rightbarCollapse:hover {
        cursor: pointer;
    }
/*right bar style*/
.footer-label {
    color: white;
    text-align: center;
    width: 100%;
    display: none;
    float: left;
    margin-top: 1rem;
}

.footer-image {
    display: none;
}

.footer-container {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 1rem;
    background: white;
    border-right: 1px solid #efefef;
}

.cursor-pointer:hover {
    cursor: pointer;
}

.content {
    padding-top: 3rem;
}

.dropdown:hover .settings {
    display: block;
}

.dropdown-content.settings {
    display: none;
    position: absolute;
    left: 100%;
    background: white;
    box-shadow: 0px 2px 2px rgb(0 0 0 / 30%);
    z-index: 5;
    text-align: left;
    padding: 19px;
    border-radius: 5px;
    bottom: 0;
}

    .dropdown-content.settings label {
        color: #555;
    }

.dropdown-content-right.settings {
    display: none;
    position: absolute;
    right: 0;
    background: white;
    box-shadow: 0px 2px 2px rgb(0 0 0 / 30%);
    z-index: 5;
    text-align: left;
    padding: 19px;
    border-radius: 5px;
    bottom: 0;
}

.dropdown-content-bottom.settings {
    display: none;
    position: absolute;
    background: white;
    box-shadow: 0px 2px 2px rgb(0 0 0 / 30%);
    z-index: 2;
    text-align: left;
    padding: 5px;
    border-radius: 5px;
}

.navbar-toggler {
    background-color: rgba(255, 255, 255, 0.1);
}

.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;
    }

.mh-80vh {
    min-height: 80vh;
}

.mh-50vh {
    min-height: 50vh;
}

.mh-30vh {
    min-height: 30vh;
}
.mh-20vh {
    min-height: 22vh;
}
/*Width controls, Label, Grid and Inputs*/
.w-795px {
    width: 795px !important;
}

.w-575px {
    width: 575px !important;
}
.w-554px {
    width: 554px !important;
}
.w-477px {
    width: 477px !important;
}
.w-473px {
    width: 473px !important;
}
.w-435px {
    width: 435px !important;
}

.w-475px {
    width: 475px !important;
}

.w-405px {
    width: 405px !important;
}

.w-467px {
    width: 467px !important;
}

.w-430px {
    width: 430px !important;
}
.w-387px {
    width: 387px !important;
}
.w-380px {
    width: 380px !important;
}

.w-350px {
    width: 350px !important;
}
.w-327px {
    width: 327px !important;
}
.w-678px {
    width: 687px !important;
}

.w-325px {
    width: 325px !important;
}

.w-310px {
    width: 310px !important;
}
.w-333px {
    width: 333px !important;
}
.w-290px {
    width: 290px !important;
}
.w-273px {
    width: 273px !important;
}
.w-270px {
    width: 270px !important;
}
.w-267px {
    width: 267px !important;
}
.w-265px {
    width: 265px !important;
}
.w-250px {
    width: 250px !important;
}

.w-230px {
    width: 230px !important;
}
.w-227px {
    width: 227px !important;
}
.w-215px {
    width: 215px !important;
}

.w-235px {
    width: 235px !important;
}

.w-233px {
    width: 233px !important;
}

.w-200px {
    width: 200px !important;
}
.w-195px {
    width: 195px !important;
}

.w-193px {
    width: 193px !important;
}
.w-190px {
    width: 190px !important;
}

.w-185px {
    width: 185px !important;
}

.w-175px {
    width: 175px !important;
}

.w-160px {
    width: 160px !important;
}

.w-155px {
    width: 155px !important;
}

.w-145px {
    width: 145px !important;
}
.w-143px {
    width: 143px !important;
}

.w-135px {
    width: 135px !important;
}

.w-130px {
    width: 130px !important;
}

.w-137px {
    width: 136px !important;
}

.w-125px {
    width: 125px !important;
}
.w-121px {
    width: 121px !important;
}

.w-120px {
    width: 120px !important;
}

.w-110px {
    width: 110px !important;
    min-width: 110px !important;
}
.w-100px {
    width: 100px !important;
    min-width: 100px !important;
}

.w-95px {
    width: 95px !important;
}

.w-90px {
    width: 90px !important;
    min-width: 90px !important;
}

.w-75px {
    width: 75px !important;
}

.w-60px {
    min-width: 60px !important;
    max-width: 60px !important;
}

.w-150px {
    width: 150px !important;
}

.label-120px {
    width: 120px;
}

.label-130 {
    width: 130px;
}

.label-125 {
    width: 125px;
}

.label-145px {
    width: 145px;
}

.label-150px {
    width: 150px;
}

.label-175px {
    width: 175px;
}

.label-185px {
    width: 185px;
}

.label-180px {
    width: 180px;
}

.label-205px {
    width: 205px;
}

.label-230px {
    width: 230px;
}

.label-220px {
    width: 220px;
}

.label-245px {
    width: 245px;
}

.label-200px {
    width: 200px;
}

.offset-210px {
    margin-left: 210px;
}

.offset-200px {
    margin-left: 200px;
}

.offset-195px {
    margin-left: 195px;
}

.offset-185px {
    margin-left: 185px;
}
.offset-180px {
    margin-left: 180px;
}

.offset-175px {
    margin-left: 175px;
}


.offset-150px {
    margin-left: 150px;
}

.offset-130px {
    margin-left: 130px;
}


.checkbox-list {
    line-height: 1;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 7px;
}

    .checkbox-list > tbody > tr > td > input[type='checkbox'] {
        margin-right: 0.5rem !important;
    }

input[type='checkbox'] {
    margin-top: 2px !important;
    margin-right: 1px;
    position: relative;
    cursor: pointer;
    height: min-content;
}

    input[type='checkbox']:after {
        content: "";
        vertical-align: middle;
        text-align: center;
        line-height: 13.8px;
        position: absolute;
        cursor: pointer;
        height: 15px;
        width: 15px;
        left: -1px;
        top: 0px;
        font-size: 15px;
        border: 1px solid #ddd;
        border-radius: 3px;
        background-color: white;
        border: 2px solid #999999;
        border-radius: 3px;
    }

    input[type='checkbox']:checked:after {
        background: #0D93C4;
        font-size: 11px;
        color: white;
        border: 1px solid #0D93C4;
        border-radius: 3px;
    }

input[type='radio'] {
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeSpeed;
    margin-top: 0px !important;
    margin-right: 1px;
    float: left;
    position: relative;
    cursor: pointer;
}

    input[type='radio']:after {
        content: "";
        vertical-align: middle;
        text-align: center;
        line-height: 13.8px;
        position: absolute;
        cursor: pointer;
        height: 15px;
        width: 15px;
        left: -1px;
        top: 0px;
        font-size: 15px;
        border: 1px solid #ddd;
        border-radius: 3px;
        background-color: white;
        border: 1px solid #D6D6D6;
        border-radius: 20px;
    }

    input[type='radio']:checked:after {
        background: #0D93C4;
        content: '•';
        font-size: 22px;
        color: white;
        border: 1px solid #0D93C4;
        border-radius: 20px;
    }

td input[type=radio] {
    margin-right: 5px;
}

[type="radio"]:not(:checked),
[type="radio"]:checked {
    position: absolute;
    left: -9999px;
    opacity: 0;
}

    [type="radio"]:not(:checked) + label,
    [type="radio"]:checked + label {
        position: relative;
        padding-left: 25px;
        cursor: pointer;
        display: inline-block;
        height: 25px;
        line-height: 25px;
        font-size: inherit;
        transition: .28s ease;
        -khtml-user-select: none;
        user-select: none;
    }

[type="radio"] + label:before,
[type="radio"] + label:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    margin: 4px;
    width: 16px;
    height: 16px;
    z-index: 0;
    transition: .28s ease;
}

[type="radio"]:not(:checked) + label:before,
[type="radio"]:not(:checked) + label:after,
[type="radio"]:checked + label:before,
[type="radio"]:checked + label:after,
[type="radio"].with-gap:checked + label:before,
[type="radio"].with-gap:checked + label:after {
    border-radius: 50%;
}

[type="radio"]:not(:checked) + label:before,
[type="radio"]:not(:checked) + label:after {
    border: 2px solid #5a5a5a;
}

[type="radio"]:not(:checked) + label:after {
    transform: scale(0);
}

[type="radio"]:checked + label:before {
    border: 2px solid transparent;
}

[type="radio"]:checked + label:after,
[type="radio"].with-gap:checked + label:before,
[type="radio"].with-gap:checked + label:after {
    border: 2px solid #3fa3c9;
}

[type="radio"]:checked + label:after,
[type="radio"].with-gap:checked + label:after {
    background-color: #3fa3c9;
}

[type="radio"]:checked + label:after {
    transform: scale(1.02);
}


[type="radio"].tabbed:focus + label:before {
    box-shadow: 0 0 0 10px rgba(0, 0, 0, 0.1);
}

[type="radio"].with-gap:disabled:checked + label:before {
    border: 2px solid rgba(0, 0, 0, 0.26);
}

[type="radio"].with-gap:disabled:checked + label:after {
    border: none;
    background-color: rgba(0, 0, 0, 0.26);
}

[type="radio"]:disabled:not(:checked) + label:before,
[type="radio"]:disabled:checked + label:before {
    background-color: transparent;
    border-color: rgba(0, 0, 0, 0.26);
}

[type="radio"]:disabled + label {
    color: rgba(0, 0, 0, 0.26);
}

[type="radio"]:disabled:not(:checked) + label:before {
    border-color: rgba(0, 0, 0, 0.26);
}

[type="radio"]:disabled:checked + label:after {
    background-color: rgba(0, 0, 0, 0.26);
    border-color: #BDBDBD;
}
/*/Width controls, Label, Grid and Inputs*/

/*Table style*/
.table, .table-crop {
    color: #555 !important;
}

    .table td {
        padding-left: 5px;
        border-top: 0px solid transparent;
        padding: 0 0.45rem !important;
        z-index: 0;
    }

        .table td:not(.va-middle) {
            vertical-align: middle !important;
        }
        .table td.p-0{
            padding:0px!important;
        }
        .table-crop td, .table-crop th {
            padding: 0.25rem;
            padding-left: 5px;
        }

    .table td, .table th {
        padding: 0.25rem;
        padding-left: 5px;
        color: #343434 !important;
    }

.va-middle {
    vertical-align: middle;
}

.border-radius-left {
    border-top-left-radius: 7px;
}

.border-radius-right {
    border-top-right-radius: 7px;
}

.table tr th:last-child {
    border-top-right-radius: 7px;
}

.table tr th:first-child {
    border-top-left-radius: 7px;
}

.table-crop th {
    padding: .45rem;
    color: #3c3c3c;
    font-size: 0.9rem;
    background-color: #ececec !important;
    vertical-align: middle !important;
    font-weight: 400;
    border-bottom: 0px solid #dee2e6 !important;
}

.table th {
    padding: .45rem;
    color: #000000;
    font-size: 1rem;
    background-color: #d7d7d7 !important;
    border-top: none;
    vertical-align: middle !important;
    border-right: 2px solid white;
    font-weight: 400;
    border-bottom: 0px solid #dee2e6 !important;
}

    .table th > a {
        color: #212529;
        text-decoration: none;
    }

th.rotate {
    /* Something you can count on */
    height: auto;
    white-space: nowrap;
}

    th.rotate > div {
        width: 100%;
        writing-mode: vertical-rl;
        position: relative;
        transform: rotate( 180deg );
        height: auto;
    }

.mx-250px.overflow {
    max-height: 250px;
    overflow: auto;
}

.mx-270px.overflow {
    max-height: 270px;
    overflow: auto;
}

.mx-300px.overflow {
    max-height: 300px;
    overflow: auto;
}

.color-pill {
    width: 80px;
    height: 20px;
    display: block;
    border-radius: 5px;
}
/*/Table style*/
/*input style*/
input.naked, select.naked {
    background-color: transparent !important;
    border: 0px !important;
}

    input.naked:hover, select.naked:hover {
        background-color: transparent !important;
        border-bottom: 1px solid #d4d4d4 !important;
    }

input:not([type]),
input[type=text]:not(.naked):not(.grid-textbox):not(.input-line-measure):not(.rz-helper-hidden-accessible > input),
input[type=password],
input[type=email],
input[type=url],
input[type=time],
input[type=date],
input[type=datetime],
input[type=datetime-local],
input[type=tel],
input[type=number],
input[type=search], .label-disabled,
textarea {
    background-color: #fbfbfbba;
    border: 1px solid #d4d4d4;
    border-radius: 5px !important;
    outline: none;
    appearance: none;
    margin: 0;
    height: 2.2rem;
    padding: 5px !important;
    margin-bottom: 5px;
    box-shadow: none;
    box-sizing: border-box;
    color: #333333;
    transition: all 0.3s;
}

select:not(.monthselect,.yearselect,.naked), .rz-dropdown {
    background-color: #fbfbfbba !important;
    border: 1px solid #d4d4d4 !important;
    border-radius: 5px !important;
    outline: none !important;
    appearance: none !important;
    margin: 0 !important;
    height: 2.2rem !important;
    padding: 5px !important;
    margin-bottom: 5px !important;
    box-shadow: none !important;
    box-sizing: border-box !important;
    color: #333333 !important;
    transition: all 0.3s !important;
}

select:not(.monthselect,.yearselect,.naked) {
    background-image: url('../imgs/dropdown-arrow.png') !important;
    background-position: right !important;
    background-repeat: no-repeat !important;
    background-size: 17px !important;
    padding-right: 1.5rem !important;
}

textarea {
    background-color: #fbfbfbba;
    border: 1px solid #d4d4d4 !important;
    border-radius: 5px !important;
    outline: none;
    height: auto;
    width: 100%;
    margin: 0;
    margin-bottom: 0px;
    padding: 5px;
    margin-bottom: 5px;
    box-shadow: none;
    color: #333333;
    transition: all 0.3s;
    appearance: none;
    box-sizing: border-box;
}

    input:read-only:not(.not-readonly), input:disabled, textarea:disabled, select:disabled, .label-disabled {
        background-color: #00000008 !important;
        opacity: .9 !important;
        cursor: not-allowed;
    }
/*form validation styles*/

.valid.modified:not([type=checkbox]) {
    box-shadow: 0 0 0 0.5pt #26b050 !important;
    outline: 0px solid;
}

.invalid {
    box-shadow: 0 0 0 0.5pt red !important;
}

.edit-row .valid.modified:not([type=checkbox]) {
    box-shadow: 0 0 0 0.5pt transparent !important;
}

.edit-row .invalid {
    box-shadow: 0 0 0 0pt transparent !important;
}
.sidebar-toggle-mobile, .sidebar-closer-mobile {
    display: none !important;
}
/*/input style*/
/*media queries*/
@media (max-width: 767.98px) {
    .main .top-row.auth {
        justify-content: space-between;
    }

    .main .top-row a, .main .top-row .btn-link {
        margin-left: 0;
    }

    .sidebar.active {
        display: block;
    }

    .sidebar {
        display: none;
    }
    button.submit-btn{
        width:100%!important;
    }

    .buttons-container {
        margin-top: 1rem;
    }

    .px-0-xs {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
    .p-0-xs{
       padding:0px!important;
    }
    .hide-xs {
        display: none;
    }

    .sidebar .navbar-header {
        display: none;
    }

    .filter-button {
        position: absolute;
        top: 8%;
        right: 15px;
    }

        .filter-button.row3 {
            top: 10%;
        }

        .filter-button.row5 {
            top: 12%;
        }
    .sidebar-toggle-xs {
        text-align: center;
        background: #3fa3c9;
        position: sticky;
        z-index: 6;
        top: 0;
    }
    .sidebar-toggle-xs {
        text-align: center;
        background: #3fa3c9;
        position: sticky;
        z-index: 6;
        top: 0;
    }
        .sidebar-toggle-xs i {
            font-size: 1.5rem;
            color: white;
        }
    div.w-150px, div.w-143px, div.w-155px, select.w-135px, input.w-135px, input.w-155px, input.w-120px, input.w-327px,
    select.w-160px, input.w-160px, div.w-160px, label.w-130px, label.w-137px, span.w-405px, select.w-442px, input.w-110px,
    select.w-110px, input.w-325px, textarea.w-325px, select.w-325px, input.w-185px, div.w-185px, select.w-327px, select.w-185px,
    select.w-419px, select.w-314px, select.w-150px, div.w-110px, div.w-135px, select.w-171px, div.w-171px, select.w-190px, input.w-190px,
    select.w-143px, select.w-350px, span.w-554px, select.w-365px, div.w-179px, select.w-270px, input.w-678px, div.w-120px, input.w-175px,
    select.w-230px, select.w-387px, select.w-200px, div.w-200px, select.w-120px, span.w-110px, span.w-190px, span.w-150px, input.w-150px, span.w-346px, div.w-130px, span.w-325px {
        width: 100% !important;
        min-width: unset !important;
    }
    .sidebar-toggle-mobile, .sidebar-closer-mobile {
        display: block !important;
        margin-right: auto;
        background: transparent !important;
    }
        .sidebar-toggle-mobile button i {
            font-size: 1.5rem;
            color: white;
        }
    button.sidebar-closer-mobile {
        color: #3fa3c9;
        float: right;
        position: absolute;
        right: 10px;
        top: 10px;
        font-size: 1.5rem!important;
        z-index: 2;
    }
    ul.menu{
        position:unset!important;
        width:100%!important;
    }
   div .modal-dialog-60prc .modal-dialog{
        width:100%!important;
    }
    .w-100-xs {
        width: 100% !important;
    }
    }

@media (min-width: 768px) {

    app {
        flex-direction: row;
    }

    .hide-lg {
        display: none;
    }

    .sidebar {
        width: 80px;
        height: 100vh;
        position: sticky;
        top: 0;
        z-index: 2;
    }

        .sidebar a span {
            display: none;
        }

    .main .top-row {
        position: sticky;
        top: 0;
    }

    .content {
        padding-left: 3rem !important;
        padding-right: 3rem !important;
        flex: 1;
    }

    .navbar-toggler {
        display: none;
    }

    .sidebar .collapse {
        display: block;
    }

    .smaller-input {
        width: 70px !important;
    }
}
@media (max-width:1300px) {
    div.mobile-breakpoint__inner {
        flex-direction: column;
        align-items: baseline !important;
    }
        div.mobile-breakpoint__inner label {
            width: 100% !important;
            padding: 0 !important;
        }

    *.mobile-breakpoint__offset {
        margin-left: 0px !important;
    }

    .mobile-breakpoint__inner-buttons {
        align-items: baseline !important;
        flex-direction:row;
    }
    div.mobile-breakpoint__two {
        display: flex;
        width: 100%;
        gap: 2px;
    }
        div.mobile-breakpoint__two input.w-350px, div.mobile-breakpoint__two div.w-350px {
            width: 65% !important;
        }
}
@media (max-width:798px){
    div.mobile-breakpoint {
        flex-direction: column;
        align-items: baseline !important;
    }
}

/*Helpcenter*/
.help-center-toggle {
    font-size: 1.5rem;
    color: white !important;
}

.help-center-container {
    border-left: 1px solid #d2d2d2;
    padding-left: 1rem;
    padding-right: 1rem;
}

    .help-center-container:hover .help-center {
        display: block;
        cursor: pointer;
    }

.help-center {
    display: none;
    position: absolute !important;
    width: max-content;
    top: 75%;
    border-top: 1.15rem solid #3fa3c9;
    border-radius: 5px;
    transition: all 0.1s;
    background: white;
    padding: 1rem;
    padding-top: 1rem;
    right: 1rem;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 5%);
}

    .help-center h6 {
        color: #777;
    }

    .help-center span {
        color: #717171;
    }

    .help-center a {
        color: #3fa3c9;
    }

        .help-center a:hover {
            text-decoration: none;
        }
/*/Helpcenter*/

/*Button style*/
.buttons-container {
    width: auto;
    float: right;
    display: flex;
    flex-wrap: wrap;
}

.print-container {
    top: 100%;
    height: max-content;
}

.main-button {
    color: white !important;
    background-color: #3fa3c9 !important;
    min-width: 8rem !important;
    line-height: 1.2 !important;
    word-break: initial !important;
    border-radius: 5px !important;
}

    .main-button.red {
        background-color: #c82333!important;
    }

.color-red {
    color: #e13c3c!important;
}

.main-button:hover {
    color: white;
}

.btn.with-icon {
    color: #717171;
}

.print-button {
    position: absolute;
    top: 85px;
    right: 0;
    padding: .2rem .5rem;
    background: #e8e8e8;
    border-bottom-left-radius: .5rem;
    border-top-left-radius: .5rem;
}

.btn.focus, .btn:focus {
    box-shadow: none !important;
}
/*Button style*/
/*modal*/
.modal {
    background-color: rgb(0 0 0 / 48%);
}

.modal-90prc {
    max-width: 90%!important;
}

.modal-bg {
    background-color: #555;
    opacity: 0.3;
    z-index: 10005 !important;
}

.main-modal.top-modal {
    z-index: 100220 !important;
}

.modal-bg.top-modal {
    z-index: 100210 !important;
}

.modal-title {
    font-size: 17px;
    font-weight: 700;
    margin-top: 0 !important;
    padding-bottom: 0rem !important;
    padding-top: 0rem !important;
    padding-right: 2rem;
    padding-left: 0rem!important;
    color: #3fa3c9;
}

.modal-footer {
    padding: 2rem;
    padding-top: 1rem;
}

.modal-footer {
    border-top: 1px solid transparent !important;
}

.modal-closer {
    border: none !important;
    background: transparent;
    color: #000;
    opacity: 1;
    top: 10px;
    right: 15px;
    z-index: 100;
}

.modal-header {
    padding: 0;
    border: 0!important;
}

.modal-body {
    padding: 1rem 2rem;
}

.modal-bg {
    background-color: #555;
    opacity: 0.3;
    z-index: 10005 !important;
}

.main-modal {
    background-color: white;
    border-radius: 5px;
    z-index: 10010 !important;
}
/*Modal*/
/*Tab style*/
.main-tab {
    float: left;
    border-bottom: none;
}

    .main-tab .nav-link {
        border-bottom: 2px solid transparent;
        border-radius: 0;
        color: #555;
        font-weight: 500;
        min-width: 150px;
        text-align: center;
        background: transparent;
    }

        .main-tab a.nav-link.active {
            color: #495057;
            border-bottom: 3px solid #3fa3c9 !important;
            background: transparent;
            border-color: transparent;
        }

        .main-tab .nav-link:hover {
            border-color: transparent !important;
            border-bottom: 3px solid #3fa3c9 !important;
        }
/*Tab style*/
/*media queries*/
@media (min-width: 576px) {
    .modal-large > .modal-dialog {
        max-width: 880px;
    }

    .modal-dialog.modal-medium-lg {
        max-width: 750px;
    }

    .modal-dialog.modal-medium {
        max-width: 600px;
    }

    .modal-small > .modal-dialog {
        max-width: 500px;
    }
}


/*modal*/

/* Color para select */
.color-select-box {
    height: 20px;
    width: 20px;
    margin: 6px;
}

.color-box-table {
    height: 10px;
    width: 10px;
    margin-right: 3px;
    display: inline-block;
    border: solid 0.5px #fbfbfbba;
    border-radius: 3px;
    opacity: 0.8;
    z-index: 2;
}

/*media queries*/


@media (min-width: 801px) {
    body {
        height: 100vh;
        overflow-y: scroll;
    }

    html {
        overflow: hidden;
    }
}

@media (max-width: 800px) {
    input.responsive, label.responsive, select.responsive, div.responsive, span.responsive {
        width: 100% !important;
    }

    .sub-menu-i {
        display: none;
    }

    *.responsive {
        width: 100% !important;
    }

    .print-container {
        width: 235px !important;
    }

    .history-toggle {
        top: 45% !important;
    }

    .col-12.row {
        margin: 0;
        padding: 0;
    }

    .main-button {
        min-width: 28vw;
    }

    .buttons-container {
        width: 100%;
    }

    .main-modal {
        width: 95% !important;
    }

    .card.mh-80vh {
        min-height: 100vh;
        float:left;
        width:100%;
    }

    .label-responsive {
        width: 100%;
    }

    .sidebar.active {
        height: 100vh;
        position: fixed;
        z-index: 4;
        width: 255px;
    }

        .sidebar.active .collapse {
            display: block;
        }

    .modal-large > .modal-dialog {
        max-width: 880px;
    }

    .modal-medium > .modal-dialog {
        max-width: 600px;
    }

    .modal-small > .modal-dialog {
        max-width: 500px;
    }

    .pl-15 {
        padding-left: 0px;
    }

    .sibebar-overflow {
        padding-top: 2rem;
        max-height: 80vh !important;
    }

    .main .top-row.auth {
        justify-content: space-between;
    }

    .main .top-row a, .main .top-row .btn-link {
        margin-left: 0;
    }

    select, input[type=text] {
        width: 100% !important;
    }

    .px-0-xs {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
}

@media (min-width: 768px) {
    .app {
        flex-direction: row;
    }

    .sidebar {
        width: 80px;
        height: 100vh;
        position: sticky;
        top: 0;
        z-index: 3;
    }

        .sidebar a span {
            display: none;
        }


    .main .top-row {
        position: sticky;
        top: 0;
    }

    .main .top-row-xs {
        position: sticky;
        top: 0;
    }

    .content {
        padding-left: 3rem !important;
        padding-right: 3rem !important;
        flex: 1;
        height: auto !important;
    }

    .navbar-toggler {
        display: none;
    }

    .sidebar .collapse {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
}

i.red {
    color: #c82333;
}

.color-blue {
    color: #3fa3c9!important;
}

.font-size-lg {
    font-size: 1.5rem;
}

.color-white {
    color: white !important;
}

ul.recent-pages {
    width: auto;
    margin-left: auto;
    margin-right: auto;
}

    ul.recent-pages li {
        border-right: 1px solid #ddd;
    }

        ul.recent-pages li span {
            color: #707070;
        }

        ul.recent-pages li:last-child {
            border-right: 0px;
        }

.font-size-22 {
    font-size: 22px;
}

.chart-title {
    width: max-content;
    float: left;
}

.calendar-icon {
    font-size: 1.2rem;
}

.user-info {
    padding: .8rem;
    display: flex;
    width: max-content;
}

.user-info-xs {
    display: flex;
    margin-top: 1rem;
}

.page-logo-xs {
    width: 100%;
    color: white;
    text-align: center;
    margin-bottom: .5rem;
}

.user-logo {
    width: 40px;
    height: 40px;
    border-radius: 100%;
    object-fit: cover;
}

.page-logo {
    color: white;
    display: flex;
}

    .page-logo span {
        font-size: 0.9rem;
    }

.font-size-20 {
    font-size: 20px;
    font-weight: 100;
}

.color-light-gray {
    color: #c9c9c9;
}

.side-toggle-xs {
    position: absolute;
    color: white;
    font-size: 1.2rem;
    top: 3%;
}

    .side-toggle-xs:hover {
        color: white;
    }

    .side-toggle-xs.active {
        z-index: 5;
        top: 5px;
        position: fixed;
    }

.sub-menu li a.nav-link {
    height: 2rem;
}

.history-toggle {
    color: white;
    position: fixed;
    right: 0;
    background: #17171742;
    padding: .8rem;
    border-bottom-left-radius: 1rem;
    border-top-left-radius: 1rem;
    font-size: 1.1rem;
    top: 22%;
    z-index: 2;
}

    .history-toggle i {
        vertical-align: middle;
        color: white;
    }

.history-container {
    display: none;
    max-height: max-content;
    position: fixed;
    background: white;
    right: 45px;
    top: 22%;
    padding: 1rem;
    z-index: 5;
    box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 24%);
    border-radius: 1rem;
    -webkit-transition: all 0.5s ease-in;
}

    .history-container ul {
        list-style: none;
        padding: 0;
        width: 100%;
        text-align: left;
        margin-bottom: 0;
    }

        .history-container ul a {
            color: #3fa3c9;
        }

            .history-container ul a:hover {
                text-decoration: none;
            }

    .history-container.active {
        display: block;
    }

    .history-container h6 {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #ddd;
        padding-bottom: .5rem;
        color: #868686;
        font-weight: 400;
    }

.mt-6 {
    margin-top: 3rem !important;
}

input:focus, select:focus, .date-picker:focus {
    border-color: #555 !important;
}

.date-picker {
    background-color: #fbfbfbba !important;
    border: 1px solid #d4d4d4 !important;
    border-radius: 5px !important;
    outline: none !important;
    font-size: 13px !important;
    appearance: none !important;
    margin: 0 !important;
    height: 2.2rem !important;
    padding: 5px !important;
    margin-bottom: 5px !important;
    box-shadow: none !important;
    box-sizing: border-box !important;
    color: #333333 !important;
    transition: all 0.3s !important;
}

    .date-picker > .oi {
        margin-top: 2.5px;
    }

.nav-label {
    color: #4398ad;
    background: transparent;
    border: 0;
    text-align: left;
}

.red-height, select.red-height {
    height: 1.8rem !important;
    padding-bottom: 1px !important;
    padding-top: 1px !important;
}

    .red-height, select.red-height.pb-0 {
        padding-bottom: 0 !important;
    }

.sticky-col {
    position: -webkit-sticky;
    position: sticky;
    z-index: 1;
}

.fixed-header .sticky-col, .fixed-header .sticky-buttons {
    top: 0;
}
/*Permite agregar variables*/
:root {
    --width-sticky-buttons: 65px;
    --width-first-sticky-col: 85px;
    --width-second-sticky-col: 85px;
    --width-third-sticky-col: 85px;
    --width-fourth-sticky-col: 120px;
}

.first-col {
    width: var(--width-first-sticky-col);
    min-width: var(--width-first-sticky-col);
    left: 65px;
}

.second-col {
    min-width: var(--width-second-sticky-col);
    width: var(--width-second-sticky-col);
    left: calc( ( var( --width-first-sticky-col ) ) + var(--width-sticky-buttons));
}


.third-col {
    width: 290px;
    min-width: 90px;
    left: calc( ( var( --width-first-sticky-col ) ) + var(--width-sticky-buttons) + var(--width-third-sticky-col));
}

.fourth-col {
    width: 150px;
    max-width: 150px;
    left: calc( ( var( --width-first-sticky-col ) ) + var(--width-sticky-buttons) + var(--width-third-sticky-col) + var(--width-fourth-sticky-col));
}

.mw-83vw {
    max-width: 83vw;
}

.mw-85vw {
    max-width: 85vw;
}

.mw-87vw {
    max-width: 87vw;
}

.w-95 {
    width: 95px;
}

.loader-page {
    position: fixed;
    z-index: 25000;
    background: rgb(255, 255, 255);
    left: 0px;
    top: 0px;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
}

    .loader-page::before {
        content: "";
        position: absolute;
        border: 2px solid rgb(50, 150, 176);
        width: 60px;
        height: 60px;
        border-radius: 50%;
        box-sizing: border-box;
        border-left: 2px solid rgba(50, 150, 176,0);
        border-top: 2px solid rgba(50, 150, 176,0);
        animation: rotarload 1s linear infinite;
        transform: rotate(0deg);
    }

@keyframes rotarload {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

.loader-page::after {
    content: "";
    position: absolute;
    border: 2px solid rgba(50, 150, 176,.5);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-sizing: border-box;
    border-left: 2px solid rgba(50, 150, 176, 0);
    border-top: 2px solid rgba(50, 150, 176, 0);
    animation: rotarload 1s ease-out infinite;
    transform: rotate(0deg);
}

.progress-background {
    background: #55555591;
    height: 100%;
    width: 100%;
    display: flex;
    position: fixed;
    z-index: 1060;
}

.progress-card {
    margin: auto;
    z-index: 1061;
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 15%);
    font-size: 1rem;
}

.fa-trash.red {
    vertical-align: middle;
}

.nav-link:not(.active) {
    color: #838383;
}

.va-middle {
    vertical-align: middle !important;
}

.secondary-tab {
    margin-top: 1rem;
}

.sticky-buttons {
    position: sticky;
    width: 4%;
    min-width: 20px;
    max-width: 0%;
    left: 0;
}

.w-80px {
    width: 80px!important;
}
.w-80{
    width:80%;
}
.w-245px {
    width: 245px;
}

.page-item.active .page-link {
    z-index: 1;
    color: #fff;
    background-color: #3fa3c9;
    border-color: #3fa3c9;
}

.page-link {
    color: #3fa3c9;
    padding: .35rem .55rem;
    line-height: 1.2;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgb(0 0 0 / 2%);
}

.page-link:focus {
    box-shadow: none !important;
}

.nav-tabs button.nav-link.active {
    font-weight: 600;
    color: #343434;
    border-bottom: 3px solid #3fa3c9 !important;
    background-color:transparent!important;
}

.nav-link:not(.active) {
    color: #343434;
}

.w-52px {
    width: 43%;
}

@media (min-width: 1200px) {
    .modal-mw-xl {
        max-width: 1085px !important;
    }
}

.submenu {
    display: none;
    transition: all 0.3s;
    background-color: transparent;
}

.sub-menu-toggle:hover .submenu {
    display: block;
    border-radius: 1rem;
    top: -15px !important;
    z-index: 1;
}

#sidebar:not(.active) .submenu {
    padding: 1.3rem !important;
}

.bg-greenblue {
    background-color: #00A79D;
    color: white;
}

.Link-OtherTab {
    cursor: pointer;
    color: #069;
}

.sub-menu-i {
    position: absolute;
    color: #ddd;
    right: -5px;
    font-size: 10px;
    z-index: 0;
}

@media (min-width: 992px) {
    .modal-md-lg {
        max-width: 640px;
    }
}

::placeholder {
    opacity: 0.8;
}

.input-outer {
    width: 145px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 5px;
}

.input-line-number {
    width: 95px;
    border: 0 !important;
    background: transparent !important;
    margin: 0 !important;
    text-align: right !important;
    -webkit-appearance: none;
}

.input-line-measure {
    width: 45px;
    border: 0 !important;
    background: #ebebeb !important;
    text-align: center !important;
    margin: 0 !important;
    border-bottom-left-radius: 1px !important;
    border-top-left-radius: 1px !important;
    height: 2.2rem;
}

.btn {
    font-size: 0.9rem !important;
}

.filter-button-toggle.collapsed span.details {
    display: block;
}

.filter-button-toggle.collapsed span.summary {
    display: none;
}

.filter-button-toggle span.details {
    display: none;
}

.filter-button-toggle span.summary {
    display: block;
}

.w-90 {
    width: 90%;
}

.w-93 {
    width: 93%;
}

input[type=file]::-webkit-file-upload-button {
    background: white;
    color: #3fa3c9;
    padding: 7px;
    font-size: 0.9rem!important;
    border: 0px solid white;
    border-radius: 4px;
}

    input[type=file]::-webkit-file-upload-button:hover {
        cursor: pointer;
    }

.table-double td, .table-double th {
    border: 0px double #e7e7e7;
}

.error-card {
    padding: 1rem;
    margin-left: 2rem;
    margin-right: 2rem;
    background: #E7F5FE;
    width: 100%;
    border-radius: 1rem;
    text-align: center;
    color: #2F6080;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

    .error-card.warning {
        color: #856404;
        background-color: #fff3cd;
        border-color: #ffeeba;
    }

.border-radius {
    border-radius: 1rem;
}

.img-cultivo {
    width: 100%;
    border: 6px double #efefef;
    border-radius: 1rem;
}

.growing-table {
    border: 2px solid #d5d5d5;
    padding: 0rem;
    border-spacing: 5px;
    border-collapse: separate;
    background-color: whitesmoke;
    width: 100%;
    min-width: 1680px;
}

    .growing-table tr td {
        border-collapse: separate;
        width: 290px;
        height: 45px;
    }

        .growing-table tr td input {
            background-color: white !important;
        }

        .growing-table tr td.hall {
            border-left: 3px solid #555;
            border-right: 2px solid #555;
        }

.list-style-none {
    list-style: none;
}

.h-55px {
    height: 55px !important;
}

.h-80px {
    height: 80px !important;
}

.h-120px {
    height: 120px !important;
}
/*Affix styles*/
.affix.sps--blw {
    position: fixed;
    width: calc(100% - 80px);
    left: 0;
    right: 0;
    top: 55px;
    z-index: 2;
    background: white;
    padding: 10px;
    text-align: center;
    box-shadow: 0 1px 20px 0 rgba(69,90,100,0.08);
}

.color-green {
    color: #00A79D;
}

    .color-green a {
        color: #00A79D;
    }

.table.th-round-0 tr th:first-child {
    border-radius: 0px;
}

.table.th-round-0 tr th:last-child {
    border-radius: 0px;
}

.progress.reservation {
    min-height: 1.7rem;
    word-break: break-all;
    font-size: 1rem;
    width: 90%;
    background: #00A79D;
    text-align: center;
    position: relative;
    left: -15px;
}

.progress-bar.reservation {
    width: 50%;
    background: #8D8D8D;
}

.growing-unit-pill {
    height: 1.7rem;
    font-size: 1rem;
    width: 90%;
    background: #00A79D;
    text-align: center;
    position: relative;
    margin-top: 0.5rem;
    border-radius: 0.25rem;
    left: -15px;
}

.progress-label {
    position: absolute;
    color: white;
    left: 0;
    right: 0;
    margin-left: auto;
    top: 2px;
}

td.avail {
    background: #d2fddb;
}

td.not-avail {
    background: #ffb5b5;
}

td.maybe-avail {
    background: #ffebb5;
}

td.empty {
    background-image: linear-gradient( 145deg, #ffffff 44.12%, #b8b8b8 44.12%, #e7e7e7 50%, #ffffff 50%, #ffffff 94.12%, #b8b8b8 94.12%, #b8b8b8 100%);
    background-size: 29.64px 20.75px;
}

@media (min-width: 1200px) {
    .modal-95-xl {
        max-width: 95%;
    }
    .modal-65-lg {
        max-width: 65%!important;
        width: 65%!important;
    }
}
.modal-70prc {
    max-width: 70%!important;
}
.modal-630px {
    max-width: 630px !important;
    width: 630px !important;
}
.mw-unset {
    min-width: unset!important;
}

.mw-unset-table .table-responsive {
    max-width: unset;
}

.fixed-header th:not(.sticky-col) {
    position: sticky;
    top: 0;
    word-wrap: break-word;
    z-index: 1;
}

td.sticky-col {
    z-index: auto;
    top: unset;
}

.fixed-header th.sticky-buttons {
    position: sticky;
    top: 0;
    z-index: 2;
}

.fixed-header td.sticky-buttons {
    top: unset;
    z-index: auto;
}

.td-stripped {
    background: rgb(245 245 245);
}

.w-65 {
    width: 65%;
}

.w-305px {
    width: 305px;
}

.w-300px {
    width: 300px!important;
}

table.reduced-p td {
    padding: 0.05rem 0.25rem !important;
}

table td.pl-rem-2, table th.pl-rem-2 {
    padding-left: 2rem !important;
}

.color-black {
    color: black !important;
}

.connecting-line {
    height: 1px;
    background: #e7e7e7;
    position: absolute;
    width: 93.5%;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: 50%;
    z-index: 0;
}

.w-285px {
    width: 285px;
}

.filter-button-fixed {
    position: fixed;
    right: -3px;
    background: #03a9f494;
    padding: .8rem;
    border-bottom-left-radius: 1rem;
    border-top-left-radius: 1rem;
    font-size: 1.1rem;
    top: 30%;
    z-index: 2;
    color: white;
}

    .filter-button-fixed:hover {
        color: white;
    }

.fixed-collapse {
    position: fixed;
    right: 83px;
    background: white;
    border-radius: 1rem;
    z-index: 5;
    padding: 2rem;
    top: 21%;
    width: min-content;
}

.mt-10-mn {
    margin-top: -10px;
}

div.box {
    border: 1px solid #f4f4f4;
    border-radius: .5rem;
    margin-bottom: 1rem;
}

.box-title {
    color: black;
    padding: 1rem 2rem 0rem 2rem;
    width: 100%;
    text-align: center;
}

.w-85 {
    width: 85%;
}

.absolute-buttons {
    padding-left: 1rem;
    padding-right: 6.3rem;
    display: flex;
    margin-top: -2rem;
    position: absolute;
    right: 4.5%;
    width: max-content;
}

.collapse-button {
    position: absolute;
    top: -45px;
    right: 0px;
}

.label-warning {
    background-color: #f76363;
    border-color: #f76363;
    color: white;
}

.h-30px {
    height: 30px;
}

td.pointer {
    cursor: pointer;
}

.table-overflow {
    display: inline-grid;
}

    .table-overflow table {
        width: 1550px;
        display: inherit;
    }

select.custom-select.w-100.mb-0 {
    margin-bottom: 0px !important;
}

.table td.p-02 {
    padding: 0.2rem !important;
}

.mw-120px {
    min-width: 120px;
}

.reduced-hw .input-outer {
    width: 100%;
}

.reduced-hw .input-line-number {
    height: 1.5rem;
    width: 63%;
}

.reduced-hw .input-line-measure {
    height: 2.2rem;
}

.collapsed i.fas.showonCollapse {
    display: block;
}

i.fas.showonCollapse {
    display: none;
}

i.fas.hideonCollapse {
    display: block;
}

.collapsed i.fas.hideonCollapse {
    display: none;
}

.w-65px {
    width: 65px;
}

.reduced-h {
    height: 2rem !important;
}

.custom-select.reduced-h {
    height: 2rem !important;
}

th.border-radius-th-0 {
    border-top-left-radius: 0px !important;
    border-top-right-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
}

ul.alert-danger {
    list-style: none;
}

.table.td-expanded td {
    padding: 0.25rem 0.25rem !important;
}

.td-word-no-wrap table td {
    word-break: normal;
}

.table-fixed-container .table-responsive {
    height: 50vh;
}

.table-fixed-container .pager-container {
    display: none;
}

.modal-open {
    overflow: auto;
}

#fullscreenContainer.fullscreen {
    z-index: 9999;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: white;
    padding: 1rem;
}

#fullscreenToggle {
    position: absolute;
    top: 10px;
    right: 30px;
    font-size: 1.2rem !important;
}

.font-size-18 {
    font-size: 18px;
    vertical-align: middle;
}

.blazored-toast-container {
    z-index: 2050 !important;
}

.notas-button {
    color: #707070;
    position: absolute;
    right: 55px;
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    top: 1rem;
    z-index: 3;
}

.mh-63vh {
    min-height: 63vh;
}

.notas-container .p-0-toggle {
    padding: 0 !important;
}

.w-48 {
    width: 48%;
}

.font-size-17 {
    font-size: 17px;
}

@media (min-width: 1200px) {
    .modal-dialog.modal-xxl {
        max-width: 90vw;
    }
}

.d-inline-grid {
    display: inline-grid;
}

.table-w100 .table-responsive.mw-83vw {
    max-width: unset !important;
}

.offset-120px {
    margin-left: 120px;
}

.table th.bg-white {
    background-color: white !important;
}

.sticky-options {
    position: sticky;
    top: 65px;
    z-index: 2;
    background: white;
    width: 100%;
    padding-top: 0.5rem;
    padding-left: 0;
    padding-right: 0;
}

.table-no-height .table-responsive {
    height: auto !important;
    margin-top: 0.5rem !important;
}

.btn-group .main-button:not(.mw-unset) {
    min-width: 5rem;
}

.main-button.dropdown-toggle-split:hover {
    background-color: #048f86;
}

.btn-group .dropdown-menu.show {
    transform: translate3d(0px, 27px, 0px) !important;
}

.dropdown-item {
    font-size: 0.9rem!important;
}

.submenu li a.nav-link {
    height: 1.2rem;
    padding-right: 0;
}

.sidebar .hr-divider {
    display: none;
}

.sidebar.active .li-divider {
    padding: 0rem 1rem;
}

.sidebar.active .hr-divider {
    margin: 0.5rem 0rem;
    margin-top: 0;
    border-top: 1px solid rgb(207 207 207);
    display: block;
}

.counter-pill {
    background: #f3f3f3;
    padding: 0.5rem;
    border-radius: 0.5em;
    color: #00A79D;
    font-weight: 500;
    margin-top: 0rem;
    height: 35px;
}

.modal-80prc {
    width: 80% !important;
    max-width: 80% !important;
}

.offset-435px {
    margin-left: 435px;
}

.td-no-wrap table td {
    white-space: nowrap;
    background: white;
}

.table-overflow.td-no-wrap table .first-col {
    left: 74px;
    width: 80px !important;
    min-width: 80px !important;
}
td.td-no-wrap {
    white-space: nowrap!important;
}
@media (min-width: 768px) {
    .col-md-5-custom {
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 43.666667%;
        max-width: 43.666667%;
    }
}

.wrapper1, .wrapper2 {
    width: 100%;
    overflow-x: scroll;
    overflow-y: hidden;
}

.wrapper1 {
    height: 20px;
}

.wrapper2 {
}

.div1 {
    height: 20px;
}

.div2 {
    overflow: none;
}

.floatin-pill {
    position: absolute;
    left: 135px;
    top: -31px;
}

.space-no-wrap {
    white-space: nowrap;
}

select.mb-0 {
    margin-bottom: 0 !important;
}

.dynamic-td tr td {
    height: auto;
}

    .dynamic-td tr td.empty .growing-unit-location {
        display: none;
    }

#dvFullscreen.fullscreen {
    z-index: 9998;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: white;
    padding: 2rem;
}

#fullscreenButton {
    position: absolute;
    top: -30px;
    right: 0px;
    padding: 0;
    display: flex;
}

    #fullscreenButton.fullscreen {
        z-index: 9999;
        position: fixed;
        top: 5px;
        right: 30px;
    }

    #fullscreenButton .expand {
        display: block;
    }

    #fullscreenButton .shrink {
        display: none;
    }

    #fullscreenButton.fullscreen .expand {
        display: none;
    }

    #fullscreenButton.fullscreen .shrink {
        display: block;
    }

.empty-gu {
    color: black;
    font-weight: 600;
    width: 100%;
    margin: auto;
}



.vertical {
    display: inline-block;
    width: 20%;
    height: 40px;
    -webkit-transform: rotate(-90deg); /* Chrome, Safari, Opera */
    transform: rotate(-90deg);
}

.vertical {
    box-shadow: inset 0px 4px 6px #ccc;
}

.progress-bar-vertical {
    width: auto;
    min-height: 100px;
    margin-right: 20px;
    float: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    -webkit-align-items: flex-end;
}

    .progress-bar-vertical .progress-bar {
        width: 100%;
        height: 0;
        -webkit-transition: height 0.6s ease;
        -o-transition: height 0.6s ease;
        transition: height 0.6s ease;
    }

.upload-btn-wrapper {
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.btn-upload {
    border: 0;
    color: #3fa3c9;
    background-color: white;
    padding: 0;
    border-radius: 0;
    font-size: 15px;
    font-weight: bold;
    vertical-align: top;
}

.upload-btn-wrapper input[type=file] {
    font-size: 100px;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    cursor: pointer;
}

.w-545px {
    width: 545px;
}
table.w-545px {
    width: 545px;
}

.modal-95prc {
    max-width: 95%;
}

.trash.float {
    position: absolute;
    top: 35px;
    right: 5px;
    width: 30px;
    height: 30px;
    background: #dc3545;
    border-radius: 100%;
    text-align: center;
    padding: 5px;
}

    .trash.float i {
        color: white;
        font-size: 1rem;
    }

.modal-body .print-div {
    height: 100vh !important;
}

.BootstrapModalXS .modal-dialog {
    max-width: 500px !important;
}

.BootstrapModal60porc .modal-dialog {
    max-width: 60% !important;
}

.td-last-nowrap td:last-child {
    white-space: nowrap;
}

table.td-hover tr:hover td {
    background: #ededed !important;
}

a.cog {
    color: #d3d3d3;
}

.w-85px {
    width: 85px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.main-title {
    float: left;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    padding: 0;
    color: #3fa3c9;
    font-weight: 400;
    font-size: 1.10rem;
}

.progress-card {
    margin: auto;
    z-index: 1061;
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 15%);
    font-size: 1rem;
}

.progress-body {
    width: 350px;
    background: white;
    text-align: center;
    padding: 20px;
    border-radius: 4px;
    position: fixed;
    top: 35%;
    right: 39%;
    z-index: 10006 !important;
}

    .progress-body i {
        font-size: 20px;
        margin-right: 10px;
    }

.modal-header .close {
    margin: 0rem 0rem -1rem auto;
}

.checkbox-list-ul {
    list-style: none;
}

.checkbox-list label {
    margin-bottom: 0px !important;
}

.tab-pane {
    padding-top: 1.2rem;
}/*
.sidebar.active ul.menu{
    position:relative!important;
    width:100%;
    border:unset!important;
}*/
ul.menu a {
    height: 1.5rem !important;
    padding: .5rem !important;
}

ul.menu span {
    display: block !important;
    color: #494B4B;
}

ul.menu {
    position: absolute;
    left: 100%;
    top: 0;
    background: white;
    box-shadow: none;
    padding: 1rem;
    min-height: auto;
    width: 295px;
    z-index: 4;
    border: 1px solid #ddd;
}

ul.menu {
    display: none;
}

.nav-item.sub-menu-toggle:hover ul.menu {
    display: block;
}
select.listbox {
    height: 83px !important;
}
.card.mh-80vh{
    width:100%;
    float:left;
}
.bar-card {
    padding-top: 10px !important;
    padding: 5px;
    background-color: white;
    width: 100%;
    min-height: 80px;
    text-align: center;
    border-radius: 10px;
    font-size: 14px;
    font-family: "Segoe UI", sans-serif !important;
}
.bar-card-link, .bar-card-label {
    color: #505050;
    width: 100%;
    font-weight: 600;
}
.bar-card-label {
    font-size: 15px;
    font-weight: 800;
    color: #1d1d1d;
}
.chart-title {
    font-size: 15px;
    font-weight: 600;
    color: #707070;
    margin-bottom: 0;
    text-align: center;
    margin-top: 1rem;
}
button:focus{
    outline:none!important;
}
.modal-dialog {
    margin: 10vh auto;
}
.nav-tabs.main-tab .nav-link{
    border:none!important;
}
.row > * {
    flex-shrink: unset;
    max-width: unset;
}

.modal-dialog.modal-630px {
    max-width: 630px;
}
div.multiselect{
    position:relative;
}
.orange-label {
    width: auto;
    text-align: center;
    background: #fbb76f;
    color: #753617;
    border-radius: .5rem;
    line-height: 1 !important;
    padding: 0 .5rem;
}
.green-label {
    width: auto;
    text-align: center;
    background: #b3dc82;
    color: #084c0b;
    border-radius: .5rem;
    line-height: 1 !important;
    padding: 0 .5rem;
}
.gray-label {
    width: auto;
    text-align: center;
    background: #ddd;
    color: #343534;
    border-radius: .5rem;
    line-height: 1 !important;
    padding: 0 .5rem;
}
.modal-bg-reduced {
    background-color: #ffffff00 !important;
}
.radio-grp {
    padding: .5rem;
    border: 1px solid #ddd;
    display: flex;
    width: 280px;
    margin-top: 5px;
    margin-bottom: 5px;
    border-radius: 5px;
}
.pin-button i {
    color: white;
}
.pin-button {
    background: #3fa3c9 !important;
    margin-left: .2rem !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    text-align: center !important;
    width: 28px;
    height: 28px;
    margin-bottom: 5px;
}
    .pin-button i.fa-lock {
        display: none;
    }
    .pin-button i.fa-lock-open {
        display: block;
    }
    .pin-button.pinned i.fa-lock {
        display: block;
    }

    .pin-button.pinned i.fa-lock-open {
        display: none;
    }
    .pin-button.pinned {
        background-color: #999999 !important;
    }
    .pin-button.pinned {
        border: 0px !important;
    }
.sidebar-outer-line {
    border-right: 1px solid #efefef;
    height: 100%;
}
.w-110px-code input.w-120px{
    width:110px!important;
}
.modal.show{
    display:flex!important;
}
.modal-dialog{
    margin:auto!important;
}
.w-367px {
    width: 376px !important
}
.w-295px {
    width: 292px!important;
}
li.rz-dropdown-item {
    padding: 0.0rem 1rem!important;
}
.btn:disabled {
    border-color: transparent!important;
}
.status-pill {
    width: 140px !important;
    border-radius: 5px;
    min-width: 15px;
    min-height: 15px;
    text-align: center;
    margin: 0;
    height: 2.2rem;
    padding: 5px;
    font-size: 1rem !important;
    text-align:center!important;
}
    .status-pill.rejected {
        background: #ff6f42;
        color: white;
    }
    .status-pill.cancelled {
        background: #f84e5f;
        color: white;
    }
    .status-pill.authorized {
        background: #7bdb80;
        color: white;
    }
    .status-pill.paid {
        background: #64baff;
        color: white;
    }
    .status-pill.pending {
        background: #fdec53;
        color: #555;
    }
    .status-pill.table-pill {
        min-width: 135px !important;
        font-size: 11px !important;
        height: 16px;
        padding-top: 3px;
    }
.card-header {
    color: #3fa3c9 !important;
    font-size: 1.1rem !important;
    padding: .75rem 1.25rem !important;
    margin-bottom: 0 !important;
    background-color: rgba(0, 0, 0, .03) !important;
    border-bottom: 1px solid rgba(0, 0, 0, .125) !important;
}
.w-442px {
    width: 442px !important;
}
.w-293px{
    width:293px!important;
}
.w-308px {
    width: 308px !important;
}
.w-314px {
    width: 314px !important;
}
.w-346px {
    width: 346px !important;
}
span.table-pill {
    height: 1.2rem;
}
.bg-autorizado {
    background: #7bdb80;
    color: white !important;
}
.bg-rechazado {
    background: #ff6f42;
    color: white!important;
}
.modal-dialog-700 .modal-dialog {
    width: 700px !important;
    max-width: 700px !important;
}
.modal-dialog-50prc .modal-dialog {
    width: 50% !important;
    max-width: 50% !important;
}
.modal-dialog-60prc .modal-dialog {
    width: 60% !important;
    max-width:unset!important;
}
.modal-dialog-65prc .modal-dialog {
    width: 65% !important;
    max-width: 65% !important;
}
.modal-dialog-70prc .modal-dialog {
    width: 70% !important;
    max-width: 70% !important;
}
.modal-dialog-80prc .modal-dialog {
    width: 80% !important;
    max-width: 80% !important;
}
.modal-dialog-90prc .modal-dialog {
    width: 90% !important;
    max-width: 90% !important;
}
.modal-dialog-96prc .modal-dialog {
    width: 96% !important;
    max-width: 96% !important;
}
.dropdown.dropdown-disabled.b-is-autocomplete {
    background-color: transparent !important;
}
.form-control:disabled {
    background-color: #ededed!important;
    opacity: .9;
}
.h-40vh{
    height:40vh;
}
.w-171px{
    width:171px!important;
}
.form-check-input:checked {
    background-color: transparent !important;
    border-color: transparent !important;
}
.h-60vh{
    height:60vh;
}
.table-main-button {
    padding-top: .2rem;
    padding-bottom: .2rem;
    margin-bottom: 3px;
    margin-top: 3px;
    min-width:7rem!important;
}
.form-check-input{
    border:unset!important;
}
.w-275px{
    width:275px!important;
}

span.label-disabled::-webkit-outer-spin-button, span.label-disabled::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

span.label-disabled {
    display: inline-block;
    overflow-y: hidden !important;
    overflow-x: auto !important;
}
.status-pill.w-175px{
    width:175px!important;
}
.w-419px{
    width:419px!important;
}
.w-122px {
    width: 122px !important;
}
.w-206px {
    width: 206px !important;
}
.w-365px {
    width: 365px !important;
}
.w-179px {
    width: 179px !important;
}
.w-105px {
    width: 105px !important;
}
.flex-1{
    flex:1;
}
.bg-blue {
    background: #3fa3c9!important;
}
.w-90px{
    width:90px;
}



.checkbox-wrapper-7 .tgl {
    display: none;
}

.checkbox-wrapper-7 .tgl,
.checkbox-wrapper-7 .tgl:after,
.checkbox-wrapper-7 .tgl:before,
.checkbox-wrapper-7 .tgl *,
.checkbox-wrapper-7 .tgl *:after,
.checkbox-wrapper-7 .tgl *:before,
.checkbox-wrapper-7 .tgl + .tgl-btn {
    box-sizing: border-box;
}

    .checkbox-wrapper-7 .tgl::-moz-selection,
    .checkbox-wrapper-7 .tgl:after::-moz-selection,
    .checkbox-wrapper-7 .tgl:before::-moz-selection,
    .checkbox-wrapper-7 .tgl *::-moz-selection,
    .checkbox-wrapper-7 .tgl *:after::-moz-selection,
    .checkbox-wrapper-7 .tgl *:before::-moz-selection,
    .checkbox-wrapper-7 .tgl + .tgl-btn::-moz-selection,
    .checkbox-wrapper-7 .tgl::selection,
    .checkbox-wrapper-7 .tgl:after::selection,
    .checkbox-wrapper-7 .tgl:before::selection,
    .checkbox-wrapper-7 .tgl *::selection,
    .checkbox-wrapper-7 .tgl *:after::selection,
    .checkbox-wrapper-7 .tgl *:before::selection,
    .checkbox-wrapper-7 .tgl + .tgl-btn::selection {
        background: none;
    }

    .checkbox-wrapper-7 .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-7 .tgl + .tgl-btn:after,
        .checkbox-wrapper-7 .tgl + .tgl-btn:before {
            position: relative;
            display: block;
            content: "";
            width: 50%;
            height: 100%;
        }

        .checkbox-wrapper-7 .tgl + .tgl-btn:after {
            left: 0;
        }

        .checkbox-wrapper-7 .tgl + .tgl-btn:before {
            display: none;
        }

    .checkbox-wrapper-7 .tgl:checked + .tgl-btn:after {
        left: 50%;
    }

.checkbox-wrapper-7 .tgl-ios + .tgl-btn {
    background: #fbfbfb;
    border-radius: 2em;
    padding: 2px;
    transition: all 0.4s ease;
    border: 1px solid #e8eae9;
}

    .checkbox-wrapper-7 .tgl-ios + .tgl-btn:after {
        border-radius: 2em;
        background: #fbfbfb;
        transition: left 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), padding 0.3s ease, margin 0.3s ease;
        box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0 4px 0 rgba(0, 0, 0, 0.08);
    }

    .checkbox-wrapper-7 .tgl-ios + .tgl-btn:hover:after {
        will-change: padding;
    }

    .checkbox-wrapper-7 .tgl-ios + .tgl-btn:active {
        box-shadow: inset 0 0 0 2em #e8eae9;
    }

        .checkbox-wrapper-7 .tgl-ios + .tgl-btn:active:after {
            padding-right: 0.8em;
        }

.checkbox-wrapper-7 .tgl-ios:checked + .tgl-btn {
    background: #86d993;
}

    .checkbox-wrapper-7 .tgl-ios:checked + .tgl-btn:active {
        box-shadow: none;
    }

        .checkbox-wrapper-7 .tgl-ios:checked + .tgl-btn:active:after {
            margin-left: -0.8em;
        }

.border-top-radius-0.table tr th:first-child {
    border-top-left-radius: 0;
}
.border-top-radius-0.table tr th:last-child {
    border-top-right-radius: 0;
}
.box-content{
    box-sizing:content-box;
}
.bg-lightgrey {
    background-color: #f3f3f3!important;
}
table.bg-lightgrey th {
    background: #f3f3f3!important;
}
.color-blue {
    color: #3fa3c9 !important;
}
.table.w-640px {
    width: 640px !important;
}
td.td-wrap{
    white-space:normal!important;
}
.mw-300px {
    min-width: 300px !important;
    max-width: 300px !important;
    width: 300px;
}
.h-65vh{
    height:65vh;
}
.mw-370px{
    min-width:370px!important;
}
.table-main-button.reduced {
    margin-bottom: 2px;
    margin-top: 2px;
    padding-top: .10rem !important;
    padding-bottom: .10rem !important;
}
select.my-1 {
    margin-top: .25rem !important;
    margin-bottom: .25rem !important;
}
.w-55px{
    width:55px;
}
.bdg-success {
    color: white;
    background-color: #30cd54;
}
.bdg-danger {
    color: white;
    background-color: #f91d32;
}
.bg-row-poliza-actual {
    background-color: #d4edda !important;
}
.w-70px{
    width:70px!important;
}
.w-25px{
    width:25px!important;
}
.h-20vh{
    height:20vh;
}
.w-353px{
    width:343px!important;
}
.w-127px{
    width:127px!important;
}
.rz-datepicker-trigger {
    inset-block-start: 46%!important;
}
.rz-datepicker{
    padding:0!important;
}
.w-373px{
    width:373px!important;
}
.w-140px{
    width:140px!important;

}
.w-248px {
    width: 248px !important;
}
.w-342px {
    width: 342px !important;
}
span.absolute-pill {
    font-size: 13px;
    height: 25.8px;
    padding: .5rem;
    font-weight: normal;
    position: absolute;
    right: 0;
    bottom: 30px;
}
    span.absolute-pill.pagada {
        background: #8bf08f;
        color: #0a450c;
    }
    span.absolute-pill.Atrasada {
        background: #ffb0b0;
        color: #422e2e;
    }
    span.absolute-pill.sec {
        bottom: 0;
    }
.color-bluedark {
    color: #0682b1 !important;
}
.table-pill.badge-success {
    background-color: #7bdb80 !important;
}
.table-pill.badge-danger {
    background-color: #f84e5f!important;
}
.red-th.table th {
    padding: .15rem .45rem !important;
}
.super-red-height {
    height: 1.3rem !important;
    padding-bottom: 1px !important;
    padding-top: 1px !important;
}
.mt-cero-table .d-inline-grid .table-responsive.mt-3{
    margin-top:0!important;

}
@media (max-width: 950px) {
    .modal-dialog-90-xs .modal-dialog, .modal-dialog-50prc .modal-dialog, div.modal .modal-dialog {
        width: 100% !important;
        max-width: 90% !important;
    }
}
.mw-90px{
    min-width:90px!important
}
.red-height.my-1 {
    margin-top: .15rem !important;
    margin-bottom: .15rem !important;
    height: 1.5rem !important;
}
.d-inline-grid.h-fixed .table-responsive {
    max-height: 53vh;
}
.border-radius-0{
    border-radius:0!important;
}
.dark-black-bg {
 background-color:#d7d7d7 !important;
}
.table th.bg-light {
    background-color: rgba(var(--bs-light-rgb),var(--bs-bg-opacity)) !important;
}
.input-lg{
    height:2.8rem !important;
}
.main-button.fs-5 {
    font-size: 1.25rem !important;
}
.card-body.p-5{
    padding:3rem!important;
}
.submit-btn {
    width: 50% !important;
    margin: auto !important;
    height: 45px;
    margin-top: 5px !important;
    border: none !important;
    border-radius: 10px;
    background: linear-gradient(90deg, #0B3B91 0%, #0F5CCF 42%, #11B7D9 100%) !important;
    color: var(--white) !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    cursor: pointer;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 14px !important;
    box-shadow: 0 14px 30px rgba(15, 92, 207, 0.28) !important;
    transition: 0.25s ease;
}

    .submit-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 18px 36px rgba(15, 92, 207, 0.35);
        color: white;
    }
.field {
    display: flex;
    flex-direction: column;
    gap: 0;
}

    .field label {
        font-size: 15px;
        font-weight: 600;
        color: var(--text-dark);
    }

.input-wrapper {
    height: 50px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--white);
    display: flex;
    align-items: center;
    padding: 0 16px;
    transition: 0.25s ease;
}

    .input-wrapper:focus-within {
        border-color: var(--blue-main);
        box-shadow: 0 0 0 4px rgba(15, 92, 207, 0.10);
    }

    .input-wrapper i {
        font-size: 20px;
        color: var(--blue-main);
        margin-right: 15px;
        width: 22px;
        text-align: center;
    }

    .input-wrapper input {
        width: 100%;
        border: none;
        outline: none;
        background: transparent;
        font-size: 15px;
        color: var(--text-dark);
    }

        .input-wrapper input::placeholder {
            color: #9CA3AF;
        }

.input-action {
    color: #94A3B8;
    margin-left: 12px;
    cursor: pointer;
}

.form-card {
    width: 100%;
    max-width: 920px;
    background: rgba(255, 255, 255, 0.94);
    border-radius: 24px;
    padding: 46px 54px 42px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.10);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.70);
}

.form-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 20px;
}
.form-icon {
    width: 100px;
    height: 100px;
    border-radius: 22px;
    background: linear-gradient(135deg, #F1F6FF, #FFFFFF);
    border: 1px solid #E5ECF6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-main);
    font-size: 34px;
    box-shadow: 0 12px 28px rgba(15, 92, 207, 0.08);
}

.form-title h1 {
    font-size: 34px;
    line-height: 1.1;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-title p {
    color: var(--text-muted);
    font-size: 16px;
    font-weight: 400;
}
.line {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #CBD5E1, transparent);
    margin-bottom: 15px;
}
.login-text {
    text-align: center;
    margin-top: 13px;
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 0;
}

    .login-text a {
        text-decoration: none;
        color: #343434;
    }
        .login-text a span {
            color: var(--blue-main)!important;
            font-weight: 600;
        }
        .login-text a:hover {
            text-decoration: none;
        }
.w-900px{
    width:900px;
}
.valid.modified:not([type=checkbox]) {
    box-shadow: unset!important;
}